-
Notifications
You must be signed in to change notification settings - Fork 12
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
Extend mon_data_space.py to handle legacy DA monitor conventional data #167
Comments
Naturally the conventional binary data time/vert files are a bit different from all the other legacy data. They have 4 dimensions: data type, region, level, and time. A given file has data for all available data types in that category -- (e.g. ges_q_stas.[yyyymmddhh] has all the q data (q120_0, q130_0, etc). That's the DataType dimension and I need to support data selection by DataType so a batch plot can step through data types in the same manner as channels. I'm not quite there yet but I do have selection by data type working in single (non-batch) plots. Below is the time series plot for q120_0, region 1 (global), level all (0-2000mb). This matches the legacy plot, but I think maybe making the y axis a log scale would make sense given the wide spread. |
I've hit something of a snag. I'm trying to convert this plot into a batch plot, selecting data by data type (q120_0, q130_0, etc) in the same manner as channels or levels are selected during batch plotting. But I'm running into problems mapping the datatype string values to DataType number ('q120_0' to 1, 'q130_0' to 2, etc). I've got to dig back into channel and re-learn how non-continuous channels work. I'm beginning to think I messed up the dataset design here. Update -- yup, that's the problem. |
Add support for batch processing on DataType/dtype.
Change use of 'dtype' to 'datatype' to differentiate from np.dtype.
Change use of 'dtype' to 'datatype' to differentiate from np.dtype.
Add support for batch processing on DataType/dtype.
Fix datatype use with station data.
Merge branch 'develop' into feature/con-167
Question for @kevindougherty-noaa . I'm working on the ConMon vertical plots, example from |
Add update for conmon vert plots.
Fix typo.
Closed via PR #169 |
Description
Extend
mon_data_space.py
to load legacy DA monitor conventional data. The conventional data is (of course) slightly different from all others. It has 4 dimensions: data type (i.e. q120, 130, etc), region, vertical level, and time. The use of data type is unique among the DA monitor legacy data sources so support for that is needed.Requirements/Acceptance Criteria:
Load legacy conventional DA monitor data and output time series plots.
Dependencies
None
The text was updated successfully, but these errors were encountered: