- Changed "Delete Bundle" to "Delete Display"
- Changed "Alter Bundle on Loading" to "Alter Procedure Item on Loading"
- Changed History List dialog from "Alter Bundle" to "Alter Procedure Item" (not sure if this one is actually used in CAVE currently)
- Changed "Enter Bundle Name" to "Enter Procedure Item Name"
WWAResourceData
- Simplified the constructResource to always create and return a WarningsResource
- the actual implementation of the constructResource method doesn't quite align with how it originally seemed to be designed. None of the data is actually in the PluginDataObject at this point, all the data is in the LoadProperties. Because of that, differentiating between WatchResources and WarningResources doesn't work the way you would think it does. You end up going through this method once, for the entire load of the WWAs. Also, for some reason the way the WatchResource populated and eventually passed on its records for drawing, actually eliminated the watches. So, by using the WarningsResource class all the time, all the watches, warnings, and advisories are persisted.
WarningsResource
- the proper convention is for watches to show up as a shaded (thatched) area, and the warnings and advisories to show up with an outline
- in the initShape method, look to see what the significance of the record is, and if it's a watch, then create and set the shadedShape (logic taken from the WatchesResource), otherwise create and set the wireframeShape
- added a prereqs section for the elearning course
- added a few screenshots and additional details for the "design" section
- converted the google form link to html (instead of markdown) to allow the functionality for opening in a separate tab, instead of in the same window
- slight modification to the mkdocs.yml to have a new toc entry for Educational Resources
- new markdown file for the Educational Resources page
- this is not done yet, but want to commit it to my local fork so it can be viewed by Tiffany and Nicole
- added links to subsections from the OS versions section
- swapped out links from robin to new nexus server (downloads.unidata.ucar.edu) for:
- linux: awips_install.sh
- windows: awips-cave.msi
- mac: awips-python.pkg, awips-cave.dmg
**Note:** Still need to swap out link for windows zip installer, and jdk download when those have been moved to nexus
- modified the build.properties files for the common.aviation and common.dataplugin.satellite jars
Changes to re-enable the proper decoding of modelsounding data
- Two changes were made wrt this:
- Rolled back changes from our big merge from MJ's computer, which included some raytheon commits in 2018 to both the ModelSoundingDataAdapter.java and SoundingStations.java classes
- Then added two small new changes to the ModelSoundingDataAdapter to support the changes to GFS Bufr files earlier this year
-added more images
-removed the sample attribute since that is no longer a menu option
-commented out the display customization since this is pretty generic to all map products
The previous check-in of this file, the units were updated to 1/s which was causing issues in CAVE displaying. For the native pressure heights (000, 850, 700, 500, 250 mb) the units were wrong and it wasn't displaying any data, but the interpolated heights were showing up correct. I also noticed this when running python-awips and getting the "unit" of AV as "count" instead of /s.
On systems where this is already installed, I had to manually update the parameter database table:
update parameter set unit = '/s' where abbreviation like 'AV';