Skip to content
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 components for converting satwnd amv goes data from bufr dump to ioda. #13

Open
wants to merge 43 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 41 commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
d3478fd
Add mapping file, python scripts, and shell scripts for satwind goes
Nov 13, 2024
7277cc5
remove test
Nov 18, 2024
a4efbb2
Update components (mapping, Python script, configuration) for satwind
Nov 18, 2024
5689332
remove old yaml
Nov 19, 2024
16db06f
Add configuration files and test shell script
Nov 19, 2024
927bae2
rename configuration yaml
emilyhcliu Nov 19, 2024
9dfd16d
Add temporary testing script
emilyhcliu Nov 19, 2024
54305c9
Add README file
emilyhcliu Nov 19, 2024
89f429a
rename README to README.md
emilyhcliu Nov 19, 2024
b115130
Update README.md
emilyhcliu Nov 19, 2024
f0ba20f
Update readme file
emilyhcliu Nov 19, 2024
8d324d0
Update README.md
emilyhcliu Nov 19, 2024
d70867f
Update README
emilyhcliu Nov 19, 2024
e5a95e7
rename process_bufr2ioda to bufr2ioda.sh
emilyhcliu Nov 19, 2024
7dbc826
Update README.md
emilyhcliu Nov 19, 2024
6346844
Update README.md
emilyhcliu Nov 19, 2024
f91d1d1
Update README.md
emilyhcliu Nov 19, 2024
8ba4d7b
Update README.md
emilyhcliu Nov 19, 2024
87096eb
Update readme
emilyhcliu Nov 19, 2024
3e7789c
Add comments
emilyhcliu Nov 19, 2024
a645370
update comments
emilyhcliu Nov 19, 2024
c0fdb95
update bufr2ioda.sh
emilyhcliu Nov 19, 2024
c262e3d
update usage
emilyhcliu Nov 19, 2024
dde4d27
Add comments
emilyhcliu Nov 19, 2024
d080c23
add cycle in input path
emilyhcliu Nov 20, 2024
09d0061
Modify global attribute in the mapping file
emilyhcliu Nov 20, 2024
8f23b5b
Merge branch 'develop' into feature/dump_satwind_goes
emilyhcliu Nov 21, 2024
cd74eee
remove . before bufr2ioda.sh
emilyhcliu Nov 21, 2024
6351d34
Update README.md
emilyhcliu Nov 21, 2024
b2ea3ae
Update README.md
emilyhcliu Nov 22, 2024
d678190
Update README.md
emilyhcliu Nov 22, 2024
67311d6
remove wxflow from the test script
emilyhcliu Nov 22, 2024
428e600
remove wxflow from input
emilyhcliu Nov 22, 2024
6564a18
Update README.md
emilyhcliu Nov 22, 2024
f757393
Add comment block for logger
emilyhcliu Nov 24, 2024
77f2e92
add bufrtype (this is bufr dump list)
emilyhcliu Nov 24, 2024
00cd504
Update documentation
emilyhcliu Nov 24, 2024
9d9e821
Add bufrtype and update README
emilyhcliu Nov 24, 2024
e9b8833
Add split_by_category input
emilyhcliu Nov 25, 2024
aec8e56
Update README
emilyhcliu Nov 25, 2024
5679a32
Update README.md
emilyhcliu Nov 25, 2024
70f90d9
Rename bufr2ioda to encodeBufr and update readme
emilyhcliu Nov 25, 2024
1365772
Update README.md
emilyhcliu Nov 26, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
58 changes: 58 additions & 0 deletions dump/config/bufr2ioda_bufr_backend_satwnd_amv_goes.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
time window:
begin: "2018-04-14T21:00:00Z"
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

just noting that we will want to template these if they are not in a fixed 'test' directory

end: "2023-12-15T03:00:00Z"

observations:
- obs space:
name: "satwind_goes-16"
simulated variables: [windDirection, windSpeed]
obsdatain:
engine:
type: bufr
obsfile: "./testinput/2021080100/gdas.t00z.satwnd.tm00.bufr_d"
mapping file: "./bufr2ioda_satwnd_amv_goes_mapping.yaml"
category: ["goes-16"]
cache categories: # optional
- ["goes-16"]
- ["goes-17"]
- ["goes-18"]
obsdataout:
engine:
type: H5File
obsfile: "./testoutput/2021080100/bufr_backend/gdas.t00z.satwnd.abi_goes-16.tm00.nc"

- obs space:
name: "satwind_goes-17"
simulated variables: [windDirection, windSpeed]
obsdatain:
engine:
type: bufr
obsfile: "./testinput/2021080100/gdas.t00z.satwnd.tm00.bufr_d"
mapping file: "./bufr2ioda_satwnd_amv_goes_mapping.yaml"
category: ["goes-17"]
cache categories: # optional
- ["goes-16"]
- ["goes-17"]
- ["goes-18"]
obsdataout:
engine:
type: H5File
obsfile: "./testoutput/2021080100/bufr_backend/gdas.t00z.satwnd.abi_goes-17.tm00.nc"

- obs space:
name: "satwind_goes-18"
simulated variables: [windDirection, windSpeed]
obsdatain:
engine:
type: bufr
obsfile: "./testinput/2021080100/gdas.t00z.satwnd.tm00.bufr_d"
mapping file: "./bufr2ioda_satwnd_amv_goes_mapping.yaml"
category: ["goes-18"]
cache categories: # optional
- ["goes-16"]
- ["goes-17"]
- ["goes-18"]
obsdataout:
engine:
type: H5File
obsfile: "./testoutput/2021080100/bufr_backend/gdas.t00z.satwnd.abi_goes-18.tm00.nc"
58 changes: 58 additions & 0 deletions dump/config/bufr2ioda_script_backend_satwnd_amv_goes.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
time window:
begin: "2018-04-14T21:00:00Z"
end: "2023-12-15T03:00:00Z"

observations:
- obs space:
name: "satwind_goes-16"
observed variables: [windSpeed, windDirection]
derived variables: [windEastward, windNorthward]
simulated variables: [windEastward, windNorthward]
obsdatain:
engine:
type: script
script file: "bufr2ioda_satwnd_amv_goes.py"
args:
input_path: "./testinput/2021080100/gdas.t00z.satwnd.tm00.bufr_d"
mapping_path: "./bufr2ioda_satwnd_amv_goes_mapping.yaml"
category: "goes-16"
obsdataout:
engine:
type: H5File
obsfile: "./testoutput/2021080100/script_backend/gdas.t00z.satwnd.abi_goes-16.tm00.nc"

- obs space:
name: "satwind_goes-17"
observed variables: [windSpeed, windDirection]
derived variables: [windEastward, windNorthward]
simulated variables: [windEastward, windNorthward]
obsdatain:
engine:
type: script
script file: "bufr2ioda_satwnd_amv_goes.py"
args:
input_path: "./testinput/2021080100/gdas.t00z.satwnd.tm00.bufr_d"
mapping_path: "./bufr2ioda_satwnd_amv_goes_mapping.yaml"
category: "goes-17"
obsdataout:
engine:
type: H5File
obsfile: "./testoutput/2021080100/script_backend/gdas.t00z.satwnd.abi_goes-17.tm00.nc"

- obs space:
name: "satwind_goes-18"
observed variables: [windSpeed, windDirection]
derived variables: [windEastward, windNorthward]
simulated variables: [windEastward, windNorthward]
obsdatain:
engine:
type: script
script file: "bufr2ioda_satwnd_amv_goes.py"
args:
input_path: "./testinput/2021080100/gdas.t00z.satwnd.tm00.bufr_d"
mapping_path: "./bufr2ioda_satwnd_amv_goes_mapping.yaml"
category: "goes-18"
obsdataout:
engine:
type: H5File
obsfile: "./testoutput/2021080100/script_backend/gdas.t00z.satwnd.abi_goes-18.tm00.nc"
Loading