Issue #2719 Add NHA domain to serverConfig.py

Change-Id: Ia7c5026ab5b8ae4c9c00adaf90b01d9fa527a044

Former-commit-id: ce28c6c47f [formerly ce28c6c47f [formerly 2c8d067a3a4c4848bc2eb313c4e901507844074d]]
Former-commit-id: 0f6e082769
Former-commit-id: 5427d15150
This commit is contained in:
Ron Anderson 2014-01-29 13:55:54 -06:00
parent 1cdbdfceba
commit 280434a03f

View file

@ -628,12 +628,17 @@ NDFD_Oceanic_10K = ('NDFD_Oceanic_10km', MERCATOR,
(-230.094, -30.4192), (10.71, 80.01), (-230.094, -30.4192), (10.71, 80.01),
(0.0, 0.0), 0.0, 0.0, (1, 1), (2517, 1793), 0.0, -109.962, 0.0) (0.0, 0.0), 0.0, 0.0, (1, 1), (2517, 1793), 0.0, -109.962, 0.0)
# Add a new domain for NHC purposes
GridForNHA = ('GridForNHA', LAMBERT_CONFORMAL,
(-97.647915, 7.783091), (-38.900400, 52.092726),
(-95.0, 25.0), 25.0, 25.0, (1, 1), (894,1176), 0.0, 0.0, 0.0)
# list of all projections # list of all projections
allProjections = [Grid201, Grid202, Grid203, Grid204, Grid205, Grid206, allProjections = [Grid201, Grid202, Grid203, Grid204, Grid205, Grid206,
Grid207, Grid208, Grid209, Grid210, Grid211, Grid212, Grid213, Grid214, Grid207, Grid208, Grid209, Grid210, Grid211, Grid212, Grid213, Grid214,
Grid214AK, Grid215, Grid216, Grid217, Grid218, Grid219, Grid221, Grid222, Grid214AK, Grid215, Grid216, Grid217, Grid218, Grid219, Grid221, Grid222,
Grid225, Grid226, Grid227, Grid228, Grid229, Grid230, Grid231, Grid232, Grid225, Grid226, Grid227, Grid228, Grid229, Grid230, Grid231, Grid232,
Grid233, Grid234, Grid235, HRAP, NDFD_Oceanic_10K] Grid233, Grid234, Grid235, HRAP, NDFD_Oceanic_10K, GridForNHA]
#--------------------------------------------------------------------------- #---------------------------------------------------------------------------
# #
@ -838,6 +843,7 @@ SITES = {
#National Centers #National Centers
'HAK' : ( [825,553], ( 1.0, 1.0), (103.0, 69.0), 'EST5EDT', Grid214AK, "nc"), 'HAK' : ( [825,553], ( 1.0, 1.0), (103.0, 69.0), 'EST5EDT', Grid214AK, "nc"),
'HUS' : ([1073,689], (19.0, 8.0), ( 67.0, 43.0), 'EST5EDT', Grid211, "nc"), 'HUS' : ([1073,689], (19.0, 8.0), ( 67.0, 43.0), 'EST5EDT', Grid211, "nc"),
'NHA' : ([894,1176], (0.0,0.0), (894.0, 1176.0), 'EST5EDT', GridForNHA, "nc"),
} }
@ -1146,7 +1152,7 @@ elif SID in CONUS_EAST_SITES:
('HiResW-NMM-East', 'HIRESWnmm'), ('HiResW-NMM-East', 'HIRESWnmm'),
('SPCGuide', 'SPC'), ('SPCGuide', 'SPC'),
('ECMWF-HiRes','ECMWFHiRes'), ('ECMWF-HiRes','ECMWFHiRes'),
('ENPWAVE253', 'ENPwave'), ('ENPWAVE253', 'ENPwave'),
] ]
else: #######DCS3501 WEST_CONUS else: #######DCS3501 WEST_CONUS
@ -1197,7 +1203,7 @@ else: #######DCS3501 WEST_CONUS
('HiResW-NMM-West', 'HIRESWnmm'), ('HiResW-NMM-West', 'HIRESWnmm'),
('SPCGuide', 'SPC'), ('SPCGuide', 'SPC'),
('ECMWF-HiRes','ECMWFHiRes'), ('ECMWF-HiRes','ECMWFHiRes'),
('ENPWAVE253', 'ENPwave'), ('ENPWAVE253', 'ENPwave'),
] ]
if SID in GreatLake_SITES: if SID in GreatLake_SITES:
@ -1433,7 +1439,7 @@ else:
# "WCwave4" : ["WCwave4"], # "WCwave4" : ["WCwave4"],
# "WNAwave10" : ["WNAwave10"], # "WNAwave10" : ["WNAwave10"],
# "WNAwave4" : ["WNAwave4"], # "WNAwave4" : ["WNAwave4"],
# "ENPwave": ["ENPwave"], # "ENPwave": ["ENPwave"],
} }
#initialization skip certain model runs #initialization skip certain model runs
@ -1875,7 +1881,7 @@ DATABASES = [(Official, OFFICIALDBS + localParms),
(RTMA, RTMAPARMS + localRTMAParms), (RTMA, RTMAPARMS + localRTMAParms),
(NamDNG5, NamDNG5PARMS + localNamDNG5Parms), (NamDNG5, NamDNG5PARMS + localNamDNG5Parms),
(TPCProb, TPCProbPARMS + localTPCProbParms), (TPCProb, TPCProbPARMS + localTPCProbParms),
(ENPwave, ENPwave_parms + localENPwaveParms), (ENPwave, ENPwave_parms + localENPwaveParms),
(Test, OFFICIALDBS + localParms)] + localDBs (Test, OFFICIALDBS + localParms)] + localDBs
# Intersite coordination database parameter groupings, based on # Intersite coordination database parameter groupings, based on
@ -1984,4 +1990,4 @@ def doIt():
IFPConfigServer.requestedISCparms = requestedISCparms IFPConfigServer.requestedISCparms = requestedISCparms
IFPConfigServer.transmitScript = transmitScript IFPConfigServer.transmitScript = transmitScript
doIt() doIt()