Skip to content

Commit

Permalink
Fix #8 - Add NOAA-NCEI to institution; Correct RSS zip code
Browse files Browse the repository at this point in the history
  • Loading branch information
durack1 committed Sep 28, 2016
1 parent 5e85604 commit 10630b0
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
3 changes: 2 additions & 1 deletion obs4MIPs_institution_id.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"institution_id":{
"JPL":"Jet Propulsion Laboratory, Pasadena, CA 91109, USA",
"NOAA-NCEI":"NOAA's National Centers for Environmental Information, Asheville, NC 28801, USA",
"PCMDI":"Program for Climate Model Diagnosis and Intercomparison, Lawrence Livermore National Laboratory, Livermore, CA 94550, USA",
"RSS":"Remote Sensing Systems, Santa Rosa, CA 91109, USA"
"RSS":"Remote Sensing Systems, Santa Rosa, CA 95401, USA"
}
}
6 changes: 5 additions & 1 deletion src/writeJson.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@
PJD 27 Sep 2016 - Updated to deal with new upstream data formats
PJD 27 Sep 2016 - Updated tables to "01.beta.30" -> "01.beta.32"
PJD 27 Sep 2016 - Update jsons to include 'identifier' dictionary name (following CMIP6_CVs)
PJD 27 Sep 2016 - Add NOAA-NCEI to institution_id https://github.com/PCMDI/obs4MIPs-cmor-tables/issues/8
PJD 27 Sep 2016 - Correct RSS zip
- TODO:
@author: durack1
Expand Down Expand Up @@ -140,7 +142,9 @@
tmp = [['institution_id','https://raw.githubusercontent.com/PCMDI/obs4mips-cmor-tables/master/obs4MIPs_institution_id.json']
] ;
institution_id = readJsonCreateDict(tmp)
#institution_id = institution_id.get('institution_id')
institution_id = institution_id.get('institution_id')
institution_id['institution_id']['NOAA-NCEI'] = 'NOAA\'s National Centers for Environmental Information, Asheville, NC 28801, USA'
institution_id['institution_id']['RSS'] = 'Remote Sensing Systems, Santa Rosa, CA 95401, USA'

#%% Product
mip_era = ['CMIP6'] ;
Expand Down

0 comments on commit 10630b0

Please sign in to comment.