Skip to content

MNT: Add some of the missing platform variables. #1746

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
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
30 changes: 30 additions & 0 deletions pyart/default_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -497,6 +497,36 @@
"long_name": "Geoferences have been applied to ray",
"comment": "1 if georefs have been applied, 0 otherwise",
},
"eastward_velocity": {
"units": "meters_per_second",
"long_name": "platform_eastward_velocity",
"comment": "EW velocity of the platform. Positive is eastwards.",
},
"northward_velocity": {
"units": "meters_per_second",
"long_name": "platform_northward_velocity",
"comment": "NS velocity of the platform. Positive is northwards.",
},
"vertical_velocity": {
"units": "meters_per_second",
"long_name": "platform_vertical_velocity",
"comment": "Vertical velocity of the platform. Positive is up.",
},
"eastward_wind": {
"units": "meters_per_second",
"long_name": "platform_eastward_wind",
"comment": "EW wind at the platform location. Positive is eastwards.",
},
"northward_wind": {
"units": "meters_per_second",
"long_name": "platform_northward_wind",
"comment": "NS wind at the platform location. Positive is northwards.",
},
"vertical_wind": {
"units": "meters_per_second",
"standard_name": "platform_vertical_wind",
"comment": "Vertical wind at the platform location. Positive is up.",
},
# Reflectivity fields
reflectivity: {
"units": "dBZ",
Expand Down
Loading