Skip to content

Commit d7ca62a

Browse files
committed
update to allow for obstype names
1 parent 8ab7765 commit d7ca62a

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

deps/ops/stubs/Ops_Constants/OpsMod_ObsTypes.f90

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -290,6 +290,10 @@ MODULE OpsMod_ObsTypes
290290

291291
INTEGER, PARAMETER :: ObsTypeGIIRS = 29400 ! => GIIRS
292292

293+
INTEGER, PARAMETER :: ObsTypeAWS = 29600 ! => Arctic weather satellite radiances
294+
295+
INTEGER, PARAMETER :: ObsTypeMWSSG = 29700 ! => EPSSG MWS radiances
296+
293297
! Aircraft data
294298
INTEGER, PARAMETER :: ObsTypeAmdar = 30100 ! => Amdar
295299
INTEGER, PARAMETER :: ObsTypeAirep = 30200 ! => airep

deps/ops/stubs/Ops_Constants/Ops_SubTypeNameToNum.inc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,8 @@ SELECT CASE (name)
6666
num = ObsTypeATOVS_G
6767
CASE ("ATOVSL")
6868
num = ObsTypeATOVS_L
69+
CASE ("AWS")
70+
num = ObsTypeAWS
6971
CASE ("TOVSG")
7072
num = ObsTypeTOVS_G
7173
CASE ("TOVSL")
@@ -202,6 +204,8 @@ SELECT CASE (name)
202204
num = ObsTypeMWRI
203205
CASE ("MWTS")
204206
num = ObsTypeMWSFY3
207+
CASE ("MWSSG")
208+
num = ObsTypeMWSSG
205209
CASE ("OCEANCOL")
206210
num = ObsTypeOceanColour
207211
CASE ("OCEANFB")

deps/ops/stubs/Ops_Constants/Ops_SubTypeNumToName.inc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,8 @@ SELECT CASE (num)
6767
name = "ATOVSG"
6868
CASE (ObsTypeATOVS_L)
6969
name = "ATOVSL"
70+
CASE (ObsTypeAWS)
71+
name = "AWS"
7072
CASE (ObsTypeTOVS_G)
7173
name = "TOVSG"
7274
CASE (ObsTypeTOVS_L)
@@ -203,6 +205,8 @@ SELECT CASE (num)
203205
name = "MWHS"
204206
CASE (ObsTypeMWRI)
205207
name = "MWRI"
208+
CASE (ObsTypeMWSSG)
209+
name = "MWSSG"
206210
CASE (ObsTypeOceanColour)
207211
name = "OCEANCOL"
208212
CASE (ObsTypeOceanFB)

0 commit comments

Comments
 (0)