-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add ctest for ground-based gnss ipw product #1539
Changes from 8 commits
4b92879
9fd11d5
d8c2328
a4e9979
0a7af81
9eb93b7
5255f24
03d305d
dccab35
8b2c2b0
8adce11
08f5cad
0604f90
a43c374
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
# (C) Copyright 2022 NOAA/NWS/NCEP/EMC | ||
# | ||
# This software is licensed under the terms of the Apache Licence Version 2.0 | ||
# which can be obtained at http://www.apache.org/licenses/LICENSE-2.0. | ||
|
||
observations: | ||
- obs space: | ||
name: bufr | ||
obsdatain: "./testinput/obs.20240806T00Z.ipw_gnssgb.ncep.bufr" | ||
|
||
exports: | ||
variables: | ||
# MetaData | ||
timestamp: | ||
datetime: | ||
year: "*/YEAR" | ||
month: "*/MNTH" | ||
day: "*/DAYS" | ||
hour: "*/HOUR" | ||
minute: "*/MINU" | ||
|
||
latitude: | ||
query: "*/CLATH" | ||
|
||
longitude: | ||
query: "*/CLONH" | ||
|
||
stationName: | ||
query: "*/STSN" | ||
|
||
heightOfStation: | ||
query: "*/SELV" | ||
|
||
# ObsValue | ||
precipitableWater: | ||
query: "*/TPWT" | ||
BenjaminRuston marked this conversation as resolved.
Show resolved
Hide resolved
|
||
type: float | ||
|
||
ioda: | ||
backend: netcdf | ||
obsdataout: "./testrun/20240805T00Z_PT1M_ipw_gnssgb_ncep.nc" | ||
|
||
globals: | ||
- name: "platformCommonName" | ||
type: string | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @mrixlam ,,, hearing from @gthompsnJCSDA that adding a line like the but There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hi @BenjaminRuston we previously tried "type: float" for the variables section but it didnt work. But you are right. When I removed "type: float" from the variables section to the exports section, it works. The converted file now have float values for precipitableWater. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'm confused @mrixlam I just tried this with and w/o the when I added it, I got floats it worked correctly: when removed it output the integer values: so going to add it in... please confirm |
||
value: "GPSIPW" | ||
|
||
- name: "platformLongDescription" | ||
type: string | ||
value: "M TYPE 012-003 GPS - Integrated Precipitable Water" | ||
|
||
variables: | ||
# MetaData | ||
- name: "MetaData/dateTime" | ||
source: variables/timestamp | ||
longName: "Datetime" | ||
units: "seconds since 1970-01-01T00:00:00Z" | ||
|
||
- name: "MetaData/latitude" | ||
source: variables/latitude | ||
longName: "Latitude" | ||
units: "degree_north" | ||
range: [-90, 90] | ||
|
||
- name: "MetaData/longitude" | ||
source: variables/longitude | ||
longName: "Longitude" | ||
units: "degree_east" | ||
|
||
- name: "MetaData/stationIdentification" | ||
source: variables/stationName | ||
longName: "Station Identification" | ||
|
||
- name: "MetaData/heightOfStation" | ||
source: variables/heightOfStation | ||
longName: "Height of Station" | ||
units: "m" | ||
|
||
# ObsValue | ||
- name: "ObsValue/precipitableWater" | ||
source: variables/precipitableWater | ||
longName: "GPS IPW" | ||
units: "kg m-2" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.