diff --git a/data_access.html b/data_access.html
index 86f5869..e951de6 100644
--- a/data_access.html
+++ b/data_access.html
@@ -16,7 +16,7 @@
-
+
+
Northwest Atlantic
-
+
Northeast Pacific (Coming soon)
-
-
- Region :
+ Experiment Type :
-
+
- Period :
+ Output Frequency :
-
- Historical Run
- Forecast/reforecast
-
+
- Variable :
+ Grid Type :
-
+
- Grid :
+ Release :
-
- Raw grid (Curvilinear)
- Regular grid
-
+
-
- Initial year :
+
+ Variables :
-
+
+
- Initial month :
+ Initial Date :
-
+
+
Generate Queries
diff --git a/data_access.js b/data_access.js
index d02087e..0ddb701 100644
--- a/data_access.js
+++ b/data_access.js
@@ -1,9 +1,22 @@
+// setup local global variable
+var region;
+var subdomain;
+var experiment_type;
+var output_frequency;
+var grid_type;
+var release;
+var variable;
+var iyyyymm;
+
// create variable dropdown options
-createMomCobaltVarDataOpt('varMOMCobaltData','hist_run'); // Data Query
-// default initYear options for forecast (use forecast.js)
-window.createMomCobaltInitYearOpt('iyearMOMCobaltForecastData');
-// default initMonth options for forecast (use forecast.js)
-window.createMomCobaltInitMonthOpt('imonthMOMCobaltForecastData');
+// createMomCobaltVarDataOpt('varMOMCobaltData','hist_run'); // Data Query
+createDataAccessAll('northwest_atlantic') // default data query options create
+
+
+// // default initYear options for forecast (use forecast.js)
+// window.createMomCobaltInitYearOpt('iyearMOMCobaltForecastData');
+// // default initMonth options for forecast (use forecast.js)
+// window.createMomCobaltInitMonthOpt('imonthMOMCobaltForecastData');
// event lister for region radio button in the variable table section
@@ -19,28 +32,203 @@ $(document).ready(function(){
});
});
+// event listener for region radio button in the data query
+// the regionSubdomain value determine the data_option_json
+// cefi_data_option to create the dropdown options
+$(document).ready(function(){
+ $("input[type='radio'].radioDataQuery").change(function(){
+ var regionSubdomain = $('input[name="dataQueryOptions"]:checked').val();
+ // clear experiement type when changing radio
+ $('#expTypeDataQuery').empty();
+ createDataAccessAll(regionSubdomain)
+ });
+});
+
+// Async function that depends on createDataAccessExpType
+// !!!!!!add elseif when radio region and subdomain increase!!!!!!
+async function createDataAccessAll(regSubdom) {
+
+ // radio value decipher
+ if (regSubdom === 'northwest_atlantic'){
+ region = 'northwest_atlantic';
+ subdomain = 'full_domain';
+ };
+
+ // Call the function and wait for it to complete
+ await createDataAccessExpType(region,subdomain);
+ experiment_type = $('#expTypeDataQuery').val();
+
+ // Add your additional commands here
+ await createDataAccessOthers(region,subdomain,experiment_type);
+}
+
+
+// async function for creating Experiment type options
+// !!!!!!add elseif when radio region and subdomain increase!!!!!!
+async function createDataAccessExpType(reg,subDom){
+ let elm = document.getElementById('expTypeDataQuery');
+ let varJson = await fetchExperimentTypeOption(reg,subDom);
+ let expTypeOptions = varJson.experiment_type;
+ let df = window.optionList(expTypeOptions,expTypeOptions);
+ elm.appendChild(df);
+
+}
+
+// async fetching the data_access_json cefi_experiment_type_option
+async function fetchExperimentTypeOption(reg, subDom) {
+ try {
+ const response = await fetch(
+ 'data_option_json/cefi_experiment_type_options.Projects.CEFI.regional_mom6.cefi_portal.'+
+ reg+
+ '.'+
+ subDom+
+ '.json'
+ );
+ if (!response.ok) {
+ throw new Error('Network response was not ok');
+ }
+ const data = await response.json(); // JSON data
+ // console.log('JSON data:', data);
+ return data;
+ } catch (error) {
+ console.error('There was a problem when async fetchExperimentTypeOption:', error);
+ }
+};
+
+
+// async function for creating other options besides variables
+async function createDataAccessOthers(reg,subDom,expType){
+ let dataAccessJson = await fetchDataOption(reg,subDom,expType);
+ let variableJson = await fetchVarOption(reg,subDom,expType);
+
+ // Output Frequency :
+ let elm = document.getElementById('outFreqDataQuery');
+ let avaiOptions = dataAccessJson.output_frequency;
+ let df = window.optionList(avaiOptions,avaiOptions);
+ elm.appendChild(df);
+
+ // Grid Type :
+ elm = document.getElementById('gridTypeDataQuery');
+ avaiOptions = dataAccessJson.grid_type;
+ df = window.optionList(avaiOptions,avaiOptions);
+ elm.appendChild(df);
+
+ // Release :
+ elm = document.getElementById('releaseDataQuery');
+ avaiOptions = dataAccessJson.release;
+ df = window.optionList(avaiOptions,avaiOptions);
+ elm.appendChild(df);
+
+ // Variables :
+ elm = document.getElementById('variableDataQuery');
+ let valueOptions = variableJson.var_values;
+ let nameOptions = variableJson.var_options;
+ df = window.optionList(nameOptions,valueOptions);
+ elm.appendChild(df);
+
+}
+
+// async fetching the data_access_json cefi_data_option
+async function fetchDataOption(reg,subDom,expType) {
+ try {
+ const response = await fetch(
+ 'data_option_json/cefi_data_options.Projects.CEFI.regional_mom6.cefi_portal.'+
+ reg+
+ '.'+
+ subDom+
+ '.'+
+ expType+
+ '.json'
+ );
+ if (!response.ok) {
+ throw new Error('Network response was not ok');
+ }
+ const data = await response.json(); // JSON data
+ // console.log('JSON data:', data);
+ return data;
+ } catch (error) {
+ console.error('There was a problem when async fetchDataOption:', error);
+ }
+}
+
+// async fetching the data_access_json cefi_var_option
+async function fetchVarOption(reg,subDom,expType) {
+ try {
+ const response = await fetch(
+ 'data_option_json/cefi_var_options.Projects.CEFI.regional_mom6.cefi_portal.'+
+ reg+
+ '.'+
+ subDom+
+ '.'+
+ expType+
+ '.json'
+ );
+ if (!response.ok) {
+ throw new Error('Network response was not ok');
+ }
+ const data = await response.json(); // JSON data
+ // console.log('JSON data:', data);
+ return data;
+ } catch (error) {
+ console.error('There was a problem when async fetchVarOption:', error);
+ }
+}
+
+
+
+
+// // event listener for changes in the modeling period
+// $('#periodMOMCobaltData').on('change', function() {
+// // Clear out the variable dropdown
+// $('#varMOMCobaltData').empty();
+
+// // Create variable option and year month select based on period selection
+// if ($('#periodMOMCobaltData').val() === 'hist_run') {
+// // createMomCobaltVarOpt('MOMCobalt','varMOMCobaltData');
+// createMomCobaltVarDataOpt('varMOMCobaltData','hist_run');
+// $('.forecastOpt').addClass('hidden');
+// } else if ($('#periodMOMCobaltData').val() === 'forecast') {
+// // createMomCobaltVarOptFcast('MOMCobaltFcast','varMOMCobaltData');
+// createMomCobaltVarDataOpt('varMOMCobaltData','forecast');
+// $('.forecastOpt').removeClass('hidden');
+// }
+// });
+
+// function to clear all option below experiement type
+function data_access_all_clear(){
+
+ $('#outFreqDataQuery').empty();
+ $('#gridTypeDataQuery').empty();
+ $('#releaseDataQuery').empty();
+ $('#variableDataQuery').empty();
+
+};
// event listener for changes in the modeling period
-$('#periodMOMCobaltData').on('change', function() {
- // Clear out the variable dropdown
- $('#varMOMCobaltData').empty();
-
- // Create variable option and year month select based on period selection
- if ($('#periodMOMCobaltData').val() === 'hist_run') {
- // createMomCobaltVarOpt('MOMCobalt','varMOMCobaltData');
- createMomCobaltVarDataOpt('varMOMCobaltData','hist_run');
- $('.forecastOpt').addClass('hidden');
- } else if ($('#periodMOMCobaltData').val() === 'forecast') {
- // createMomCobaltVarOptFcast('MOMCobaltFcast','varMOMCobaltData');
- createMomCobaltVarDataOpt('varMOMCobaltData','forecast');
+$('#expTypeDataQuery').on('change', function() {
+ // update experiement type
+ experiment_type = $(this).val();
+
+ // clear all options below experiement type
+ data_access_all_clear();
+
+ // recreate options below experiment type due to changes
+ createDataAccessOthers(region,subdomain,$(this).val());
+
+ // turn on forecast or reforecast related options
+ if ($(this).val().includes('forecast')) {
+ // creating the initialDate options needed!!!!!
$('.forecastOpt').removeClass('hidden');
+ } else {
+ $('.forecastOpt').addClass('hidden');
}
+
});
+
// event listener for data query button click
$('#genQueryButton').on('click', function() {
- var dataType = $('#periodMOMCobaltData').val()
- generateDataQuery(dataType) // the function return a promise obj from fetch
+ generateDataQuery() // the function return a promise obj from fetch
.then((jsonDataQuery)=>{
var dataInfo = jsonDataQuery.data_info;
$('#codeBlockDataInfo').text(dataInfo);
@@ -59,6 +247,42 @@ $('#genQueryButton').on('click', function() {
})
});
+// functions for generating data query
+async function generateDataQuery() {
+ output_frequency = $('#outFreqDataQuery').val();
+ grid_type = $('#gridTypeDataQuery').val();
+ release = $('#releaseDataQuery').val();
+ variable = $('#variableDataQuery').val();
+ iyyyymm = 'i999999';
+ if (experiment_type.includes('forecast')) {
+ iyyyymm = $('#initialDate').val();
+ }
+
+ var ajaxGet = "/cgi-bin/cefi_portal/generate_data_query.py"
+ +"?region="+region
+ +"&subdomain="+subdomain
+ +"&experiment_type="+experiment_type
+ +"&output_frequency="+output_frequency
+ +"&grid_type="+grid_type
+ +"&release="+release
+ +"&variable="+variable
+ +"&iyyyymm="+iyyyymm
+
+ console.log('https://webtest.psd.esrl.noaa.gov/'+ajaxGet)
+
+ return fetch(ajaxGet)
+ .then(response => {
+ if (!response.ok) {
+ throw new Error('Network response was not ok');
+ }
+ return response.json();
+ })
+ .catch(error => {
+ // Handle errors here
+ console.error('Fetch json data query failed:', error);
+ });
+}
+
//event listener for data query code copy
$("#copyButtonWget").click(function () {
copyCode('codeBlockWget');
@@ -78,46 +302,46 @@ $("#copyButtonCite").click(function () {
-// functions for generating data query
-async function generateDataQuery(dataType) {
- var region = $('#regMOMCobaltData').val();
- var variable = $('#varMOMCobaltData').val();
- var grid = $('#gridMOMCobalt').val();
- var year = -99
- var month = -99
- if (dataType === 'forecast') {
- year = $('#iyearMOMCobaltForecastData').val();
- month = $('#imonthMOMCobaltForecastData').val();
- }
- // find data frequency and create mock date for data query variable
- var selectVarDataIndex = $("#varMOMCobaltData").prop('selectedIndex');
- var varFreq = groupList[selectVarDataIndex]
- // find out mockDate using (historical.js)
- var mockDate = window.getMockDate(varFreq)
-
- var ajaxGet = "/cgi-bin/cefi_portal/mom_data_query.py"
- +"?variable="+variable
- +"®ion="+region
- +"&date="+mockDate
- +"&grid="+grid
- +"&datatype="+dataType
- +"&year="+year
- +"&month="+month
+// // functions for generating data query
+// async function generateDataQuery(dataType) {
+// var region = $('#regMOMCobaltData').val();
+// var variable = $('#varMOMCobaltData').val();
+// var grid = $('#gridMOMCobalt').val();
+// var year = -99
+// var month = -99
+// if (dataType === 'forecast') {
+// year = $('#iyearMOMCobaltForecastData').val();
+// month = $('#imonthMOMCobaltForecastData').val();
+// }
+// // find data frequency and create mock date for data query variable
+// var selectVarDataIndex = $("#varMOMCobaltData").prop('selectedIndex');
+// var varFreq = groupList[selectVarDataIndex]
+// // find out mockDate using (historical.js)
+// var mockDate = window.getMockDate(varFreq)
- console.log('https://webtest.psd.esrl.noaa.gov/'+ajaxGet)
+// var ajaxGet = "/cgi-bin/cefi_portal/mom_data_query.py"
+// +"?variable="+variable
+// +"®ion="+region
+// +"&date="+mockDate
+// +"&grid="+grid
+// +"&datatype="+dataType
+// +"&year="+year
+// +"&month="+month
- return fetch(ajaxGet)
- .then(response => {
- if (!response.ok) {
- throw new Error('Network response was not ok');
- }
- return response.json();
- })
- .catch(error => {
- // Handle errors here
- console.error('Fetch json data query failed:', error);
- });
-}
+// console.log('https://webtest.psd.esrl.noaa.gov/'+ajaxGet)
+
+// return fetch(ajaxGet)
+// .then(response => {
+// if (!response.ok) {
+// throw new Error('Network response was not ok');
+// }
+// return response.json();
+// })
+// .catch(error => {
+// // Handle errors here
+// console.error('Fetch json data query failed:', error);
+// });
+// }
function copyCode(codeBlockID) {
let code = $("#"+codeBlockID).text();
@@ -132,62 +356,62 @@ function copyCode(codeBlockID) {
}
-// async fetching the data access json files
-async function fetchDataAccessJson(region, dataType) {
- try {
- const response = await fetch('data_option_json/data_access_' + region + '_' + dataType + '.json');
- if (!response.ok) {
- throw new Error('Network response was not ok');
- }
- const data = await response.json(); // JSON data
- // console.log('JSON data:', data);
- return data;
- } catch (error) {
- console.error('There was a problem when async fetchDataAccessJson:', error);
- }
-}
-// async function for create option for data access after fetch complete
-// Arrays to store the results
-var valuesList = [];
-var textList = [];
-var groupList = [];
-async function createMomCobaltVarDataOpt(selectID,dataType='hist_run') {
- let elm = document.getElementById(selectID);
- let regVal = $("#regMOMCobaltData").val()
- let varJson = await fetchDataAccessJson(regVal,dataType);
- // console.log(varJson)
- let varlist = [
- varJson.var_values,
- varJson.var_options,
- varJson.var_freqs
- ];
- df = window.optionSubgroupList(varlist[1],varlist[0],varlist[2]);
- elm.appendChild(df);
-
- // Loop through the select dropdown to store the reordered dropdown list
- $("#varMOMCobaltData").children().each(function() {
- // Check if the element is an optgroup
- if ($(this).is('optgroup')) {
- var groupLabel = $(this).attr('label'); // Get the optgroup label
-
- // Now loop through each option inside the optgroup
- $(this).children('option').each(function() {
- var optionValue = $(this).val(); // Get the option's value
- var optionText = $(this).text(); // Get the option's display text
-
- // Store in the lists
- valuesList.push(optionValue);
- textList.push(optionText);
- groupList.push(groupLabel);
- });
- } else if ($(this).is('option')) {
- // Handle options outside of optgroups, if any exist
- console.log('Error! one variable options does not have optgroup')
- }
- });
+
+// // async fetching the data access json files
+// async function fetchDataAccessJson(region, dataType) {
+// try {
+// const response = await fetch('data_option_json/data_access_' + region + '_' + dataType + '.json');
+// if (!response.ok) {
+// throw new Error('Network response was not ok');
+// }
+// const data = await response.json(); // JSON data
+// // console.log('JSON data:', data);
+// return data;
+// } catch (error) {
+// console.error('There was a problem when async fetchDataAccessJson:', error);
+// }
+// }
+// // async function for create option for data access after fetch complete
+// // Arrays to store the results
+// var valuesList = [];
+// var textList = [];
+// var groupList = [];
+// async function createMomCobaltVarDataOpt(selectID,dataType='hist_run') {
+// let elm = document.getElementById(selectID);
+// let regVal = $("#regMOMCobaltData").val()
+// let varJson = await fetchDataAccessJson(regVal,dataType);
+// // console.log(varJson)
+// let varlist = [
+// varJson.var_values,
+// varJson.var_options,
+// varJson.var_freqs
+// ];
+// df = window.optionSubgroupList(varlist[1],varlist[0],varlist[2]);
+// elm.appendChild(df);
+
+// // Loop through the select dropdown to store the reordered dropdown list
+// $("#varMOMCobaltData").children().each(function() {
+// // Check if the element is an optgroup
+// if ($(this).is('optgroup')) {
+// var groupLabel = $(this).attr('label'); // Get the optgroup label
+
+// // Now loop through each option inside the optgroup
+// $(this).children('option').each(function() {
+// var optionValue = $(this).val(); // Get the option's value
+// var optionText = $(this).text(); // Get the option's display text
-};
\ No newline at end of file
+// // Store in the lists
+// valuesList.push(optionValue);
+// textList.push(optionText);
+// groupList.push(groupLabel);
+// });
+// } else if ($(this).is('option')) {
+// // Handle options outside of optgroups, if any exist
+// console.log('Error! one variable options does not have optgroup')
+// }
+// });
+// };
\ No newline at end of file
diff --git a/data_index/cefi_data_indexing.Projects.CEFI.regional_mom6.cefi_portal.northwest_atlantic.full_domain.hindcast.html b/data_index/cefi_data_indexing.Projects.CEFI.regional_mom6.cefi_portal.northwest_atlantic.full_domain.hindcast.html
index a9f5fb4..1293df9 100644
--- a/data_index/cefi_data_indexing.Projects.CEFI.regional_mom6.cefi_portal.northwest_atlantic.full_domain.hindcast.html
+++ b/data_index/cefi_data_indexing.Projects.CEFI.regional_mom6.cefi_portal.northwest_atlantic.full_domain.hindcast.html
@@ -84,7 +84,7 @@
- btm_o2.nwa.full.hcast.daily.raw.r20230519.199301-201912.nc
+ btm_o2.nwa.full.hcast.daily.raw.r20230520.199301-201912.nc
btm_o2
@@ -96,7 +96,7 @@
raw
- cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230519
+ cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230520
ocean_cobalt_daily_2d.19930101-20191231.btm_o2.nc
@@ -112,7 +112,7 @@
nwa12_cobalt
- r20230519
+ r20230520
199301-201912
@@ -128,13 +128,13 @@
N/A
- http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230519/btm_o2.nwa.full.hcast.daily.raw.r20230519.199301-201912.nc
+ http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230520/btm_o2.nwa.full.hcast.daily.raw.r20230520.199301-201912.nc
- sob.nwa.full.hcast.daily.raw.r20230519.199301-201912.nc
+ sob.nwa.full.hcast.daily.raw.r20230520.199301-201912.nc
sob
@@ -146,7 +146,7 @@
raw
- cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230519
+ cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230520
ocean_daily.19930101-20191231.sob.nc
@@ -162,7 +162,7 @@
nwa12_cobalt
- r20230519
+ r20230520
199301-201912
@@ -178,13 +178,13 @@
N/A
- http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230519/sob.nwa.full.hcast.daily.raw.r20230519.199301-201912.nc
+ http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230520/sob.nwa.full.hcast.daily.raw.r20230520.199301-201912.nc
- sos.nwa.full.hcast.daily.raw.r20230519.199301-201912.nc
+ sos.nwa.full.hcast.daily.raw.r20230520.199301-201912.nc
sos
@@ -196,7 +196,7 @@
raw
- cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230519
+ cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230520
ocean_daily.19930101-20191231.sos.nc
@@ -212,7 +212,7 @@
nwa12_cobalt
- r20230519
+ r20230520
199301-201912
@@ -228,13 +228,13 @@
N/A
- http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230519/sos.nwa.full.hcast.daily.raw.r20230519.199301-201912.nc
+ http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230520/sos.nwa.full.hcast.daily.raw.r20230520.199301-201912.nc
- ssh.nwa.full.hcast.daily.raw.r20230519.199301-201912.nc
+ ssh.nwa.full.hcast.daily.raw.r20230520.199301-201912.nc
ssh
@@ -246,7 +246,7 @@
raw
- cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230519
+ cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230520
ocean_daily.19930101-20191231.ssh.nc
@@ -262,7 +262,7 @@
nwa12_cobalt
- r20230519
+ r20230520
199301-201912
@@ -278,13 +278,13 @@
N/A
- http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230519/ssh.nwa.full.hcast.daily.raw.r20230519.199301-201912.nc
+ http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230520/ssh.nwa.full.hcast.daily.raw.r20230520.199301-201912.nc
- ssu.nwa.full.hcast.daily.raw.r20230519.199301-201912.nc
+ ssu.nwa.full.hcast.daily.raw.r20230520.199301-201912.nc
ssu
@@ -296,7 +296,7 @@
raw
- cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230519
+ cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230520
ocean_daily.19930101-20191231.ssu.nc
@@ -312,7 +312,7 @@
nwa12_cobalt
- r20230519
+ r20230520
199301-201912
@@ -328,13 +328,13 @@
N/A
- http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230519/ssu.nwa.full.hcast.daily.raw.r20230519.199301-201912.nc
+ http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230520/ssu.nwa.full.hcast.daily.raw.r20230520.199301-201912.nc
- ssu_rotate.nwa.full.hcast.daily.raw.r20230519.199301-201912.nc
+ ssu_rotate.nwa.full.hcast.daily.raw.r20230520.199301-201912.nc
ssu_rotate
@@ -346,7 +346,7 @@
raw
- cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230519
+ cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230520
ocean_daily.19930101-20191231.ssu_rotate.nc
@@ -362,7 +362,7 @@
nwa12_cobalt
- r20230519
+ r20230520
199301-201912
@@ -378,13 +378,13 @@
N/A
- http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230519/ssu_rotate.nwa.full.hcast.daily.raw.r20230519.199301-201912.nc
+ http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230520/ssu_rotate.nwa.full.hcast.daily.raw.r20230520.199301-201912.nc
- ssv.nwa.full.hcast.daily.raw.r20230519.199301-201912.nc
+ ssv.nwa.full.hcast.daily.raw.r20230520.199301-201912.nc
ssv
@@ -396,7 +396,7 @@
raw
- cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230519
+ cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230520
ocean_daily.19930101-20191231.ssv.nc
@@ -412,7 +412,7 @@
nwa12_cobalt
- r20230519
+ r20230520
199301-201912
@@ -428,13 +428,13 @@
N/A
- http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230519/ssv.nwa.full.hcast.daily.raw.r20230519.199301-201912.nc
+ http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230520/ssv.nwa.full.hcast.daily.raw.r20230520.199301-201912.nc
- ssv_rotate.nwa.full.hcast.daily.raw.r20230519.199301-201912.nc
+ ssv_rotate.nwa.full.hcast.daily.raw.r20230520.199301-201912.nc
ssv_rotate
@@ -446,7 +446,7 @@
raw
- cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230519
+ cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230520
ocean_daily.19930101-20191231.ssv_rotate.nc
@@ -462,7 +462,7 @@
nwa12_cobalt
- r20230519
+ r20230520
199301-201912
@@ -478,13 +478,13 @@
N/A
- http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230519/ssv_rotate.nwa.full.hcast.daily.raw.r20230519.199301-201912.nc
+ http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230520/ssv_rotate.nwa.full.hcast.daily.raw.r20230520.199301-201912.nc
- tob.nwa.full.hcast.daily.raw.r20230519.199301-201912.nc
+ tob.nwa.full.hcast.daily.raw.r20230520.199301-201912.nc
tob
@@ -496,7 +496,7 @@
raw
- cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230519
+ cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230520
ocean_daily.19930101-20191231.tob.nc
@@ -512,7 +512,7 @@
nwa12_cobalt
- r20230519
+ r20230520
199301-201912
@@ -528,13 +528,13 @@
N/A
- http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230519/tob.nwa.full.hcast.daily.raw.r20230519.199301-201912.nc
+ http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230520/tob.nwa.full.hcast.daily.raw.r20230520.199301-201912.nc
- tos.nwa.full.hcast.daily.raw.r20230519.199301-201912.nc
+ tos.nwa.full.hcast.daily.raw.r20230520.199301-201912.nc
tos
@@ -546,7 +546,7 @@
raw
- cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230519
+ cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230520
ocean_daily.19930101-20191231.tos.nc
@@ -562,7 +562,7 @@
nwa12_cobalt
- r20230519
+ r20230520
199301-201912
@@ -578,13 +578,13 @@
N/A
- http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230519/tos.nwa.full.hcast.daily.raw.r20230519.199301-201912.nc
+ http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230520/tos.nwa.full.hcast.daily.raw.r20230520.199301-201912.nc
- btm_o2.nwa.full.hcast.daily.regrid.r20230519.199301-201912.nc
+ btm_o2.nwa.full.hcast.daily.regrid.r20230520.199301-201912.nc
btm_o2
@@ -596,7 +596,7 @@
regrid
- cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230519
+ cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230520
ocean_cobalt_daily_2d.19930101-20191231.btm_o2.nc
@@ -612,7 +612,7 @@
nwa12_cobalt
- r20230519
+ r20230520
199301-201912
@@ -628,13 +628,13 @@
N/A
- http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230519/btm_o2.nwa.full.hcast.daily.regrid.r20230519.199301-201912.nc
+ http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230520/btm_o2.nwa.full.hcast.daily.regrid.r20230520.199301-201912.nc
- sob.nwa.full.hcast.daily.regrid.r20230519.199301-201912.nc
+ sob.nwa.full.hcast.daily.regrid.r20230520.199301-201912.nc
sob
@@ -646,7 +646,7 @@
regrid
- cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230519
+ cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230520
ocean_daily.19930101-20191231.sob.nc
@@ -662,7 +662,7 @@
nwa12_cobalt
- r20230519
+ r20230520
199301-201912
@@ -678,13 +678,13 @@
N/A
- http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230519/sob.nwa.full.hcast.daily.regrid.r20230519.199301-201912.nc
+ http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230520/sob.nwa.full.hcast.daily.regrid.r20230520.199301-201912.nc
- sos.nwa.full.hcast.daily.regrid.r20230519.199301-201912.nc
+ sos.nwa.full.hcast.daily.regrid.r20230520.199301-201912.nc
sos
@@ -696,7 +696,7 @@
regrid
- cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230519
+ cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230520
ocean_daily.19930101-20191231.sos.nc
@@ -712,7 +712,7 @@
nwa12_cobalt
- r20230519
+ r20230520
199301-201912
@@ -728,13 +728,13 @@
N/A
- http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230519/sos.nwa.full.hcast.daily.regrid.r20230519.199301-201912.nc
+ http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230520/sos.nwa.full.hcast.daily.regrid.r20230520.199301-201912.nc
- ssh.nwa.full.hcast.daily.regrid.r20230519.199301-201912.nc
+ ssh.nwa.full.hcast.daily.regrid.r20230520.199301-201912.nc
ssh
@@ -746,7 +746,7 @@
regrid
- cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230519
+ cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230520
ocean_daily.19930101-20191231.ssh.nc
@@ -762,7 +762,7 @@
nwa12_cobalt
- r20230519
+ r20230520
199301-201912
@@ -778,13 +778,13 @@
N/A
- http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230519/ssh.nwa.full.hcast.daily.regrid.r20230519.199301-201912.nc
+ http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230520/ssh.nwa.full.hcast.daily.regrid.r20230520.199301-201912.nc
- ssu_rotate.nwa.full.hcast.daily.regrid.r20230519.199301-201912.nc
+ ssu_rotate.nwa.full.hcast.daily.regrid.r20230520.199301-201912.nc
ssu_rotate
@@ -796,7 +796,7 @@
regrid
- cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230519
+ cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230520
ocean_daily.19930101-20191231.ssu_rotate.nc
@@ -812,7 +812,7 @@
nwa12_cobalt
- r20230519
+ r20230520
199301-201912
@@ -828,13 +828,13 @@
N/A
- http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230519/ssu_rotate.nwa.full.hcast.daily.regrid.r20230519.199301-201912.nc
+ http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230520/ssu_rotate.nwa.full.hcast.daily.regrid.r20230520.199301-201912.nc
- ssv_rotate.nwa.full.hcast.daily.regrid.r20230519.199301-201912.nc
+ ssv_rotate.nwa.full.hcast.daily.regrid.r20230520.199301-201912.nc
ssv_rotate
@@ -846,7 +846,7 @@
regrid
- cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230519
+ cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230520
ocean_daily.19930101-20191231.ssv_rotate.nc
@@ -862,7 +862,7 @@
nwa12_cobalt
- r20230519
+ r20230520
199301-201912
@@ -878,13 +878,13 @@
N/A
- http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230519/ssv_rotate.nwa.full.hcast.daily.regrid.r20230519.199301-201912.nc
+ http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230520/ssv_rotate.nwa.full.hcast.daily.regrid.r20230520.199301-201912.nc
- tob.nwa.full.hcast.daily.regrid.r20230519.199301-201912.nc
+ tob.nwa.full.hcast.daily.regrid.r20230520.199301-201912.nc
tob
@@ -896,7 +896,7 @@
regrid
- cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230519
+ cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230520
ocean_daily.19930101-20191231.tob.nc
@@ -912,7 +912,7 @@
nwa12_cobalt
- r20230519
+ r20230520
199301-201912
@@ -928,13 +928,13 @@
N/A
- http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230519/tob.nwa.full.hcast.daily.regrid.r20230519.199301-201912.nc
+ http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230520/tob.nwa.full.hcast.daily.regrid.r20230520.199301-201912.nc
- tos.nwa.full.hcast.daily.regrid.r20230519.199301-201912.nc
+ tos.nwa.full.hcast.daily.regrid.r20230520.199301-201912.nc
tos
@@ -946,7 +946,7 @@
regrid
- cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230519
+ cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230520
ocean_daily.19930101-20191231.tos.nc
@@ -962,7 +962,7 @@
nwa12_cobalt
- r20230519
+ r20230520
199301-201912
@@ -978,13 +978,13 @@
N/A
- http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230519/tos.nwa.full.hcast.daily.regrid.r20230519.199301-201912.nc
+ http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230520/tos.nwa.full.hcast.daily.regrid.r20230520.199301-201912.nc
- MLD_003.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc
+ MLD_003.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc
MLD_003
@@ -996,7 +996,7 @@
raw
- cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519
+ cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520
ocean_monthly.199301-201912.MLD_003.nc
@@ -1012,7 +1012,7 @@
nwa12_cobalt
- r20230519
+ r20230520
199301-201912
@@ -1028,13 +1028,13 @@
N/A
- http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519/MLD_003.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc
+ http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520/MLD_003.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc
- chlos.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc
+ chlos.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc
chlos
@@ -1046,7 +1046,7 @@
raw
- cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519
+ cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520
ocean_cobalt_omip_sfc.199301-201912.chlos.nc
@@ -1062,7 +1062,7 @@
nwa12_cobalt
- r20230519
+ r20230520
199301-201912
@@ -1078,13 +1078,13 @@
N/A
- http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519/chlos.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc
+ http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520/chlos.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc
- dissicos.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc
+ dissicos.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc
dissicos
@@ -1096,7 +1096,7 @@
raw
- cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519
+ cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520
ocean_cobalt_omip_sfc.199301-201912.dissicos.nc
@@ -1112,7 +1112,7 @@
nwa12_cobalt
- r20230519
+ r20230520
199301-201912
@@ -1128,13 +1128,13 @@
N/A
- http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519/dissicos.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc
+ http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520/dissicos.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc
- mesozoo_200.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc
+ mesozoo_200.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc
mesozoo_200
@@ -1146,7 +1146,7 @@
raw
- cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519
+ cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520
ocean_cobalt_tracers_int.199301-201912.mesozoo_200.nc
@@ -1162,7 +1162,7 @@
nwa12_cobalt
- r20230519
+ r20230520
199301-201912
@@ -1178,13 +1178,13 @@
N/A
- http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519/mesozoo_200.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc
+ http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520/mesozoo_200.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc
- rhopot0.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc
+ rhopot0.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc
rhopot0
@@ -1196,7 +1196,7 @@
raw
- cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519
+ cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520
ocean_monthly_z.199301-201912.rhopot0.nc
@@ -1212,7 +1212,7 @@
nwa12_cobalt
- r20230519
+ r20230520
199301-201912
@@ -1228,13 +1228,13 @@
N/A
- http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519/rhopot0.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc
+ http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520/rhopot0.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc
- sfc_co3_ion.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc
+ sfc_co3_ion.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc
sfc_co3_ion
@@ -1246,7 +1246,7 @@
raw
- cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519
+ cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520
ocean_cobalt_sfc.199301-201912.sfc_co3_ion.nc
@@ -1262,7 +1262,7 @@
nwa12_cobalt
- r20230519
+ r20230520
199301-201912
@@ -1278,13 +1278,13 @@
N/A
- http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519/sfc_co3_ion.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc
+ http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520/sfc_co3_ion.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc
- sfc_co3_sol_arag.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc
+ sfc_co3_sol_arag.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc
sfc_co3_sol_arag
@@ -1296,7 +1296,7 @@
raw
- cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519
+ cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520
ocean_cobalt_sfc.199301-201912.sfc_co3_sol_arag.nc
@@ -1312,7 +1312,7 @@
nwa12_cobalt
- r20230519
+ r20230520
199301-201912
@@ -1328,13 +1328,13 @@
N/A
- http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519/sfc_co3_sol_arag.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc
+ http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520/sfc_co3_sol_arag.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc
- sfc_no3.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc
+ sfc_no3.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc
sfc_no3
@@ -1346,7 +1346,7 @@
raw
- cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519
+ cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520
ocean_cobalt_sfc.199301-201912.sfc_no3.nc
@@ -1362,7 +1362,7 @@
nwa12_cobalt
- r20230519
+ r20230520
199301-201912
@@ -1378,13 +1378,13 @@
N/A
- http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519/sfc_no3.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc
+ http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520/sfc_no3.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc
- sfc_po4.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc
+ sfc_po4.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc
sfc_po4
@@ -1396,7 +1396,7 @@
raw
- cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519
+ cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520
ocean_cobalt_sfc.199301-201912.sfc_po4.nc
@@ -1412,7 +1412,7 @@
nwa12_cobalt
- r20230519
+ r20230520
199301-201912
@@ -1428,13 +1428,13 @@
N/A
- http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519/sfc_po4.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc
+ http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520/sfc_po4.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc
- siconc.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc
+ siconc.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc
siconc
@@ -1446,7 +1446,7 @@
raw
- cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519
+ cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520
ice_monthly.199301-201912.siconc.nc
@@ -1462,7 +1462,7 @@
nwa12_cobalt
- r20230519
+ r20230520
199301-201912
@@ -1478,13 +1478,13 @@
N/A
- http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519/siconc.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc
+ http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520/siconc.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc
- so.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc
+ so.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc
so
@@ -1496,7 +1496,7 @@
raw
- cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519
+ cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520
ocean_monthly_z.199301-201912.so.nc
@@ -1512,7 +1512,7 @@
nwa12_cobalt
- r20230519
+ r20230520
199301-201912
@@ -1528,13 +1528,13 @@
N/A
- http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519/so.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc
+ http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520/so.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc
- sos.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc
+ sos.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc
sos
@@ -1546,7 +1546,7 @@
raw
- cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519
+ cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520
ocean_monthly.199301-201912.sos.nc
@@ -1562,7 +1562,7 @@
nwa12_cobalt
- r20230519
+ r20230520
199301-201912
@@ -1578,13 +1578,13 @@
N/A
- http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519/sos.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc
+ http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520/sos.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc
- ssh.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc
+ ssh.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc
ssh
@@ -1596,7 +1596,7 @@
raw
- cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519
+ cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520
ocean_monthly.199301-201912.ssh.nc
@@ -1612,7 +1612,7 @@
nwa12_cobalt
- r20230519
+ r20230520
199301-201912
@@ -1628,13 +1628,13 @@
N/A
- http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519/ssh.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc
+ http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520/ssh.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc
- talkos.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc
+ talkos.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc
talkos
@@ -1646,7 +1646,7 @@
raw
- cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519
+ cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520
ocean_cobalt_omip_sfc.199301-201912.talkos.nc
@@ -1662,7 +1662,7 @@
nwa12_cobalt
- r20230519
+ r20230520
199301-201912
@@ -1678,13 +1678,13 @@
N/A
- http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519/talkos.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc
+ http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520/talkos.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc
- thetao.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc
+ thetao.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc
thetao
@@ -1696,7 +1696,7 @@
raw
- cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519
+ cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520
ocean_monthly_z.199301-201912.thetao.nc
@@ -1712,7 +1712,7 @@
nwa12_cobalt
- r20230519
+ r20230520
199301-201912
@@ -1728,13 +1728,13 @@
N/A
- http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519/thetao.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc
+ http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520/thetao.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc
- tob.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc
+ tob.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc
tob
@@ -1746,7 +1746,7 @@
raw
- cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519
+ cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520
ocean_monthly.199301-201912.tob.nc
@@ -1762,7 +1762,7 @@
nwa12_cobalt
- r20230519
+ r20230520
199301-201912
@@ -1778,13 +1778,13 @@
N/A
- http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519/tob.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc
+ http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520/tob.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc
- tos.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc
+ tos.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc
tos
@@ -1796,7 +1796,7 @@
raw
- cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519
+ cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520
ocean_monthly.199301-201912.tos.nc
@@ -1812,7 +1812,7 @@
nwa12_cobalt
- r20230519
+ r20230520
199301-201912
@@ -1828,213 +1828,13 @@
N/A
- http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519/tos.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc
+ http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520/tos.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc
- umo.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc
-
- umo
-
- Ocean Mass X Transport
-
- kg s-1
-
- monthly
-
- raw
-
- cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519
-
- ocean_monthly_z.199301-201912.umo.nc
-
- /archive/acr/fre/NWA/2023_04/NWA12_COBALT_2023_04_kpo4-coastatten-physics/gfdl.ncrc5-intel22-prod/
-
- N/A
-
- nwa
-
- full
-
- hindcast
-
- nwa12_cobalt
-
- r20230519
-
- 199301-201912
-
- N/A
-
- N/A
-
- N/A
-
- 10.5281/zenodo.7893386
-
- 10.5194/gmd-16-6943-2023
-
- N/A
-
- http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519/umo.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc
-
-
-
-
-
- uo.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc
-
- uo
-
- Sea Water X Velocity
-
- m s-1
-
- monthly
-
- raw
-
- cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519
-
- ocean_monthly_z.199301-201912.uo.nc
-
- /archive/acr/fre/NWA/2023_04/NWA12_COBALT_2023_04_kpo4-coastatten-physics/gfdl.ncrc5-intel22-prod/
-
- N/A
-
- nwa
-
- full
-
- hindcast
-
- nwa12_cobalt
-
- r20230519
-
- 199301-201912
-
- N/A
-
- N/A
-
- N/A
-
- 10.5281/zenodo.7893386
-
- 10.5194/gmd-16-6943-2023
-
- N/A
-
- http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519/uo.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc
-
-
-
-
-
- vmo.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc
-
- vmo
-
- Ocean Mass Y Transport
-
- kg s-1
-
- monthly
-
- raw
-
- cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519
-
- ocean_monthly_z.199301-201912.vmo.nc
-
- /archive/acr/fre/NWA/2023_04/NWA12_COBALT_2023_04_kpo4-coastatten-physics/gfdl.ncrc5-intel22-prod/
-
- N/A
-
- nwa
-
- full
-
- hindcast
-
- nwa12_cobalt
-
- r20230519
-
- 199301-201912
-
- N/A
-
- N/A
-
- N/A
-
- 10.5281/zenodo.7893386
-
- 10.5194/gmd-16-6943-2023
-
- N/A
-
- http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519/vmo.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc
-
-
-
-
-
- vo.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc
-
- vo
-
- Sea Water Y Velocity
-
- m s-1
-
- monthly
-
- raw
-
- cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519
-
- ocean_monthly_z.199301-201912.vo.nc
-
- /archive/acr/fre/NWA/2023_04/NWA12_COBALT_2023_04_kpo4-coastatten-physics/gfdl.ncrc5-intel22-prod/
-
- N/A
-
- nwa
-
- full
-
- hindcast
-
- nwa12_cobalt
-
- r20230519
-
- 199301-201912
-
- N/A
-
- N/A
-
- N/A
-
- 10.5281/zenodo.7893386
-
- 10.5194/gmd-16-6943-2023
-
- N/A
-
- http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519/vo.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc
-
-
-
-
-
- MLD_003.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc
+ MLD_003.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc
MLD_003
@@ -2046,7 +1846,7 @@
regrid
- cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519
+ cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520
ocean_monthly.199301-201912.MLD_003.nc
@@ -2062,7 +1862,7 @@
nwa12_cobalt
- r20230519
+ r20230520
199301-201912
@@ -2078,13 +1878,13 @@
N/A
- http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519/MLD_003.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc
+ http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520/MLD_003.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc
- chlos.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc
+ chlos.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc
chlos
@@ -2096,7 +1896,7 @@
regrid
- cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519
+ cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520
ocean_cobalt_omip_sfc.199301-201912.chlos.nc
@@ -2112,7 +1912,7 @@
nwa12_cobalt
- r20230519
+ r20230520
199301-201912
@@ -2128,13 +1928,13 @@
N/A
- http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519/chlos.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc
+ http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520/chlos.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc
- dissicos.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc
+ dissicos.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc
dissicos
@@ -2146,7 +1946,7 @@
regrid
- cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519
+ cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520
ocean_cobalt_omip_sfc.199301-201912.dissicos.nc
@@ -2162,7 +1962,7 @@
nwa12_cobalt
- r20230519
+ r20230520
199301-201912
@@ -2178,13 +1978,13 @@
N/A
- http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519/dissicos.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc
+ http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520/dissicos.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc
- mesozoo_200.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc
+ mesozoo_200.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc
mesozoo_200
@@ -2196,7 +1996,7 @@
regrid
- cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519
+ cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520
ocean_cobalt_tracers_int.199301-201912.mesozoo_200.nc
@@ -2212,7 +2012,7 @@
nwa12_cobalt
- r20230519
+ r20230520
199301-201912
@@ -2228,13 +2028,13 @@
N/A
- http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519/mesozoo_200.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc
+ http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520/mesozoo_200.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc
- sfc_co3_ion.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc
+ sfc_co3_ion.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc
sfc_co3_ion
@@ -2246,7 +2046,7 @@
regrid
- cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519
+ cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520
ocean_cobalt_sfc.199301-201912.sfc_co3_ion.nc
@@ -2262,7 +2062,7 @@
nwa12_cobalt
- r20230519
+ r20230520
199301-201912
@@ -2278,13 +2078,13 @@
N/A
- http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519/sfc_co3_ion.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc
+ http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520/sfc_co3_ion.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc
- sfc_co3_sol_arag.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc
+ sfc_co3_sol_arag.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc
sfc_co3_sol_arag
@@ -2296,7 +2096,7 @@
regrid
- cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519
+ cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520
ocean_cobalt_sfc.199301-201912.sfc_co3_sol_arag.nc
@@ -2312,7 +2112,7 @@
nwa12_cobalt
- r20230519
+ r20230520
199301-201912
@@ -2328,13 +2128,13 @@
N/A
- http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519/sfc_co3_sol_arag.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc
+ http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520/sfc_co3_sol_arag.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc
- sfc_no3.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc
+ sfc_no3.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc
sfc_no3
@@ -2346,7 +2146,7 @@
regrid
- cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519
+ cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520
ocean_cobalt_sfc.199301-201912.sfc_no3.nc
@@ -2362,7 +2162,7 @@
nwa12_cobalt
- r20230519
+ r20230520
199301-201912
@@ -2378,13 +2178,13 @@
N/A
- http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519/sfc_no3.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc
+ http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520/sfc_no3.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc
- sfc_po4.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc
+ sfc_po4.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc
sfc_po4
@@ -2396,7 +2196,7 @@
regrid
- cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519
+ cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520
ocean_cobalt_sfc.199301-201912.sfc_po4.nc
@@ -2412,7 +2212,7 @@
nwa12_cobalt
- r20230519
+ r20230520
199301-201912
@@ -2428,13 +2228,13 @@
N/A
- http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519/sfc_po4.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc
+ http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520/sfc_po4.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc
- siconc.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc
+ siconc.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc
siconc
@@ -2446,7 +2246,7 @@
regrid
- cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519
+ cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520
ice_monthly.199301-201912.siconc.nc
@@ -2462,7 +2262,7 @@
nwa12_cobalt
- r20230519
+ r20230520
199301-201912
@@ -2478,13 +2278,13 @@
N/A
- http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519/siconc.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc
+ http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520/siconc.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc
- so.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc
+ so.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc
so
@@ -2496,7 +2296,7 @@
regrid
- cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519
+ cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520
ocean_monthly_z.199301-201912.so.nc
@@ -2512,7 +2312,7 @@
nwa12_cobalt
- r20230519
+ r20230520
199301-201912
@@ -2528,13 +2328,13 @@
N/A
- http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519/so.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc
+ http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520/so.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc
- sos.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc
+ sos.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc
sos
@@ -2546,7 +2346,7 @@
regrid
- cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519
+ cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520
ocean_monthly.199301-201912.sos.nc
@@ -2562,7 +2362,7 @@
nwa12_cobalt
- r20230519
+ r20230520
199301-201912
@@ -2578,13 +2378,13 @@
N/A
- http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519/sos.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc
+ http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520/sos.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc
- ssh.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc
+ ssh.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc
ssh
@@ -2596,7 +2396,7 @@
regrid
- cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519
+ cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520
ocean_monthly.199301-201912.ssh.nc
@@ -2612,7 +2412,7 @@
nwa12_cobalt
- r20230519
+ r20230520
199301-201912
@@ -2628,13 +2428,13 @@
N/A
- http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519/ssh.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc
+ http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520/ssh.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc
- talkos.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc
+ talkos.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc
talkos
@@ -2646,7 +2446,7 @@
regrid
- cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519
+ cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520
ocean_cobalt_omip_sfc.199301-201912.talkos.nc
@@ -2662,7 +2462,7 @@
nwa12_cobalt
- r20230519
+ r20230520
199301-201912
@@ -2678,13 +2478,13 @@
N/A
- http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519/talkos.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc
+ http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520/talkos.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc
- thetao.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc
+ thetao.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc
thetao
@@ -2696,7 +2496,7 @@
regrid
- cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519
+ cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520
ocean_monthly_z.199301-201912.thetao.nc
@@ -2712,7 +2512,7 @@
nwa12_cobalt
- r20230519
+ r20230520
199301-201912
@@ -2728,13 +2528,13 @@
N/A
- http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519/thetao.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc
+ http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520/thetao.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc
- tob.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc
+ tob.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc
tob
@@ -2746,7 +2546,7 @@
regrid
- cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519
+ cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520
ocean_monthly.199301-201912.tob.nc
@@ -2762,7 +2562,7 @@
nwa12_cobalt
- r20230519
+ r20230520
199301-201912
@@ -2778,13 +2578,13 @@
N/A
- http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519/tob.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc
+ http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520/tob.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc
- tos.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc
+ tos.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc
tos
@@ -2796,7 +2596,7 @@
regrid
- cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519
+ cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520
ocean_monthly.199301-201912.tos.nc
@@ -2812,7 +2612,7 @@
nwa12_cobalt
- r20230519
+ r20230520
199301-201912
@@ -2828,7 +2628,7 @@
N/A
- http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519/tos.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc
+ http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520/tos.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc
diff --git a/data_index/cefi_data_indexing.Projects.CEFI.regional_mom6.cefi_portal.northwest_atlantic.full_domain.hindcast.json b/data_index/cefi_data_indexing.Projects.CEFI.regional_mom6.cefi_portal.northwest_atlantic.full_domain.hindcast.json
index 0cb05dc..47ea13b 100644
--- a/data_index/cefi_data_indexing.Projects.CEFI.regional_mom6.cefi_portal.northwest_atlantic.full_domain.hindcast.json
+++ b/data_index/cefi_data_indexing.Projects.CEFI.regional_mom6.cefi_portal.northwest_atlantic.full_domain.hindcast.json
@@ -1,12 +1,12 @@
{
"data1": {
- "cefi_filename": "btm_o2.nwa.full.hcast.daily.raw.r20230519.199301-201912.nc",
+ "cefi_filename": "btm_o2.nwa.full.hcast.daily.raw.r20230520.199301-201912.nc",
"cefi_variable": "btm_o2",
"cefi_long_name": "Bottom Oxygen",
"cefi_unit": "mol kg-1",
"cefi_output_frequency": "daily",
"cefi_grid_type": "raw",
- "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230519",
+ "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230520",
"cefi_ori_filename": "ocean_cobalt_daily_2d.19930101-20191231.btm_o2.nc",
"cefi_archive_version": "/archive/acr/fre/NWA/2023_04/NWA12_COBALT_2023_04_kpo4-coastatten-physics/gfdl.ncrc5-intel22-prod/",
"cefi_run_xml": "N/A",
@@ -14,7 +14,7 @@
"cefi_subdomain": "full",
"cefi_experiment_type": "hindcast",
"cefi_experiment_name": "nwa12_cobalt",
- "cefi_release": "r20230519",
+ "cefi_release": "r20230520",
"cefi_date_range": "199301-201912",
"cefi_init_date": "N/A",
"cefi_ensemble_info": "N/A",
@@ -22,16 +22,16 @@
"cefi_data_doi": "10.5281/zenodo.7893386",
"cefi_paper_doi": "10.5194/gmd-16-6943-2023",
"cefi_aux": "N/A",
- "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230519/btm_o2.nwa.full.hcast.daily.raw.r20230519.199301-201912.nc"
+ "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230520/btm_o2.nwa.full.hcast.daily.raw.r20230520.199301-201912.nc"
},
"data2": {
- "cefi_filename": "sob.nwa.full.hcast.daily.raw.r20230519.199301-201912.nc",
+ "cefi_filename": "sob.nwa.full.hcast.daily.raw.r20230520.199301-201912.nc",
"cefi_variable": "sob",
"cefi_long_name": "Sea Water Salinity at Sea Floor",
"cefi_unit": "psu",
"cefi_output_frequency": "daily",
"cefi_grid_type": "raw",
- "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230519",
+ "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230520",
"cefi_ori_filename": "ocean_daily.19930101-20191231.sob.nc",
"cefi_archive_version": "/archive/acr/fre/NWA/2023_04/NWA12_COBALT_2023_04_kpo4-coastatten-physics/gfdl.ncrc5-intel22-prod/",
"cefi_run_xml": "N/A",
@@ -39,7 +39,7 @@
"cefi_subdomain": "full",
"cefi_experiment_type": "hindcast",
"cefi_experiment_name": "nwa12_cobalt",
- "cefi_release": "r20230519",
+ "cefi_release": "r20230520",
"cefi_date_range": "199301-201912",
"cefi_init_date": "N/A",
"cefi_ensemble_info": "N/A",
@@ -47,16 +47,16 @@
"cefi_data_doi": "10.5281/zenodo.7893386",
"cefi_paper_doi": "10.5194/gmd-16-6943-2023",
"cefi_aux": "N/A",
- "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230519/sob.nwa.full.hcast.daily.raw.r20230519.199301-201912.nc"
+ "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230520/sob.nwa.full.hcast.daily.raw.r20230520.199301-201912.nc"
},
"data3": {
- "cefi_filename": "sos.nwa.full.hcast.daily.raw.r20230519.199301-201912.nc",
+ "cefi_filename": "sos.nwa.full.hcast.daily.raw.r20230520.199301-201912.nc",
"cefi_variable": "sos",
"cefi_long_name": "Sea Surface Salinity",
"cefi_unit": "psu",
"cefi_output_frequency": "daily",
"cefi_grid_type": "raw",
- "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230519",
+ "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230520",
"cefi_ori_filename": "ocean_daily.19930101-20191231.sos.nc",
"cefi_archive_version": "/archive/acr/fre/NWA/2023_04/NWA12_COBALT_2023_04_kpo4-coastatten-physics/gfdl.ncrc5-intel22-prod/",
"cefi_run_xml": "N/A",
@@ -64,7 +64,7 @@
"cefi_subdomain": "full",
"cefi_experiment_type": "hindcast",
"cefi_experiment_name": "nwa12_cobalt",
- "cefi_release": "r20230519",
+ "cefi_release": "r20230520",
"cefi_date_range": "199301-201912",
"cefi_init_date": "N/A",
"cefi_ensemble_info": "N/A",
@@ -72,16 +72,16 @@
"cefi_data_doi": "10.5281/zenodo.7893386",
"cefi_paper_doi": "10.5194/gmd-16-6943-2023",
"cefi_aux": "N/A",
- "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230519/sos.nwa.full.hcast.daily.raw.r20230519.199301-201912.nc"
+ "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230520/sos.nwa.full.hcast.daily.raw.r20230520.199301-201912.nc"
},
"data4": {
- "cefi_filename": "ssh.nwa.full.hcast.daily.raw.r20230519.199301-201912.nc",
+ "cefi_filename": "ssh.nwa.full.hcast.daily.raw.r20230520.199301-201912.nc",
"cefi_variable": "ssh",
"cefi_long_name": "Sea Surface Height",
"cefi_unit": "m",
"cefi_output_frequency": "daily",
"cefi_grid_type": "raw",
- "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230519",
+ "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230520",
"cefi_ori_filename": "ocean_daily.19930101-20191231.ssh.nc",
"cefi_archive_version": "/archive/acr/fre/NWA/2023_04/NWA12_COBALT_2023_04_kpo4-coastatten-physics/gfdl.ncrc5-intel22-prod/",
"cefi_run_xml": "N/A",
@@ -89,7 +89,7 @@
"cefi_subdomain": "full",
"cefi_experiment_type": "hindcast",
"cefi_experiment_name": "nwa12_cobalt",
- "cefi_release": "r20230519",
+ "cefi_release": "r20230520",
"cefi_date_range": "199301-201912",
"cefi_init_date": "N/A",
"cefi_ensemble_info": "N/A",
@@ -97,16 +97,16 @@
"cefi_data_doi": "10.5281/zenodo.7893386",
"cefi_paper_doi": "10.5194/gmd-16-6943-2023",
"cefi_aux": "N/A",
- "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230519/ssh.nwa.full.hcast.daily.raw.r20230519.199301-201912.nc"
+ "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230520/ssh.nwa.full.hcast.daily.raw.r20230520.199301-201912.nc"
},
"data5": {
- "cefi_filename": "ssu.nwa.full.hcast.daily.raw.r20230519.199301-201912.nc",
+ "cefi_filename": "ssu.nwa.full.hcast.daily.raw.r20230520.199301-201912.nc",
"cefi_variable": "ssu",
"cefi_long_name": "Sea Surface Zonal Velocity",
"cefi_unit": "m s-1",
"cefi_output_frequency": "daily",
"cefi_grid_type": "raw",
- "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230519",
+ "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230520",
"cefi_ori_filename": "ocean_daily.19930101-20191231.ssu.nc",
"cefi_archive_version": "/archive/acr/fre/NWA/2023_04/NWA12_COBALT_2023_04_kpo4-coastatten-physics/gfdl.ncrc5-intel22-prod/",
"cefi_run_xml": "N/A",
@@ -114,7 +114,7 @@
"cefi_subdomain": "full",
"cefi_experiment_type": "hindcast",
"cefi_experiment_name": "nwa12_cobalt",
- "cefi_release": "r20230519",
+ "cefi_release": "r20230520",
"cefi_date_range": "199301-201912",
"cefi_init_date": "N/A",
"cefi_ensemble_info": "N/A",
@@ -122,16 +122,16 @@
"cefi_data_doi": "10.5281/zenodo.7893386",
"cefi_paper_doi": "10.5194/gmd-16-6943-2023",
"cefi_aux": "N/A",
- "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230519/ssu.nwa.full.hcast.daily.raw.r20230519.199301-201912.nc"
+ "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230520/ssu.nwa.full.hcast.daily.raw.r20230520.199301-201912.nc"
},
"data6": {
- "cefi_filename": "ssu_rotate.nwa.full.hcast.daily.raw.r20230519.199301-201912.nc",
+ "cefi_filename": "ssu_rotate.nwa.full.hcast.daily.raw.r20230520.199301-201912.nc",
"cefi_variable": "ssu_rotate",
"cefi_long_name": "Rotated Sea Surface Zonal Velocity",
"cefi_unit": "m s-1",
"cefi_output_frequency": "daily",
"cefi_grid_type": "raw",
- "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230519",
+ "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230520",
"cefi_ori_filename": "ocean_daily.19930101-20191231.ssu_rotate.nc",
"cefi_archive_version": "/archive/acr/fre/NWA/2023_04/NWA12_COBALT_2023_04_kpo4-coastatten-physics/gfdl.ncrc5-intel22-prod/",
"cefi_run_xml": "N/A",
@@ -139,7 +139,7 @@
"cefi_subdomain": "full",
"cefi_experiment_type": "hindcast",
"cefi_experiment_name": "nwa12_cobalt",
- "cefi_release": "r20230519",
+ "cefi_release": "r20230520",
"cefi_date_range": "199301-201912",
"cefi_init_date": "N/A",
"cefi_ensemble_info": "N/A",
@@ -147,16 +147,16 @@
"cefi_data_doi": "10.5281/zenodo.7893386",
"cefi_paper_doi": "10.5194/gmd-16-6943-2023",
"cefi_aux": "N/A",
- "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230519/ssu_rotate.nwa.full.hcast.daily.raw.r20230519.199301-201912.nc"
+ "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230520/ssu_rotate.nwa.full.hcast.daily.raw.r20230520.199301-201912.nc"
},
"data7": {
- "cefi_filename": "ssv.nwa.full.hcast.daily.raw.r20230519.199301-201912.nc",
+ "cefi_filename": "ssv.nwa.full.hcast.daily.raw.r20230520.199301-201912.nc",
"cefi_variable": "ssv",
"cefi_long_name": "Sea Surface Meridional Velocity",
"cefi_unit": "m s-1",
"cefi_output_frequency": "daily",
"cefi_grid_type": "raw",
- "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230519",
+ "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230520",
"cefi_ori_filename": "ocean_daily.19930101-20191231.ssv.nc",
"cefi_archive_version": "/archive/acr/fre/NWA/2023_04/NWA12_COBALT_2023_04_kpo4-coastatten-physics/gfdl.ncrc5-intel22-prod/",
"cefi_run_xml": "N/A",
@@ -164,7 +164,7 @@
"cefi_subdomain": "full",
"cefi_experiment_type": "hindcast",
"cefi_experiment_name": "nwa12_cobalt",
- "cefi_release": "r20230519",
+ "cefi_release": "r20230520",
"cefi_date_range": "199301-201912",
"cefi_init_date": "N/A",
"cefi_ensemble_info": "N/A",
@@ -172,16 +172,16 @@
"cefi_data_doi": "10.5281/zenodo.7893386",
"cefi_paper_doi": "10.5194/gmd-16-6943-2023",
"cefi_aux": "N/A",
- "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230519/ssv.nwa.full.hcast.daily.raw.r20230519.199301-201912.nc"
+ "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230520/ssv.nwa.full.hcast.daily.raw.r20230520.199301-201912.nc"
},
"data8": {
- "cefi_filename": "ssv_rotate.nwa.full.hcast.daily.raw.r20230519.199301-201912.nc",
+ "cefi_filename": "ssv_rotate.nwa.full.hcast.daily.raw.r20230520.199301-201912.nc",
"cefi_variable": "ssv_rotate",
"cefi_long_name": "Rotated Sea Surface Meridional Velocity",
"cefi_unit": "m s-1",
"cefi_output_frequency": "daily",
"cefi_grid_type": "raw",
- "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230519",
+ "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230520",
"cefi_ori_filename": "ocean_daily.19930101-20191231.ssv_rotate.nc",
"cefi_archive_version": "/archive/acr/fre/NWA/2023_04/NWA12_COBALT_2023_04_kpo4-coastatten-physics/gfdl.ncrc5-intel22-prod/",
"cefi_run_xml": "N/A",
@@ -189,7 +189,7 @@
"cefi_subdomain": "full",
"cefi_experiment_type": "hindcast",
"cefi_experiment_name": "nwa12_cobalt",
- "cefi_release": "r20230519",
+ "cefi_release": "r20230520",
"cefi_date_range": "199301-201912",
"cefi_init_date": "N/A",
"cefi_ensemble_info": "N/A",
@@ -197,16 +197,16 @@
"cefi_data_doi": "10.5281/zenodo.7893386",
"cefi_paper_doi": "10.5194/gmd-16-6943-2023",
"cefi_aux": "N/A",
- "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230519/ssv_rotate.nwa.full.hcast.daily.raw.r20230519.199301-201912.nc"
+ "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230520/ssv_rotate.nwa.full.hcast.daily.raw.r20230520.199301-201912.nc"
},
"data9": {
- "cefi_filename": "tob.nwa.full.hcast.daily.raw.r20230519.199301-201912.nc",
+ "cefi_filename": "tob.nwa.full.hcast.daily.raw.r20230520.199301-201912.nc",
"cefi_variable": "tob",
"cefi_long_name": "Sea Water Potential Temperature at Sea Floor",
"cefi_unit": "degC",
"cefi_output_frequency": "daily",
"cefi_grid_type": "raw",
- "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230519",
+ "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230520",
"cefi_ori_filename": "ocean_daily.19930101-20191231.tob.nc",
"cefi_archive_version": "/archive/acr/fre/NWA/2023_04/NWA12_COBALT_2023_04_kpo4-coastatten-physics/gfdl.ncrc5-intel22-prod/",
"cefi_run_xml": "N/A",
@@ -214,7 +214,7 @@
"cefi_subdomain": "full",
"cefi_experiment_type": "hindcast",
"cefi_experiment_name": "nwa12_cobalt",
- "cefi_release": "r20230519",
+ "cefi_release": "r20230520",
"cefi_date_range": "199301-201912",
"cefi_init_date": "N/A",
"cefi_ensemble_info": "N/A",
@@ -222,16 +222,16 @@
"cefi_data_doi": "10.5281/zenodo.7893386",
"cefi_paper_doi": "10.5194/gmd-16-6943-2023",
"cefi_aux": "N/A",
- "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230519/tob.nwa.full.hcast.daily.raw.r20230519.199301-201912.nc"
+ "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230520/tob.nwa.full.hcast.daily.raw.r20230520.199301-201912.nc"
},
"data10": {
- "cefi_filename": "tos.nwa.full.hcast.daily.raw.r20230519.199301-201912.nc",
+ "cefi_filename": "tos.nwa.full.hcast.daily.raw.r20230520.199301-201912.nc",
"cefi_variable": "tos",
"cefi_long_name": "Sea Surface Temperature",
"cefi_unit": "degC",
"cefi_output_frequency": "daily",
"cefi_grid_type": "raw",
- "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230519",
+ "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230520",
"cefi_ori_filename": "ocean_daily.19930101-20191231.tos.nc",
"cefi_archive_version": "/archive/acr/fre/NWA/2023_04/NWA12_COBALT_2023_04_kpo4-coastatten-physics/gfdl.ncrc5-intel22-prod/",
"cefi_run_xml": "N/A",
@@ -239,7 +239,7 @@
"cefi_subdomain": "full",
"cefi_experiment_type": "hindcast",
"cefi_experiment_name": "nwa12_cobalt",
- "cefi_release": "r20230519",
+ "cefi_release": "r20230520",
"cefi_date_range": "199301-201912",
"cefi_init_date": "N/A",
"cefi_ensemble_info": "N/A",
@@ -247,16 +247,16 @@
"cefi_data_doi": "10.5281/zenodo.7893386",
"cefi_paper_doi": "10.5194/gmd-16-6943-2023",
"cefi_aux": "N/A",
- "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230519/tos.nwa.full.hcast.daily.raw.r20230519.199301-201912.nc"
+ "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/raw/r20230520/tos.nwa.full.hcast.daily.raw.r20230520.199301-201912.nc"
},
"data11": {
- "cefi_filename": "btm_o2.nwa.full.hcast.daily.regrid.r20230519.199301-201912.nc",
+ "cefi_filename": "btm_o2.nwa.full.hcast.daily.regrid.r20230520.199301-201912.nc",
"cefi_variable": "btm_o2",
"cefi_long_name": "Bottom Oxygen",
"cefi_unit": "mol kg-1",
"cefi_output_frequency": "daily",
"cefi_grid_type": "regrid",
- "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230519",
+ "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230520",
"cefi_ori_filename": "ocean_cobalt_daily_2d.19930101-20191231.btm_o2.nc",
"cefi_archive_version": "/archive/acr/fre/NWA/2023_04/NWA12_COBALT_2023_04_kpo4-coastatten-physics/gfdl.ncrc5-intel22-prod/",
"cefi_run_xml": "N/A",
@@ -264,7 +264,7 @@
"cefi_subdomain": "full",
"cefi_experiment_type": "hindcast",
"cefi_experiment_name": "nwa12_cobalt",
- "cefi_release": "r20230519",
+ "cefi_release": "r20230520",
"cefi_date_range": "199301-201912",
"cefi_init_date": "N/A",
"cefi_ensemble_info": "N/A",
@@ -272,16 +272,16 @@
"cefi_data_doi": "10.5281/zenodo.7893386",
"cefi_paper_doi": "10.5194/gmd-16-6943-2023",
"cefi_aux": "N/A",
- "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230519/btm_o2.nwa.full.hcast.daily.regrid.r20230519.199301-201912.nc"
+ "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230520/btm_o2.nwa.full.hcast.daily.regrid.r20230520.199301-201912.nc"
},
"data12": {
- "cefi_filename": "sob.nwa.full.hcast.daily.regrid.r20230519.199301-201912.nc",
+ "cefi_filename": "sob.nwa.full.hcast.daily.regrid.r20230520.199301-201912.nc",
"cefi_variable": "sob",
"cefi_long_name": "Sea Water Salinity at Sea Floor",
"cefi_unit": "psu",
"cefi_output_frequency": "daily",
"cefi_grid_type": "regrid",
- "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230519",
+ "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230520",
"cefi_ori_filename": "ocean_daily.19930101-20191231.sob.nc",
"cefi_archive_version": "/archive/acr/fre/NWA/2023_04/NWA12_COBALT_2023_04_kpo4-coastatten-physics/gfdl.ncrc5-intel22-prod/",
"cefi_run_xml": "N/A",
@@ -289,7 +289,7 @@
"cefi_subdomain": "full",
"cefi_experiment_type": "hindcast",
"cefi_experiment_name": "nwa12_cobalt",
- "cefi_release": "r20230519",
+ "cefi_release": "r20230520",
"cefi_date_range": "199301-201912",
"cefi_init_date": "N/A",
"cefi_ensemble_info": "N/A",
@@ -297,16 +297,16 @@
"cefi_data_doi": "10.5281/zenodo.7893386",
"cefi_paper_doi": "10.5194/gmd-16-6943-2023",
"cefi_aux": "N/A",
- "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230519/sob.nwa.full.hcast.daily.regrid.r20230519.199301-201912.nc"
+ "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230520/sob.nwa.full.hcast.daily.regrid.r20230520.199301-201912.nc"
},
"data13": {
- "cefi_filename": "sos.nwa.full.hcast.daily.regrid.r20230519.199301-201912.nc",
+ "cefi_filename": "sos.nwa.full.hcast.daily.regrid.r20230520.199301-201912.nc",
"cefi_variable": "sos",
"cefi_long_name": "Sea Surface Salinity",
"cefi_unit": "psu",
"cefi_output_frequency": "daily",
"cefi_grid_type": "regrid",
- "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230519",
+ "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230520",
"cefi_ori_filename": "ocean_daily.19930101-20191231.sos.nc",
"cefi_archive_version": "/archive/acr/fre/NWA/2023_04/NWA12_COBALT_2023_04_kpo4-coastatten-physics/gfdl.ncrc5-intel22-prod/",
"cefi_run_xml": "N/A",
@@ -314,7 +314,7 @@
"cefi_subdomain": "full",
"cefi_experiment_type": "hindcast",
"cefi_experiment_name": "nwa12_cobalt",
- "cefi_release": "r20230519",
+ "cefi_release": "r20230520",
"cefi_date_range": "199301-201912",
"cefi_init_date": "N/A",
"cefi_ensemble_info": "N/A",
@@ -322,16 +322,16 @@
"cefi_data_doi": "10.5281/zenodo.7893386",
"cefi_paper_doi": "10.5194/gmd-16-6943-2023",
"cefi_aux": "N/A",
- "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230519/sos.nwa.full.hcast.daily.regrid.r20230519.199301-201912.nc"
+ "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230520/sos.nwa.full.hcast.daily.regrid.r20230520.199301-201912.nc"
},
"data14": {
- "cefi_filename": "ssh.nwa.full.hcast.daily.regrid.r20230519.199301-201912.nc",
+ "cefi_filename": "ssh.nwa.full.hcast.daily.regrid.r20230520.199301-201912.nc",
"cefi_variable": "ssh",
"cefi_long_name": "Sea Surface Height",
"cefi_unit": "m",
"cefi_output_frequency": "daily",
"cefi_grid_type": "regrid",
- "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230519",
+ "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230520",
"cefi_ori_filename": "ocean_daily.19930101-20191231.ssh.nc",
"cefi_archive_version": "/archive/acr/fre/NWA/2023_04/NWA12_COBALT_2023_04_kpo4-coastatten-physics/gfdl.ncrc5-intel22-prod/",
"cefi_run_xml": "N/A",
@@ -339,7 +339,7 @@
"cefi_subdomain": "full",
"cefi_experiment_type": "hindcast",
"cefi_experiment_name": "nwa12_cobalt",
- "cefi_release": "r20230519",
+ "cefi_release": "r20230520",
"cefi_date_range": "199301-201912",
"cefi_init_date": "N/A",
"cefi_ensemble_info": "N/A",
@@ -347,16 +347,16 @@
"cefi_data_doi": "10.5281/zenodo.7893386",
"cefi_paper_doi": "10.5194/gmd-16-6943-2023",
"cefi_aux": "N/A",
- "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230519/ssh.nwa.full.hcast.daily.regrid.r20230519.199301-201912.nc"
+ "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230520/ssh.nwa.full.hcast.daily.regrid.r20230520.199301-201912.nc"
},
"data15": {
- "cefi_filename": "ssu_rotate.nwa.full.hcast.daily.regrid.r20230519.199301-201912.nc",
+ "cefi_filename": "ssu_rotate.nwa.full.hcast.daily.regrid.r20230520.199301-201912.nc",
"cefi_variable": "ssu_rotate",
"cefi_long_name": "Sea Surface Zonal Velocity",
"cefi_unit": "m s-1",
"cefi_output_frequency": "daily",
"cefi_grid_type": "regrid",
- "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230519",
+ "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230520",
"cefi_ori_filename": "ocean_daily.19930101-20191231.ssu_rotate.nc",
"cefi_archive_version": "/archive/acr/fre/NWA/2023_04/NWA12_COBALT_2023_04_kpo4-coastatten-physics/gfdl.ncrc5-intel22-prod/",
"cefi_run_xml": "N/A",
@@ -364,7 +364,7 @@
"cefi_subdomain": "full",
"cefi_experiment_type": "hindcast",
"cefi_experiment_name": "nwa12_cobalt",
- "cefi_release": "r20230519",
+ "cefi_release": "r20230520",
"cefi_date_range": "199301-201912",
"cefi_init_date": "N/A",
"cefi_ensemble_info": "N/A",
@@ -372,16 +372,16 @@
"cefi_data_doi": "10.5281/zenodo.7893386",
"cefi_paper_doi": "10.5194/gmd-16-6943-2023",
"cefi_aux": "N/A",
- "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230519/ssu_rotate.nwa.full.hcast.daily.regrid.r20230519.199301-201912.nc"
+ "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230520/ssu_rotate.nwa.full.hcast.daily.regrid.r20230520.199301-201912.nc"
},
"data16": {
- "cefi_filename": "ssv_rotate.nwa.full.hcast.daily.regrid.r20230519.199301-201912.nc",
+ "cefi_filename": "ssv_rotate.nwa.full.hcast.daily.regrid.r20230520.199301-201912.nc",
"cefi_variable": "ssv_rotate",
"cefi_long_name": "Sea Surface Meridional Velocity",
"cefi_unit": "m s-1",
"cefi_output_frequency": "daily",
"cefi_grid_type": "regrid",
- "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230519",
+ "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230520",
"cefi_ori_filename": "ocean_daily.19930101-20191231.ssv_rotate.nc",
"cefi_archive_version": "/archive/acr/fre/NWA/2023_04/NWA12_COBALT_2023_04_kpo4-coastatten-physics/gfdl.ncrc5-intel22-prod/",
"cefi_run_xml": "N/A",
@@ -389,7 +389,7 @@
"cefi_subdomain": "full",
"cefi_experiment_type": "hindcast",
"cefi_experiment_name": "nwa12_cobalt",
- "cefi_release": "r20230519",
+ "cefi_release": "r20230520",
"cefi_date_range": "199301-201912",
"cefi_init_date": "N/A",
"cefi_ensemble_info": "N/A",
@@ -397,16 +397,16 @@
"cefi_data_doi": "10.5281/zenodo.7893386",
"cefi_paper_doi": "10.5194/gmd-16-6943-2023",
"cefi_aux": "N/A",
- "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230519/ssv_rotate.nwa.full.hcast.daily.regrid.r20230519.199301-201912.nc"
+ "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230520/ssv_rotate.nwa.full.hcast.daily.regrid.r20230520.199301-201912.nc"
},
"data17": {
- "cefi_filename": "tob.nwa.full.hcast.daily.regrid.r20230519.199301-201912.nc",
+ "cefi_filename": "tob.nwa.full.hcast.daily.regrid.r20230520.199301-201912.nc",
"cefi_variable": "tob",
"cefi_long_name": "Sea Water Potential Temperature at Sea Floor",
"cefi_unit": "degC",
"cefi_output_frequency": "daily",
"cefi_grid_type": "regrid",
- "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230519",
+ "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230520",
"cefi_ori_filename": "ocean_daily.19930101-20191231.tob.nc",
"cefi_archive_version": "/archive/acr/fre/NWA/2023_04/NWA12_COBALT_2023_04_kpo4-coastatten-physics/gfdl.ncrc5-intel22-prod/",
"cefi_run_xml": "N/A",
@@ -414,7 +414,7 @@
"cefi_subdomain": "full",
"cefi_experiment_type": "hindcast",
"cefi_experiment_name": "nwa12_cobalt",
- "cefi_release": "r20230519",
+ "cefi_release": "r20230520",
"cefi_date_range": "199301-201912",
"cefi_init_date": "N/A",
"cefi_ensemble_info": "N/A",
@@ -422,16 +422,16 @@
"cefi_data_doi": "10.5281/zenodo.7893386",
"cefi_paper_doi": "10.5194/gmd-16-6943-2023",
"cefi_aux": "N/A",
- "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230519/tob.nwa.full.hcast.daily.regrid.r20230519.199301-201912.nc"
+ "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230520/tob.nwa.full.hcast.daily.regrid.r20230520.199301-201912.nc"
},
"data18": {
- "cefi_filename": "tos.nwa.full.hcast.daily.regrid.r20230519.199301-201912.nc",
+ "cefi_filename": "tos.nwa.full.hcast.daily.regrid.r20230520.199301-201912.nc",
"cefi_variable": "tos",
"cefi_long_name": "Sea Surface Temperature",
"cefi_unit": "degC",
"cefi_output_frequency": "daily",
"cefi_grid_type": "regrid",
- "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230519",
+ "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230520",
"cefi_ori_filename": "ocean_daily.19930101-20191231.tos.nc",
"cefi_archive_version": "/archive/acr/fre/NWA/2023_04/NWA12_COBALT_2023_04_kpo4-coastatten-physics/gfdl.ncrc5-intel22-prod/",
"cefi_run_xml": "N/A",
@@ -439,7 +439,7 @@
"cefi_subdomain": "full",
"cefi_experiment_type": "hindcast",
"cefi_experiment_name": "nwa12_cobalt",
- "cefi_release": "r20230519",
+ "cefi_release": "r20230520",
"cefi_date_range": "199301-201912",
"cefi_init_date": "N/A",
"cefi_ensemble_info": "N/A",
@@ -447,16 +447,16 @@
"cefi_data_doi": "10.5281/zenodo.7893386",
"cefi_paper_doi": "10.5194/gmd-16-6943-2023",
"cefi_aux": "N/A",
- "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230519/tos.nwa.full.hcast.daily.regrid.r20230519.199301-201912.nc"
+ "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/daily/regrid/r20230520/tos.nwa.full.hcast.daily.regrid.r20230520.199301-201912.nc"
},
"data19": {
- "cefi_filename": "MLD_003.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc",
+ "cefi_filename": "MLD_003.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc",
"cefi_variable": "MLD_003",
"cefi_long_name": "Mixed layer depth (delta rho = 0.03)",
"cefi_unit": "m",
"cefi_output_frequency": "monthly",
"cefi_grid_type": "raw",
- "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519",
+ "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520",
"cefi_ori_filename": "ocean_monthly.199301-201912.MLD_003.nc",
"cefi_archive_version": "/archive/acr/fre/NWA/2023_04/NWA12_COBALT_2023_04_kpo4-coastatten-physics/gfdl.ncrc5-intel22-prod/",
"cefi_run_xml": "N/A",
@@ -464,7 +464,7 @@
"cefi_subdomain": "full",
"cefi_experiment_type": "hindcast",
"cefi_experiment_name": "nwa12_cobalt",
- "cefi_release": "r20230519",
+ "cefi_release": "r20230520",
"cefi_date_range": "199301-201912",
"cefi_init_date": "N/A",
"cefi_ensemble_info": "N/A",
@@ -472,16 +472,16 @@
"cefi_data_doi": "10.5281/zenodo.7893386",
"cefi_paper_doi": "10.5194/gmd-16-6943-2023",
"cefi_aux": "N/A",
- "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519/MLD_003.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc"
+ "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520/MLD_003.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc"
},
"data20": {
- "cefi_filename": "chlos.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc",
+ "cefi_filename": "chlos.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc",
"cefi_variable": "chlos",
"cefi_long_name": "Surface Mass Concentration of Total Phytoplankton expressed as Chlorophyll in sea water",
"cefi_unit": "kg m-3",
"cefi_output_frequency": "monthly",
"cefi_grid_type": "raw",
- "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519",
+ "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520",
"cefi_ori_filename": "ocean_cobalt_omip_sfc.199301-201912.chlos.nc",
"cefi_archive_version": "/archive/acr/fre/NWA/2023_04/NWA12_COBALT_2023_04_kpo4-coastatten-physics/gfdl.ncrc5-intel22-prod/",
"cefi_run_xml": "N/A",
@@ -489,7 +489,7 @@
"cefi_subdomain": "full",
"cefi_experiment_type": "hindcast",
"cefi_experiment_name": "nwa12_cobalt",
- "cefi_release": "r20230519",
+ "cefi_release": "r20230520",
"cefi_date_range": "199301-201912",
"cefi_init_date": "N/A",
"cefi_ensemble_info": "N/A",
@@ -497,16 +497,16 @@
"cefi_data_doi": "10.5281/zenodo.7893386",
"cefi_paper_doi": "10.5194/gmd-16-6943-2023",
"cefi_aux": "N/A",
- "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519/chlos.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc"
+ "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520/chlos.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc"
},
"data21": {
- "cefi_filename": "dissicos.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc",
+ "cefi_filename": "dissicos.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc",
"cefi_variable": "dissicos",
"cefi_long_name": "Surface Dissolved Inorganic Carbon Concentration",
"cefi_unit": "mol m-3",
"cefi_output_frequency": "monthly",
"cefi_grid_type": "raw",
- "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519",
+ "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520",
"cefi_ori_filename": "ocean_cobalt_omip_sfc.199301-201912.dissicos.nc",
"cefi_archive_version": "/archive/acr/fre/NWA/2023_04/NWA12_COBALT_2023_04_kpo4-coastatten-physics/gfdl.ncrc5-intel22-prod/",
"cefi_run_xml": "N/A",
@@ -514,7 +514,7 @@
"cefi_subdomain": "full",
"cefi_experiment_type": "hindcast",
"cefi_experiment_name": "nwa12_cobalt",
- "cefi_release": "r20230519",
+ "cefi_release": "r20230520",
"cefi_date_range": "199301-201912",
"cefi_init_date": "N/A",
"cefi_ensemble_info": "N/A",
@@ -522,16 +522,16 @@
"cefi_data_doi": "10.5281/zenodo.7893386",
"cefi_paper_doi": "10.5194/gmd-16-6943-2023",
"cefi_aux": "N/A",
- "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519/dissicos.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc"
+ "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520/dissicos.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc"
},
"data22": {
- "cefi_filename": "mesozoo_200.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc",
+ "cefi_filename": "mesozoo_200.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc",
"cefi_variable": "mesozoo_200",
"cefi_long_name": "Mesozooplankton biomass, 200m integral",
"cefi_unit": "mol m-2",
"cefi_output_frequency": "monthly",
"cefi_grid_type": "raw",
- "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519",
+ "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520",
"cefi_ori_filename": "ocean_cobalt_tracers_int.199301-201912.mesozoo_200.nc",
"cefi_archive_version": "/archive/acr/fre/NWA/2023_04/NWA12_COBALT_2023_04_kpo4-coastatten-physics/gfdl.ncrc5-intel22-prod/",
"cefi_run_xml": "N/A",
@@ -539,7 +539,7 @@
"cefi_subdomain": "full",
"cefi_experiment_type": "hindcast",
"cefi_experiment_name": "nwa12_cobalt",
- "cefi_release": "r20230519",
+ "cefi_release": "r20230520",
"cefi_date_range": "199301-201912",
"cefi_init_date": "N/A",
"cefi_ensemble_info": "N/A",
@@ -547,16 +547,16 @@
"cefi_data_doi": "10.5281/zenodo.7893386",
"cefi_paper_doi": "10.5194/gmd-16-6943-2023",
"cefi_aux": "N/A",
- "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519/mesozoo_200.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc"
+ "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520/mesozoo_200.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc"
},
"data23": {
- "cefi_filename": "rhopot0.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc",
+ "cefi_filename": "rhopot0.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc",
"cefi_variable": "rhopot0",
"cefi_long_name": "Potential density referenced to surface",
"cefi_unit": "kg m-3",
"cefi_output_frequency": "monthly",
"cefi_grid_type": "raw",
- "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519",
+ "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520",
"cefi_ori_filename": "ocean_monthly_z.199301-201912.rhopot0.nc",
"cefi_archive_version": "/archive/acr/fre/NWA/2023_04/NWA12_COBALT_2023_04_kpo4-coastatten-physics/gfdl.ncrc5-intel22-prod/",
"cefi_run_xml": "N/A",
@@ -564,7 +564,7 @@
"cefi_subdomain": "full",
"cefi_experiment_type": "hindcast",
"cefi_experiment_name": "nwa12_cobalt",
- "cefi_release": "r20230519",
+ "cefi_release": "r20230520",
"cefi_date_range": "199301-201912",
"cefi_init_date": "N/A",
"cefi_ensemble_info": "N/A",
@@ -572,16 +572,16 @@
"cefi_data_doi": "10.5281/zenodo.7893386",
"cefi_paper_doi": "10.5194/gmd-16-6943-2023",
"cefi_aux": "N/A",
- "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519/rhopot0.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc"
+ "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520/rhopot0.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc"
},
"data24": {
- "cefi_filename": "sfc_co3_ion.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc",
+ "cefi_filename": "sfc_co3_ion.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc",
"cefi_variable": "sfc_co3_ion",
"cefi_long_name": "Surface Carbonate Ion",
"cefi_unit": "mol kg-1",
"cefi_output_frequency": "monthly",
"cefi_grid_type": "raw",
- "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519",
+ "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520",
"cefi_ori_filename": "ocean_cobalt_sfc.199301-201912.sfc_co3_ion.nc",
"cefi_archive_version": "/archive/acr/fre/NWA/2023_04/NWA12_COBALT_2023_04_kpo4-coastatten-physics/gfdl.ncrc5-intel22-prod/",
"cefi_run_xml": "N/A",
@@ -589,7 +589,7 @@
"cefi_subdomain": "full",
"cefi_experiment_type": "hindcast",
"cefi_experiment_name": "nwa12_cobalt",
- "cefi_release": "r20230519",
+ "cefi_release": "r20230520",
"cefi_date_range": "199301-201912",
"cefi_init_date": "N/A",
"cefi_ensemble_info": "N/A",
@@ -597,16 +597,16 @@
"cefi_data_doi": "10.5281/zenodo.7893386",
"cefi_paper_doi": "10.5194/gmd-16-6943-2023",
"cefi_aux": "N/A",
- "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519/sfc_co3_ion.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc"
+ "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520/sfc_co3_ion.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc"
},
"data25": {
- "cefi_filename": "sfc_co3_sol_arag.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc",
+ "cefi_filename": "sfc_co3_sol_arag.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc",
"cefi_variable": "sfc_co3_sol_arag",
"cefi_long_name": "Surface Carbonate Ion Solubility for Aragonite",
"cefi_unit": "mol kg-1",
"cefi_output_frequency": "monthly",
"cefi_grid_type": "raw",
- "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519",
+ "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520",
"cefi_ori_filename": "ocean_cobalt_sfc.199301-201912.sfc_co3_sol_arag.nc",
"cefi_archive_version": "/archive/acr/fre/NWA/2023_04/NWA12_COBALT_2023_04_kpo4-coastatten-physics/gfdl.ncrc5-intel22-prod/",
"cefi_run_xml": "N/A",
@@ -614,7 +614,7 @@
"cefi_subdomain": "full",
"cefi_experiment_type": "hindcast",
"cefi_experiment_name": "nwa12_cobalt",
- "cefi_release": "r20230519",
+ "cefi_release": "r20230520",
"cefi_date_range": "199301-201912",
"cefi_init_date": "N/A",
"cefi_ensemble_info": "N/A",
@@ -622,16 +622,16 @@
"cefi_data_doi": "10.5281/zenodo.7893386",
"cefi_paper_doi": "10.5194/gmd-16-6943-2023",
"cefi_aux": "N/A",
- "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519/sfc_co3_sol_arag.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc"
+ "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520/sfc_co3_sol_arag.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc"
},
"data26": {
- "cefi_filename": "sfc_no3.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc",
+ "cefi_filename": "sfc_no3.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc",
"cefi_variable": "sfc_no3",
"cefi_long_name": "Surface NO3",
"cefi_unit": "mol kg-1",
"cefi_output_frequency": "monthly",
"cefi_grid_type": "raw",
- "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519",
+ "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520",
"cefi_ori_filename": "ocean_cobalt_sfc.199301-201912.sfc_no3.nc",
"cefi_archive_version": "/archive/acr/fre/NWA/2023_04/NWA12_COBALT_2023_04_kpo4-coastatten-physics/gfdl.ncrc5-intel22-prod/",
"cefi_run_xml": "N/A",
@@ -639,7 +639,7 @@
"cefi_subdomain": "full",
"cefi_experiment_type": "hindcast",
"cefi_experiment_name": "nwa12_cobalt",
- "cefi_release": "r20230519",
+ "cefi_release": "r20230520",
"cefi_date_range": "199301-201912",
"cefi_init_date": "N/A",
"cefi_ensemble_info": "N/A",
@@ -647,16 +647,16 @@
"cefi_data_doi": "10.5281/zenodo.7893386",
"cefi_paper_doi": "10.5194/gmd-16-6943-2023",
"cefi_aux": "N/A",
- "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519/sfc_no3.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc"
+ "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520/sfc_no3.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc"
},
"data27": {
- "cefi_filename": "sfc_po4.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc",
+ "cefi_filename": "sfc_po4.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc",
"cefi_variable": "sfc_po4",
"cefi_long_name": "Surface PO4",
"cefi_unit": "mol kg-1",
"cefi_output_frequency": "monthly",
"cefi_grid_type": "raw",
- "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519",
+ "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520",
"cefi_ori_filename": "ocean_cobalt_sfc.199301-201912.sfc_po4.nc",
"cefi_archive_version": "/archive/acr/fre/NWA/2023_04/NWA12_COBALT_2023_04_kpo4-coastatten-physics/gfdl.ncrc5-intel22-prod/",
"cefi_run_xml": "N/A",
@@ -664,7 +664,7 @@
"cefi_subdomain": "full",
"cefi_experiment_type": "hindcast",
"cefi_experiment_name": "nwa12_cobalt",
- "cefi_release": "r20230519",
+ "cefi_release": "r20230520",
"cefi_date_range": "199301-201912",
"cefi_init_date": "N/A",
"cefi_ensemble_info": "N/A",
@@ -672,16 +672,16 @@
"cefi_data_doi": "10.5281/zenodo.7893386",
"cefi_paper_doi": "10.5194/gmd-16-6943-2023",
"cefi_aux": "N/A",
- "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519/sfc_po4.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc"
+ "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520/sfc_po4.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc"
},
"data28": {
- "cefi_filename": "siconc.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc",
+ "cefi_filename": "siconc.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc",
"cefi_variable": "siconc",
"cefi_long_name": "ice concentration",
"cefi_unit": "0-1",
"cefi_output_frequency": "monthly",
"cefi_grid_type": "raw",
- "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519",
+ "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520",
"cefi_ori_filename": "ice_monthly.199301-201912.siconc.nc",
"cefi_archive_version": "/archive/acr/fre/NWA/2023_04/NWA12_COBALT_2023_04_kpo4-coastatten-physics/gfdl.ncrc5-intel22-prod/",
"cefi_run_xml": "N/A",
@@ -689,7 +689,7 @@
"cefi_subdomain": "full",
"cefi_experiment_type": "hindcast",
"cefi_experiment_name": "nwa12_cobalt",
- "cefi_release": "r20230519",
+ "cefi_release": "r20230520",
"cefi_date_range": "199301-201912",
"cefi_init_date": "N/A",
"cefi_ensemble_info": "N/A",
@@ -697,16 +697,16 @@
"cefi_data_doi": "10.5281/zenodo.7893386",
"cefi_paper_doi": "10.5194/gmd-16-6943-2023",
"cefi_aux": "N/A",
- "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519/siconc.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc"
+ "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520/siconc.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc"
},
"data29": {
- "cefi_filename": "so.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc",
+ "cefi_filename": "so.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc",
"cefi_variable": "so",
"cefi_long_name": "Sea Water Salinity",
"cefi_unit": "psu",
"cefi_output_frequency": "monthly",
"cefi_grid_type": "raw",
- "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519",
+ "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520",
"cefi_ori_filename": "ocean_monthly_z.199301-201912.so.nc",
"cefi_archive_version": "/archive/acr/fre/NWA/2023_04/NWA12_COBALT_2023_04_kpo4-coastatten-physics/gfdl.ncrc5-intel22-prod/",
"cefi_run_xml": "N/A",
@@ -714,7 +714,7 @@
"cefi_subdomain": "full",
"cefi_experiment_type": "hindcast",
"cefi_experiment_name": "nwa12_cobalt",
- "cefi_release": "r20230519",
+ "cefi_release": "r20230520",
"cefi_date_range": "199301-201912",
"cefi_init_date": "N/A",
"cefi_ensemble_info": "N/A",
@@ -722,16 +722,16 @@
"cefi_data_doi": "10.5281/zenodo.7893386",
"cefi_paper_doi": "10.5194/gmd-16-6943-2023",
"cefi_aux": "N/A",
- "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519/so.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc"
+ "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520/so.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc"
},
"data30": {
- "cefi_filename": "sos.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc",
+ "cefi_filename": "sos.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc",
"cefi_variable": "sos",
"cefi_long_name": "Sea Surface Salinity",
"cefi_unit": "psu",
"cefi_output_frequency": "monthly",
"cefi_grid_type": "raw",
- "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519",
+ "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520",
"cefi_ori_filename": "ocean_monthly.199301-201912.sos.nc",
"cefi_archive_version": "/archive/acr/fre/NWA/2023_04/NWA12_COBALT_2023_04_kpo4-coastatten-physics/gfdl.ncrc5-intel22-prod/",
"cefi_run_xml": "N/A",
@@ -739,7 +739,7 @@
"cefi_subdomain": "full",
"cefi_experiment_type": "hindcast",
"cefi_experiment_name": "nwa12_cobalt",
- "cefi_release": "r20230519",
+ "cefi_release": "r20230520",
"cefi_date_range": "199301-201912",
"cefi_init_date": "N/A",
"cefi_ensemble_info": "N/A",
@@ -747,16 +747,16 @@
"cefi_data_doi": "10.5281/zenodo.7893386",
"cefi_paper_doi": "10.5194/gmd-16-6943-2023",
"cefi_aux": "N/A",
- "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519/sos.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc"
+ "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520/sos.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc"
},
"data31": {
- "cefi_filename": "ssh.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc",
+ "cefi_filename": "ssh.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc",
"cefi_variable": "ssh",
"cefi_long_name": "Sea Surface Height",
"cefi_unit": "m",
"cefi_output_frequency": "monthly",
"cefi_grid_type": "raw",
- "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519",
+ "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520",
"cefi_ori_filename": "ocean_monthly.199301-201912.ssh.nc",
"cefi_archive_version": "/archive/acr/fre/NWA/2023_04/NWA12_COBALT_2023_04_kpo4-coastatten-physics/gfdl.ncrc5-intel22-prod/",
"cefi_run_xml": "N/A",
@@ -764,7 +764,7 @@
"cefi_subdomain": "full",
"cefi_experiment_type": "hindcast",
"cefi_experiment_name": "nwa12_cobalt",
- "cefi_release": "r20230519",
+ "cefi_release": "r20230520",
"cefi_date_range": "199301-201912",
"cefi_init_date": "N/A",
"cefi_ensemble_info": "N/A",
@@ -772,16 +772,16 @@
"cefi_data_doi": "10.5281/zenodo.7893386",
"cefi_paper_doi": "10.5194/gmd-16-6943-2023",
"cefi_aux": "N/A",
- "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519/ssh.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc"
+ "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520/ssh.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc"
},
"data32": {
- "cefi_filename": "talkos.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc",
+ "cefi_filename": "talkos.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc",
"cefi_variable": "talkos",
"cefi_long_name": "Surface Total Alkalinity",
"cefi_unit": "mol m-3",
"cefi_output_frequency": "monthly",
"cefi_grid_type": "raw",
- "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519",
+ "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520",
"cefi_ori_filename": "ocean_cobalt_omip_sfc.199301-201912.talkos.nc",
"cefi_archive_version": "/archive/acr/fre/NWA/2023_04/NWA12_COBALT_2023_04_kpo4-coastatten-physics/gfdl.ncrc5-intel22-prod/",
"cefi_run_xml": "N/A",
@@ -789,7 +789,7 @@
"cefi_subdomain": "full",
"cefi_experiment_type": "hindcast",
"cefi_experiment_name": "nwa12_cobalt",
- "cefi_release": "r20230519",
+ "cefi_release": "r20230520",
"cefi_date_range": "199301-201912",
"cefi_init_date": "N/A",
"cefi_ensemble_info": "N/A",
@@ -797,16 +797,16 @@
"cefi_data_doi": "10.5281/zenodo.7893386",
"cefi_paper_doi": "10.5194/gmd-16-6943-2023",
"cefi_aux": "N/A",
- "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519/talkos.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc"
+ "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520/talkos.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc"
},
"data33": {
- "cefi_filename": "thetao.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc",
+ "cefi_filename": "thetao.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc",
"cefi_variable": "thetao",
"cefi_long_name": "Sea Water Potential Temperature",
"cefi_unit": "degC",
"cefi_output_frequency": "monthly",
"cefi_grid_type": "raw",
- "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519",
+ "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520",
"cefi_ori_filename": "ocean_monthly_z.199301-201912.thetao.nc",
"cefi_archive_version": "/archive/acr/fre/NWA/2023_04/NWA12_COBALT_2023_04_kpo4-coastatten-physics/gfdl.ncrc5-intel22-prod/",
"cefi_run_xml": "N/A",
@@ -814,7 +814,7 @@
"cefi_subdomain": "full",
"cefi_experiment_type": "hindcast",
"cefi_experiment_name": "nwa12_cobalt",
- "cefi_release": "r20230519",
+ "cefi_release": "r20230520",
"cefi_date_range": "199301-201912",
"cefi_init_date": "N/A",
"cefi_ensemble_info": "N/A",
@@ -822,16 +822,16 @@
"cefi_data_doi": "10.5281/zenodo.7893386",
"cefi_paper_doi": "10.5194/gmd-16-6943-2023",
"cefi_aux": "N/A",
- "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519/thetao.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc"
+ "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520/thetao.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc"
},
"data34": {
- "cefi_filename": "tob.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc",
+ "cefi_filename": "tob.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc",
"cefi_variable": "tob",
"cefi_long_name": "Sea Water Potential Temperature at Sea Floor",
"cefi_unit": "degC",
"cefi_output_frequency": "monthly",
"cefi_grid_type": "raw",
- "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519",
+ "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520",
"cefi_ori_filename": "ocean_monthly.199301-201912.tob.nc",
"cefi_archive_version": "/archive/acr/fre/NWA/2023_04/NWA12_COBALT_2023_04_kpo4-coastatten-physics/gfdl.ncrc5-intel22-prod/",
"cefi_run_xml": "N/A",
@@ -839,7 +839,7 @@
"cefi_subdomain": "full",
"cefi_experiment_type": "hindcast",
"cefi_experiment_name": "nwa12_cobalt",
- "cefi_release": "r20230519",
+ "cefi_release": "r20230520",
"cefi_date_range": "199301-201912",
"cefi_init_date": "N/A",
"cefi_ensemble_info": "N/A",
@@ -847,16 +847,16 @@
"cefi_data_doi": "10.5281/zenodo.7893386",
"cefi_paper_doi": "10.5194/gmd-16-6943-2023",
"cefi_aux": "N/A",
- "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519/tob.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc"
+ "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520/tob.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc"
},
"data35": {
- "cefi_filename": "tos.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc",
+ "cefi_filename": "tos.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc",
"cefi_variable": "tos",
"cefi_long_name": "Sea Surface Temperature",
"cefi_unit": "degC",
"cefi_output_frequency": "monthly",
"cefi_grid_type": "raw",
- "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519",
+ "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520",
"cefi_ori_filename": "ocean_monthly.199301-201912.tos.nc",
"cefi_archive_version": "/archive/acr/fre/NWA/2023_04/NWA12_COBALT_2023_04_kpo4-coastatten-physics/gfdl.ncrc5-intel22-prod/",
"cefi_run_xml": "N/A",
@@ -864,7 +864,7 @@
"cefi_subdomain": "full",
"cefi_experiment_type": "hindcast",
"cefi_experiment_name": "nwa12_cobalt",
- "cefi_release": "r20230519",
+ "cefi_release": "r20230520",
"cefi_date_range": "199301-201912",
"cefi_init_date": "N/A",
"cefi_ensemble_info": "N/A",
@@ -872,116 +872,16 @@
"cefi_data_doi": "10.5281/zenodo.7893386",
"cefi_paper_doi": "10.5194/gmd-16-6943-2023",
"cefi_aux": "N/A",
- "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519/tos.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc"
+ "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230520/tos.nwa.full.hcast.monthly.raw.r20230520.199301-201912.nc"
},
"data36": {
- "cefi_filename": "umo.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc",
- "cefi_variable": "umo",
- "cefi_long_name": "Ocean Mass X Transport",
- "cefi_unit": "kg s-1",
- "cefi_output_frequency": "monthly",
- "cefi_grid_type": "raw",
- "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519",
- "cefi_ori_filename": "ocean_monthly_z.199301-201912.umo.nc",
- "cefi_archive_version": "/archive/acr/fre/NWA/2023_04/NWA12_COBALT_2023_04_kpo4-coastatten-physics/gfdl.ncrc5-intel22-prod/",
- "cefi_run_xml": "N/A",
- "cefi_region": "nwa",
- "cefi_subdomain": "full",
- "cefi_experiment_type": "hindcast",
- "cefi_experiment_name": "nwa12_cobalt",
- "cefi_release": "r20230519",
- "cefi_date_range": "199301-201912",
- "cefi_init_date": "N/A",
- "cefi_ensemble_info": "N/A",
- "cefi_forcing": "N/A",
- "cefi_data_doi": "10.5281/zenodo.7893386",
- "cefi_paper_doi": "10.5194/gmd-16-6943-2023",
- "cefi_aux": "N/A",
- "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519/umo.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc"
- },
- "data37": {
- "cefi_filename": "uo.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc",
- "cefi_variable": "uo",
- "cefi_long_name": "Sea Water X Velocity",
- "cefi_unit": "m s-1",
- "cefi_output_frequency": "monthly",
- "cefi_grid_type": "raw",
- "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519",
- "cefi_ori_filename": "ocean_monthly_z.199301-201912.uo.nc",
- "cefi_archive_version": "/archive/acr/fre/NWA/2023_04/NWA12_COBALT_2023_04_kpo4-coastatten-physics/gfdl.ncrc5-intel22-prod/",
- "cefi_run_xml": "N/A",
- "cefi_region": "nwa",
- "cefi_subdomain": "full",
- "cefi_experiment_type": "hindcast",
- "cefi_experiment_name": "nwa12_cobalt",
- "cefi_release": "r20230519",
- "cefi_date_range": "199301-201912",
- "cefi_init_date": "N/A",
- "cefi_ensemble_info": "N/A",
- "cefi_forcing": "N/A",
- "cefi_data_doi": "10.5281/zenodo.7893386",
- "cefi_paper_doi": "10.5194/gmd-16-6943-2023",
- "cefi_aux": "N/A",
- "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519/uo.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc"
- },
- "data38": {
- "cefi_filename": "vmo.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc",
- "cefi_variable": "vmo",
- "cefi_long_name": "Ocean Mass Y Transport",
- "cefi_unit": "kg s-1",
- "cefi_output_frequency": "monthly",
- "cefi_grid_type": "raw",
- "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519",
- "cefi_ori_filename": "ocean_monthly_z.199301-201912.vmo.nc",
- "cefi_archive_version": "/archive/acr/fre/NWA/2023_04/NWA12_COBALT_2023_04_kpo4-coastatten-physics/gfdl.ncrc5-intel22-prod/",
- "cefi_run_xml": "N/A",
- "cefi_region": "nwa",
- "cefi_subdomain": "full",
- "cefi_experiment_type": "hindcast",
- "cefi_experiment_name": "nwa12_cobalt",
- "cefi_release": "r20230519",
- "cefi_date_range": "199301-201912",
- "cefi_init_date": "N/A",
- "cefi_ensemble_info": "N/A",
- "cefi_forcing": "N/A",
- "cefi_data_doi": "10.5281/zenodo.7893386",
- "cefi_paper_doi": "10.5194/gmd-16-6943-2023",
- "cefi_aux": "N/A",
- "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519/vmo.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc"
- },
- "data39": {
- "cefi_filename": "vo.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc",
- "cefi_variable": "vo",
- "cefi_long_name": "Sea Water Y Velocity",
- "cefi_unit": "m s-1",
- "cefi_output_frequency": "monthly",
- "cefi_grid_type": "raw",
- "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519",
- "cefi_ori_filename": "ocean_monthly_z.199301-201912.vo.nc",
- "cefi_archive_version": "/archive/acr/fre/NWA/2023_04/NWA12_COBALT_2023_04_kpo4-coastatten-physics/gfdl.ncrc5-intel22-prod/",
- "cefi_run_xml": "N/A",
- "cefi_region": "nwa",
- "cefi_subdomain": "full",
- "cefi_experiment_type": "hindcast",
- "cefi_experiment_name": "nwa12_cobalt",
- "cefi_release": "r20230519",
- "cefi_date_range": "199301-201912",
- "cefi_init_date": "N/A",
- "cefi_ensemble_info": "N/A",
- "cefi_forcing": "N/A",
- "cefi_data_doi": "10.5281/zenodo.7893386",
- "cefi_paper_doi": "10.5194/gmd-16-6943-2023",
- "cefi_aux": "N/A",
- "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/raw/r20230519/vo.nwa.full.hcast.monthly.raw.r20230519.199301-201912.nc"
- },
- "data40": {
- "cefi_filename": "MLD_003.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc",
+ "cefi_filename": "MLD_003.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc",
"cefi_variable": "MLD_003",
"cefi_long_name": "Mixed layer depth (delta rho = 0.03)",
"cefi_unit": "m",
"cefi_output_frequency": "monthly",
"cefi_grid_type": "regrid",
- "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519",
+ "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520",
"cefi_ori_filename": "ocean_monthly.199301-201912.MLD_003.nc",
"cefi_archive_version": "/archive/acr/fre/NWA/2023_04/NWA12_COBALT_2023_04_kpo4-coastatten-physics/gfdl.ncrc5-intel22-prod/",
"cefi_run_xml": "N/A",
@@ -989,7 +889,7 @@
"cefi_subdomain": "full",
"cefi_experiment_type": "hindcast",
"cefi_experiment_name": "nwa12_cobalt",
- "cefi_release": "r20230519",
+ "cefi_release": "r20230520",
"cefi_date_range": "199301-201912",
"cefi_init_date": "N/A",
"cefi_ensemble_info": "N/A",
@@ -997,16 +897,16 @@
"cefi_data_doi": "10.5281/zenodo.7893386",
"cefi_paper_doi": "10.5194/gmd-16-6943-2023",
"cefi_aux": "N/A",
- "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519/MLD_003.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc"
+ "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520/MLD_003.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc"
},
- "data41": {
- "cefi_filename": "chlos.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc",
+ "data37": {
+ "cefi_filename": "chlos.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc",
"cefi_variable": "chlos",
"cefi_long_name": "Surface Mass Concentration of Total Phytoplankton expressed as Chlorophyll in sea water",
"cefi_unit": "kg m-3",
"cefi_output_frequency": "monthly",
"cefi_grid_type": "regrid",
- "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519",
+ "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520",
"cefi_ori_filename": "ocean_cobalt_omip_sfc.199301-201912.chlos.nc",
"cefi_archive_version": "/archive/acr/fre/NWA/2023_04/NWA12_COBALT_2023_04_kpo4-coastatten-physics/gfdl.ncrc5-intel22-prod/",
"cefi_run_xml": "N/A",
@@ -1014,7 +914,7 @@
"cefi_subdomain": "full",
"cefi_experiment_type": "hindcast",
"cefi_experiment_name": "nwa12_cobalt",
- "cefi_release": "r20230519",
+ "cefi_release": "r20230520",
"cefi_date_range": "199301-201912",
"cefi_init_date": "N/A",
"cefi_ensemble_info": "N/A",
@@ -1022,16 +922,16 @@
"cefi_data_doi": "10.5281/zenodo.7893386",
"cefi_paper_doi": "10.5194/gmd-16-6943-2023",
"cefi_aux": "N/A",
- "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519/chlos.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc"
+ "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520/chlos.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc"
},
- "data42": {
- "cefi_filename": "dissicos.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc",
+ "data38": {
+ "cefi_filename": "dissicos.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc",
"cefi_variable": "dissicos",
"cefi_long_name": "Surface Dissolved Inorganic Carbon Concentration",
"cefi_unit": "mol m-3",
"cefi_output_frequency": "monthly",
"cefi_grid_type": "regrid",
- "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519",
+ "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520",
"cefi_ori_filename": "ocean_cobalt_omip_sfc.199301-201912.dissicos.nc",
"cefi_archive_version": "/archive/acr/fre/NWA/2023_04/NWA12_COBALT_2023_04_kpo4-coastatten-physics/gfdl.ncrc5-intel22-prod/",
"cefi_run_xml": "N/A",
@@ -1039,7 +939,7 @@
"cefi_subdomain": "full",
"cefi_experiment_type": "hindcast",
"cefi_experiment_name": "nwa12_cobalt",
- "cefi_release": "r20230519",
+ "cefi_release": "r20230520",
"cefi_date_range": "199301-201912",
"cefi_init_date": "N/A",
"cefi_ensemble_info": "N/A",
@@ -1047,16 +947,16 @@
"cefi_data_doi": "10.5281/zenodo.7893386",
"cefi_paper_doi": "10.5194/gmd-16-6943-2023",
"cefi_aux": "N/A",
- "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519/dissicos.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc"
+ "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520/dissicos.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc"
},
- "data43": {
- "cefi_filename": "mesozoo_200.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc",
+ "data39": {
+ "cefi_filename": "mesozoo_200.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc",
"cefi_variable": "mesozoo_200",
"cefi_long_name": "Mesozooplankton biomass, 200m integral",
"cefi_unit": "mol m-2",
"cefi_output_frequency": "monthly",
"cefi_grid_type": "regrid",
- "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519",
+ "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520",
"cefi_ori_filename": "ocean_cobalt_tracers_int.199301-201912.mesozoo_200.nc",
"cefi_archive_version": "/archive/acr/fre/NWA/2023_04/NWA12_COBALT_2023_04_kpo4-coastatten-physics/gfdl.ncrc5-intel22-prod/",
"cefi_run_xml": "N/A",
@@ -1064,7 +964,7 @@
"cefi_subdomain": "full",
"cefi_experiment_type": "hindcast",
"cefi_experiment_name": "nwa12_cobalt",
- "cefi_release": "r20230519",
+ "cefi_release": "r20230520",
"cefi_date_range": "199301-201912",
"cefi_init_date": "N/A",
"cefi_ensemble_info": "N/A",
@@ -1072,16 +972,16 @@
"cefi_data_doi": "10.5281/zenodo.7893386",
"cefi_paper_doi": "10.5194/gmd-16-6943-2023",
"cefi_aux": "N/A",
- "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519/mesozoo_200.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc"
+ "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520/mesozoo_200.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc"
},
- "data44": {
- "cefi_filename": "sfc_co3_ion.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc",
+ "data40": {
+ "cefi_filename": "sfc_co3_ion.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc",
"cefi_variable": "sfc_co3_ion",
"cefi_long_name": "Surface Carbonate Ion",
"cefi_unit": "mol kg-1",
"cefi_output_frequency": "monthly",
"cefi_grid_type": "regrid",
- "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519",
+ "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520",
"cefi_ori_filename": "ocean_cobalt_sfc.199301-201912.sfc_co3_ion.nc",
"cefi_archive_version": "/archive/acr/fre/NWA/2023_04/NWA12_COBALT_2023_04_kpo4-coastatten-physics/gfdl.ncrc5-intel22-prod/",
"cefi_run_xml": "N/A",
@@ -1089,7 +989,7 @@
"cefi_subdomain": "full",
"cefi_experiment_type": "hindcast",
"cefi_experiment_name": "nwa12_cobalt",
- "cefi_release": "r20230519",
+ "cefi_release": "r20230520",
"cefi_date_range": "199301-201912",
"cefi_init_date": "N/A",
"cefi_ensemble_info": "N/A",
@@ -1097,16 +997,16 @@
"cefi_data_doi": "10.5281/zenodo.7893386",
"cefi_paper_doi": "10.5194/gmd-16-6943-2023",
"cefi_aux": "N/A",
- "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519/sfc_co3_ion.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc"
+ "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520/sfc_co3_ion.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc"
},
- "data45": {
- "cefi_filename": "sfc_co3_sol_arag.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc",
+ "data41": {
+ "cefi_filename": "sfc_co3_sol_arag.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc",
"cefi_variable": "sfc_co3_sol_arag",
"cefi_long_name": "Surface Carbonate Ion Solubility for Aragonite",
"cefi_unit": "mol kg-1",
"cefi_output_frequency": "monthly",
"cefi_grid_type": "regrid",
- "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519",
+ "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520",
"cefi_ori_filename": "ocean_cobalt_sfc.199301-201912.sfc_co3_sol_arag.nc",
"cefi_archive_version": "/archive/acr/fre/NWA/2023_04/NWA12_COBALT_2023_04_kpo4-coastatten-physics/gfdl.ncrc5-intel22-prod/",
"cefi_run_xml": "N/A",
@@ -1114,7 +1014,7 @@
"cefi_subdomain": "full",
"cefi_experiment_type": "hindcast",
"cefi_experiment_name": "nwa12_cobalt",
- "cefi_release": "r20230519",
+ "cefi_release": "r20230520",
"cefi_date_range": "199301-201912",
"cefi_init_date": "N/A",
"cefi_ensemble_info": "N/A",
@@ -1122,16 +1022,16 @@
"cefi_data_doi": "10.5281/zenodo.7893386",
"cefi_paper_doi": "10.5194/gmd-16-6943-2023",
"cefi_aux": "N/A",
- "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519/sfc_co3_sol_arag.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc"
+ "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520/sfc_co3_sol_arag.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc"
},
- "data46": {
- "cefi_filename": "sfc_no3.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc",
+ "data42": {
+ "cefi_filename": "sfc_no3.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc",
"cefi_variable": "sfc_no3",
"cefi_long_name": "Surface NO3",
"cefi_unit": "mol kg-1",
"cefi_output_frequency": "monthly",
"cefi_grid_type": "regrid",
- "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519",
+ "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520",
"cefi_ori_filename": "ocean_cobalt_sfc.199301-201912.sfc_no3.nc",
"cefi_archive_version": "/archive/acr/fre/NWA/2023_04/NWA12_COBALT_2023_04_kpo4-coastatten-physics/gfdl.ncrc5-intel22-prod/",
"cefi_run_xml": "N/A",
@@ -1139,7 +1039,7 @@
"cefi_subdomain": "full",
"cefi_experiment_type": "hindcast",
"cefi_experiment_name": "nwa12_cobalt",
- "cefi_release": "r20230519",
+ "cefi_release": "r20230520",
"cefi_date_range": "199301-201912",
"cefi_init_date": "N/A",
"cefi_ensemble_info": "N/A",
@@ -1147,16 +1047,16 @@
"cefi_data_doi": "10.5281/zenodo.7893386",
"cefi_paper_doi": "10.5194/gmd-16-6943-2023",
"cefi_aux": "N/A",
- "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519/sfc_no3.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc"
+ "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520/sfc_no3.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc"
},
- "data47": {
- "cefi_filename": "sfc_po4.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc",
+ "data43": {
+ "cefi_filename": "sfc_po4.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc",
"cefi_variable": "sfc_po4",
"cefi_long_name": "Surface PO4",
"cefi_unit": "mol kg-1",
"cefi_output_frequency": "monthly",
"cefi_grid_type": "regrid",
- "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519",
+ "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520",
"cefi_ori_filename": "ocean_cobalt_sfc.199301-201912.sfc_po4.nc",
"cefi_archive_version": "/archive/acr/fre/NWA/2023_04/NWA12_COBALT_2023_04_kpo4-coastatten-physics/gfdl.ncrc5-intel22-prod/",
"cefi_run_xml": "N/A",
@@ -1164,7 +1064,7 @@
"cefi_subdomain": "full",
"cefi_experiment_type": "hindcast",
"cefi_experiment_name": "nwa12_cobalt",
- "cefi_release": "r20230519",
+ "cefi_release": "r20230520",
"cefi_date_range": "199301-201912",
"cefi_init_date": "N/A",
"cefi_ensemble_info": "N/A",
@@ -1172,16 +1072,16 @@
"cefi_data_doi": "10.5281/zenodo.7893386",
"cefi_paper_doi": "10.5194/gmd-16-6943-2023",
"cefi_aux": "N/A",
- "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519/sfc_po4.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc"
+ "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520/sfc_po4.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc"
},
- "data48": {
- "cefi_filename": "siconc.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc",
+ "data44": {
+ "cefi_filename": "siconc.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc",
"cefi_variable": "siconc",
"cefi_long_name": "ice concentration",
"cefi_unit": "0-1",
"cefi_output_frequency": "monthly",
"cefi_grid_type": "regrid",
- "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519",
+ "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520",
"cefi_ori_filename": "ice_monthly.199301-201912.siconc.nc",
"cefi_archive_version": "/archive/acr/fre/NWA/2023_04/NWA12_COBALT_2023_04_kpo4-coastatten-physics/gfdl.ncrc5-intel22-prod/",
"cefi_run_xml": "N/A",
@@ -1189,7 +1089,7 @@
"cefi_subdomain": "full",
"cefi_experiment_type": "hindcast",
"cefi_experiment_name": "nwa12_cobalt",
- "cefi_release": "r20230519",
+ "cefi_release": "r20230520",
"cefi_date_range": "199301-201912",
"cefi_init_date": "N/A",
"cefi_ensemble_info": "N/A",
@@ -1197,16 +1097,16 @@
"cefi_data_doi": "10.5281/zenodo.7893386",
"cefi_paper_doi": "10.5194/gmd-16-6943-2023",
"cefi_aux": "N/A",
- "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519/siconc.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc"
+ "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520/siconc.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc"
},
- "data49": {
- "cefi_filename": "so.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc",
+ "data45": {
+ "cefi_filename": "so.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc",
"cefi_variable": "so",
"cefi_long_name": "Sea Water Salinity",
"cefi_unit": "psu",
"cefi_output_frequency": "monthly",
"cefi_grid_type": "regrid",
- "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519",
+ "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520",
"cefi_ori_filename": "ocean_monthly_z.199301-201912.so.nc",
"cefi_archive_version": "/archive/acr/fre/NWA/2023_04/NWA12_COBALT_2023_04_kpo4-coastatten-physics/gfdl.ncrc5-intel22-prod/",
"cefi_run_xml": "N/A",
@@ -1214,7 +1114,7 @@
"cefi_subdomain": "full",
"cefi_experiment_type": "hindcast",
"cefi_experiment_name": "nwa12_cobalt",
- "cefi_release": "r20230519",
+ "cefi_release": "r20230520",
"cefi_date_range": "199301-201912",
"cefi_init_date": "N/A",
"cefi_ensemble_info": "N/A",
@@ -1222,16 +1122,16 @@
"cefi_data_doi": "10.5281/zenodo.7893386",
"cefi_paper_doi": "10.5194/gmd-16-6943-2023",
"cefi_aux": "N/A",
- "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519/so.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc"
+ "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520/so.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc"
},
- "data50": {
- "cefi_filename": "sos.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc",
+ "data46": {
+ "cefi_filename": "sos.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc",
"cefi_variable": "sos",
"cefi_long_name": "Sea Surface Salinity",
"cefi_unit": "psu",
"cefi_output_frequency": "monthly",
"cefi_grid_type": "regrid",
- "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519",
+ "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520",
"cefi_ori_filename": "ocean_monthly.199301-201912.sos.nc",
"cefi_archive_version": "/archive/acr/fre/NWA/2023_04/NWA12_COBALT_2023_04_kpo4-coastatten-physics/gfdl.ncrc5-intel22-prod/",
"cefi_run_xml": "N/A",
@@ -1239,7 +1139,7 @@
"cefi_subdomain": "full",
"cefi_experiment_type": "hindcast",
"cefi_experiment_name": "nwa12_cobalt",
- "cefi_release": "r20230519",
+ "cefi_release": "r20230520",
"cefi_date_range": "199301-201912",
"cefi_init_date": "N/A",
"cefi_ensemble_info": "N/A",
@@ -1247,16 +1147,16 @@
"cefi_data_doi": "10.5281/zenodo.7893386",
"cefi_paper_doi": "10.5194/gmd-16-6943-2023",
"cefi_aux": "N/A",
- "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519/sos.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc"
+ "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520/sos.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc"
},
- "data51": {
- "cefi_filename": "ssh.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc",
+ "data47": {
+ "cefi_filename": "ssh.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc",
"cefi_variable": "ssh",
"cefi_long_name": "Sea Surface Height",
"cefi_unit": "m",
"cefi_output_frequency": "monthly",
"cefi_grid_type": "regrid",
- "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519",
+ "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520",
"cefi_ori_filename": "ocean_monthly.199301-201912.ssh.nc",
"cefi_archive_version": "/archive/acr/fre/NWA/2023_04/NWA12_COBALT_2023_04_kpo4-coastatten-physics/gfdl.ncrc5-intel22-prod/",
"cefi_run_xml": "N/A",
@@ -1264,7 +1164,7 @@
"cefi_subdomain": "full",
"cefi_experiment_type": "hindcast",
"cefi_experiment_name": "nwa12_cobalt",
- "cefi_release": "r20230519",
+ "cefi_release": "r20230520",
"cefi_date_range": "199301-201912",
"cefi_init_date": "N/A",
"cefi_ensemble_info": "N/A",
@@ -1272,16 +1172,16 @@
"cefi_data_doi": "10.5281/zenodo.7893386",
"cefi_paper_doi": "10.5194/gmd-16-6943-2023",
"cefi_aux": "N/A",
- "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519/ssh.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc"
+ "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520/ssh.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc"
},
- "data52": {
- "cefi_filename": "talkos.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc",
+ "data48": {
+ "cefi_filename": "talkos.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc",
"cefi_variable": "talkos",
"cefi_long_name": "Surface Total Alkalinity",
"cefi_unit": "mol m-3",
"cefi_output_frequency": "monthly",
"cefi_grid_type": "regrid",
- "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519",
+ "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520",
"cefi_ori_filename": "ocean_cobalt_omip_sfc.199301-201912.talkos.nc",
"cefi_archive_version": "/archive/acr/fre/NWA/2023_04/NWA12_COBALT_2023_04_kpo4-coastatten-physics/gfdl.ncrc5-intel22-prod/",
"cefi_run_xml": "N/A",
@@ -1289,7 +1189,7 @@
"cefi_subdomain": "full",
"cefi_experiment_type": "hindcast",
"cefi_experiment_name": "nwa12_cobalt",
- "cefi_release": "r20230519",
+ "cefi_release": "r20230520",
"cefi_date_range": "199301-201912",
"cefi_init_date": "N/A",
"cefi_ensemble_info": "N/A",
@@ -1297,16 +1197,16 @@
"cefi_data_doi": "10.5281/zenodo.7893386",
"cefi_paper_doi": "10.5194/gmd-16-6943-2023",
"cefi_aux": "N/A",
- "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519/talkos.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc"
+ "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520/talkos.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc"
},
- "data53": {
- "cefi_filename": "thetao.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc",
+ "data49": {
+ "cefi_filename": "thetao.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc",
"cefi_variable": "thetao",
"cefi_long_name": "Sea Water Potential Temperature",
"cefi_unit": "degC",
"cefi_output_frequency": "monthly",
"cefi_grid_type": "regrid",
- "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519",
+ "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520",
"cefi_ori_filename": "ocean_monthly_z.199301-201912.thetao.nc",
"cefi_archive_version": "/archive/acr/fre/NWA/2023_04/NWA12_COBALT_2023_04_kpo4-coastatten-physics/gfdl.ncrc5-intel22-prod/",
"cefi_run_xml": "N/A",
@@ -1314,7 +1214,7 @@
"cefi_subdomain": "full",
"cefi_experiment_type": "hindcast",
"cefi_experiment_name": "nwa12_cobalt",
- "cefi_release": "r20230519",
+ "cefi_release": "r20230520",
"cefi_date_range": "199301-201912",
"cefi_init_date": "N/A",
"cefi_ensemble_info": "N/A",
@@ -1322,16 +1222,16 @@
"cefi_data_doi": "10.5281/zenodo.7893386",
"cefi_paper_doi": "10.5194/gmd-16-6943-2023",
"cefi_aux": "N/A",
- "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519/thetao.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc"
+ "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520/thetao.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc"
},
- "data54": {
- "cefi_filename": "tob.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc",
+ "data50": {
+ "cefi_filename": "tob.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc",
"cefi_variable": "tob",
"cefi_long_name": "Sea Water Potential Temperature at Sea Floor",
"cefi_unit": "degC",
"cefi_output_frequency": "monthly",
"cefi_grid_type": "regrid",
- "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519",
+ "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520",
"cefi_ori_filename": "ocean_monthly.199301-201912.tob.nc",
"cefi_archive_version": "/archive/acr/fre/NWA/2023_04/NWA12_COBALT_2023_04_kpo4-coastatten-physics/gfdl.ncrc5-intel22-prod/",
"cefi_run_xml": "N/A",
@@ -1339,7 +1239,7 @@
"cefi_subdomain": "full",
"cefi_experiment_type": "hindcast",
"cefi_experiment_name": "nwa12_cobalt",
- "cefi_release": "r20230519",
+ "cefi_release": "r20230520",
"cefi_date_range": "199301-201912",
"cefi_init_date": "N/A",
"cefi_ensemble_info": "N/A",
@@ -1347,16 +1247,16 @@
"cefi_data_doi": "10.5281/zenodo.7893386",
"cefi_paper_doi": "10.5194/gmd-16-6943-2023",
"cefi_aux": "N/A",
- "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519/tob.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc"
+ "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520/tob.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc"
},
- "data55": {
- "cefi_filename": "tos.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc",
+ "data51": {
+ "cefi_filename": "tos.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc",
"cefi_variable": "tos",
"cefi_long_name": "Sea Surface Temperature",
"cefi_unit": "degC",
"cefi_output_frequency": "monthly",
"cefi_grid_type": "regrid",
- "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519",
+ "cefi_rel_path": "cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520",
"cefi_ori_filename": "ocean_monthly.199301-201912.tos.nc",
"cefi_archive_version": "/archive/acr/fre/NWA/2023_04/NWA12_COBALT_2023_04_kpo4-coastatten-physics/gfdl.ncrc5-intel22-prod/",
"cefi_run_xml": "N/A",
@@ -1364,7 +1264,7 @@
"cefi_subdomain": "full",
"cefi_experiment_type": "hindcast",
"cefi_experiment_name": "nwa12_cobalt",
- "cefi_release": "r20230519",
+ "cefi_release": "r20230520",
"cefi_date_range": "199301-201912",
"cefi_init_date": "N/A",
"cefi_ensemble_info": "N/A",
@@ -1372,6 +1272,6 @@
"cefi_data_doi": "10.5281/zenodo.7893386",
"cefi_paper_doi": "10.5194/gmd-16-6943-2023",
"cefi_aux": "N/A",
- "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230519/tos.nwa.full.hcast.monthly.regrid.r20230519.199301-201912.nc"
+ "cefi_opendap": "http://psl.noaa.gov/thredds/dodsC/Projects/CEFI/regional_mom6/cefi_portal/northwest_atlantic/full_domain/hindcast/monthly/regrid/r20230520/tos.nwa.full.hcast.monthly.regrid.r20230520.199301-201912.nc"
}
}
\ No newline at end of file
diff --git a/data_index/cefi_data_indexing.Projects.CEFI.regional_mom6.cefi_portal.northwest_atlantic.full_domain.hindcast.xml b/data_index/cefi_data_indexing.Projects.CEFI.regional_mom6.cefi_portal.northwest_atlantic.full_domain.hindcast.xml
index c996953..951ce91 100644
--- a/data_index/cefi_data_indexing.Projects.CEFI.regional_mom6.cefi_portal.northwest_atlantic.full_domain.hindcast.xml
+++ b/data_index/cefi_data_indexing.Projects.CEFI.regional_mom6.cefi_portal.northwest_atlantic.full_domain.hindcast.xml
@@ -1,2 +1,2 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/data_option_json/cefi_data_options.Projects.CEFI.regional_mom6.cefi_portal.northwest_atlantic.full_domain.hindcast.json b/data_option_json/cefi_data_options.Projects.CEFI.regional_mom6.cefi_portal.northwest_atlantic.full_domain.hindcast.json
index 32c788f..a7e0565 100644
--- a/data_option_json/cefi_data_options.Projects.CEFI.regional_mom6.cefi_portal.northwest_atlantic.full_domain.hindcast.json
+++ b/data_option_json/cefi_data_options.Projects.CEFI.regional_mom6.cefi_portal.northwest_atlantic.full_domain.hindcast.json
@@ -11,6 +11,6 @@
"regrid"
],
"release": [
- "r20230519"
+ "r20230520"
]
}
\ No newline at end of file
diff --git a/data_option_json/cefi_experiment_type_options.Projects.CEFI.regional_mom6.cefi_portal.northwest_atlantic.full_domain.json b/data_option_json/cefi_experiment_type_options.Projects.CEFI.regional_mom6.cefi_portal.northwest_atlantic.full_domain.json
new file mode 100644
index 0000000..49240ad
--- /dev/null
+++ b/data_option_json/cefi_experiment_type_options.Projects.CEFI.regional_mom6.cefi_portal.northwest_atlantic.full_domain.json
@@ -0,0 +1,6 @@
+{
+ "experiment_type": [
+ "seasonal_reforecast",
+ "hindcast"
+ ]
+}
\ No newline at end of file
diff --git a/data_option_json/cefi_var_options.Projects.CEFI.regional_mom6.cefi_portal.northwest_atlantic.full_domain.hindcast.json b/data_option_json/cefi_var_options.Projects.CEFI.regional_mom6.cefi_portal.northwest_atlantic.full_domain.hindcast.json
index abbfcf3..d71bdc5 100644
--- a/data_option_json/cefi_var_options.Projects.CEFI.regional_mom6.cefi_portal.northwest_atlantic.full_domain.hindcast.json
+++ b/data_option_json/cefi_var_options.Projects.CEFI.regional_mom6.cefi_portal.northwest_atlantic.full_domain.hindcast.json
@@ -1,39 +1,33 @@
{
"var_values": [
+ "btm_o2",
+ "mesozoo_200",
+ "MLD_003",
+ "rhopot0",
+ "ssv_rotate",
+ "ssu_rotate",
"ssh",
- "vmo",
- "talkos",
- "sob",
- "siconc",
+ "ssv",
"sos",
+ "tos",
"ssu",
- "dissicos",
- "sfc_po4",
- "sfc_co3_ion",
+ "thetao",
"tob",
- "tos",
- "rhopot0",
- "btm_o2",
- "chlos",
- "ssu_rotate",
+ "so",
+ "sob",
+ "sfc_co3_ion",
"sfc_co3_sol_arag",
- "ssv_rotate",
- "thetao",
- "MLD_003",
- "mesozoo_200",
- "ssv",
+ "dissicos",
+ "chlos",
"sfc_no3",
- "umo",
- "uo",
- "so",
- "vo"
+ "sfc_po4",
+ "talkos",
+ "siconc"
],
"var_options": [
"Bottom Oxygen",
"Mesozooplankton biomass, 200m integral",
"Mixed layer depth (delta rho = 0.03)",
- "Ocean Mass X Transport",
- "Ocean Mass Y Transport",
"Potential density referenced to surface",
"Rotated Sea Surface Meridional Velocity",
"Rotated Sea Surface Zonal Velocity",
@@ -46,8 +40,6 @@
"Sea Water Potential Temperature at Sea Floor",
"Sea Water Salinity",
"Sea Water Salinity at Sea Floor",
- "Sea Water X Velocity",
- "Sea Water Y Velocity",
"Surface Carbonate Ion",
"Surface Carbonate Ion Solubility for Aragonite",
"Surface Dissolved Inorganic Carbon Concentration",
@@ -58,7 +50,28 @@
"ice concentration"
],
"var_freqs": [
+ "daily",
+ "daily",
+ "daily",
+ "daily",
+ "daily",
+ "daily",
+ "daily",
+ "daily",
+ "daily",
+ "daily",
+ "monthly",
+ "monthly",
+ "monthly",
+ "monthly",
+ "monthly",
+ "monthly",
+ "monthly",
+ "monthly",
+ "monthly",
+ "monthly",
+ "monthly",
"monthly",
- "daily"
+ "monthly"
]
}
\ No newline at end of file
diff --git a/data_option_json/cefi_var_options.Projects.CEFI.regional_mom6.cefi_portal.northwest_atlantic.full_domain.seasonal_reforecast.json b/data_option_json/cefi_var_options.Projects.CEFI.regional_mom6.cefi_portal.northwest_atlantic.full_domain.seasonal_reforecast.json
index 01f33be..9b9ad84 100644
--- a/data_option_json/cefi_var_options.Projects.CEFI.regional_mom6.cefi_portal.northwest_atlantic.full_domain.seasonal_reforecast.json
+++ b/data_option_json/cefi_var_options.Projects.CEFI.regional_mom6.cefi_portal.northwest_atlantic.full_domain.seasonal_reforecast.json
@@ -1,13 +1,14 @@
{
"var_values": [
- "tob",
- "tos"
+ "tos",
+ "tob"
],
"var_options": [
"Sea Surface Temperature",
"Sea Water Potential Temperature at Sea Floor"
],
"var_freqs": [
+ "monthly",
"monthly"
]
}
\ No newline at end of file
diff --git a/forecast.html b/forecast.html
index b45f8af..2e388bb 100644
--- a/forecast.html
+++ b/forecast.html
@@ -1,7 +1,7 @@
-
Regional MOM6 COBALT - Forecast/Reforecast
+Regional MOM6 - Reforecast (physics only)
diff --git a/index.html b/index.html
index 7f935ff..2e56ce5 100644
--- a/index.html
+++ b/index.html
@@ -38,7 +38,7 @@
Climate Ecosystems and Fisheries Initiative Portal
@@ -161,9 +161,9 @@ Thank you for providing feedbac
-
+
diff --git a/python/cefi_data_var_option.py b/python/cefi_data_var_option.py
index 9f8e261..215b9f4 100644
--- a/python/cefi_data_var_option.py
+++ b/python/cefi_data_var_option.py
@@ -78,17 +78,36 @@ def get_variable_options(dict_cefi_available:dict)->dict:
dictionary include the available unique variable options
"""
# initialize the dict with empty set as value to deal with duplication when add
- dictset_var_options = defaultdict(set)
+ dict_var_options = defaultdict(list)
for _,dict_file_infos in dict_cefi_available.items():
for _,dict_file_info in dict_file_infos.items():
variable_name = dict_file_info['cefi_variable']
variable_long_name = dict_file_info['cefi_long_name']
variable_freqs = dict_file_info['cefi_output_frequency']
- dictset_var_options['var_values'].add(variable_name)
- dictset_var_options['var_options'].add(variable_long_name)
- dictset_var_options['var_freqs'].add(variable_freqs)
+ dict_var_options['var_values'].append(variable_name)
+ dict_var_options['var_options'].append(variable_long_name)
+ dict_var_options['var_freqs'].append(variable_freqs)
- dict_var = {key: list(options) for key, options in dictset_var_options.items()}
+ # Step 1: Find unique elements in list1
+ unique_options = list(dict.fromkeys(dict_var_options['var_options'])) # Removing duplicates while preserving order
+
+ # Step 2: Create a new list2 that only contains elements corresponding to unique values in list1
+ unique_names = []
+ freq = []
+ ori_unique_options = unique_options.copy()
+
+ for i in range(len(dict_var_options['var_options'])):
+ if dict_var_options['var_options'][i] in unique_options:
+ unique_names.append(dict_var_options['var_values'][i])
+ freq.append(dict_var_options['var_freqs'][i])
+
+ # Remove the element after using it
+ unique_options.remove(dict_var_options['var_options'][i])
+
+ dict_var = {}
+ dict_var['var_values'] = unique_names
+ dict_var['var_options'] = ori_unique_options
+ dict_var['var_freqs'] = freq
# sorting based on the long name
# zip the lists that need to sorted together
@@ -124,12 +143,18 @@ def get_variable_options(dict_cefi_available:dict)->dict:
)
# get all dirpath that has files
+ dict_structure_cut = {}
+ structure_cut_subdirs = []
for dirpath, dict_files in dict_cefi_all.items():
# creata like-cefi-filename structure to name the option json file
cefi_filename_list = dirpath.strip("/").split('/')
file_name_info = ".".join(cefi_filename_list)
+ # for structure cut option json file
+ structure_cut_subdirs.append(cefi_filename_list[-1])
+ file_name_structure_cut = ".".join(cefi_filename_list[:-1])
+
# get available data under each dirpath
dict_cefi_exp = find_ncfiles_info(
base_dir=dirpath,
@@ -174,16 +199,14 @@ def get_variable_options(dict_cefi_available:dict)->dict:
) as json_file:
json_file.write(json_var_options)
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+ dict_structure_cut[structure_cut_name] = structure_cut_subdirs
+ json_structure_cut_options =json.dumps(dict_structure_cut, indent=4)
+
+ # output json format to browser
+ with open(
+ f'{webserver_dir}data_option_json/cefi_{structure_cut_name}_options.{file_name_structure_cut}.json',
+ "w",
+ encoding='UTF-8'
+ ) as json_file:
+ json_file.write(json_structure_cut_options)