-
Notifications
You must be signed in to change notification settings - Fork 24
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
Feature #2279 point_weight_flag #2993
Commits on Aug 28, 2024
-
Per #2887, update NumArray::vals() to return a reference to the vecto…
…r rather a pointer to doubles.
Configuration menu - View commit details
-
Copy full SHA for 09f802e - Browse repository at this point
Copy the full SHA 09f802eView commit details -
Per #2887, switch over the whole ContingencyTable class heirarchy fro…
…m storing integer counts to storing double-precision weights.
Configuration menu - View commit details
-
Copy full SHA for 38a5d4e - Browse repository at this point
Copy the full SHA 38a5d4eView commit details -
Add ContingencyTable::is_integer() member function to check whether t…
…he table contains all integers
Configuration menu - View commit details
-
Copy full SHA for 5e1d81d - Browse repository at this point
Copy the full SHA 5e1d81dView commit details -
Per #2887, update parse_stat_line.cc to get it to compile after chang…
…ing PCT to store thresholds in a std::vector.
Configuration menu - View commit details
-
Copy full SHA for 32f3601 - Browse repository at this point
Copy the full SHA 32f3601View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5834afd - Browse repository at this point
Copy the full SHA 5834afdView commit details
Commits on Sep 3, 2024
-
Configuration menu - View commit details
-
Copy full SHA for f2a1fd0 - Browse repository at this point
Copy the full SHA f2a1fd0View commit details -
Per #2887, update ctc_by_row() logic to create reproducible results w…
…ith the develop branch.
Configuration menu - View commit details
-
Copy full SHA for 8c629e6 - Browse repository at this point
Copy the full SHA 8c629e6View commit details -
Per #2887, update logic of define_prob_bins() to add a final >=1.0 th…
…reshold if needed. While ==0.1 works fine, I found that ==0.05 did not because the last >=1.0 threshold was missing likely do to floating point precision issues. This change should fix that problem.
Configuration menu - View commit details
-
Copy full SHA for b98276a - Browse repository at this point
Copy the full SHA b98276aView commit details -
Configuration menu - View commit details
-
Copy full SHA for dacd1d2 - Browse repository at this point
Copy the full SHA dacd1d2View commit details -
Configuration menu - View commit details
-
Copy full SHA for a5403e2 - Browse repository at this point
Copy the full SHA a5403e2View commit details
Commits on Sep 4, 2024
-
Per #2887, replaced all ==0 integer equality checks with calls to is_…
…eq() instead and fix a couple of equations to snuff out diffs in some CTS statistics.
Configuration menu - View commit details
-
Copy full SHA for 2a68914 - Browse repository at this point
Copy the full SHA 2a68914View commit details
Commits on Sep 6, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 1b8cd06 - Browse repository at this point
Copy the full SHA 1b8cd06View commit details
Commits on Sep 9, 2024
-
Per #2887, address some of the 34 SonarQube code smells flagged for t…
…his PR. Note that the compute_ci.h/.cc changes are necessary and good since we should be computing CI's using doubles instead of integer counts.
Configuration menu - View commit details
-
Copy full SHA for 7bce8b8 - Browse repository at this point
Copy the full SHA 7bce8b8View commit details -
Per #2887, update run_sonarqube.sh to specify the target CXX standard…
… as 11. The hope is that that will limit the findings to only those features available in the C++11 standard.
Configuration menu - View commit details
-
Copy full SHA for f0395b0 - Browse repository at this point
Copy the full SHA f0395b0View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8e1ecef - Browse repository at this point
Copy the full SHA 8e1ecefView commit details -
Per #2887, updating build_met_sonarqube.sh to specify --std=c++11 sin…
…ce c++17 is used by default
Configuration menu - View commit details
-
Copy full SHA for 1144765 - Browse repository at this point
Copy the full SHA 1144765View commit details
Commits on Sep 10, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 29673cf - Browse repository at this point
Copy the full SHA 29673cfView commit details -
Per #2887, swap in a much simpler implementation of the ORSS statisti…
…c to match the equation listed in the MET User's Guide.
Configuration menu - View commit details
-
Copy full SHA for 1548c75 - Browse repository at this point
Copy the full SHA 1548c75View commit details
Commits on Oct 3, 2024
-
Configuration menu - View commit details
-
Copy full SHA for ec99867 - Browse repository at this point
Copy the full SHA ec99867View commit details -
Configuration menu - View commit details
-
Copy full SHA for 210eab2 - Browse repository at this point
Copy the full SHA 210eab2View commit details -
Per #2887, update grid_stat and library code to actually apply the gr…
…id_weight_flag settings to the computation of contingency table counts and statistics.
Configuration menu - View commit details
-
Copy full SHA for 33ddd51 - Browse repository at this point
Copy the full SHA 33ddd51View commit details
Commits on Oct 4, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 97cfbfa - Browse repository at this point
Copy the full SHA 97cfbfaView commit details -
Per #2887, add Npairs member to the ContingencyTable class, eliminate…
… the n() accessor function, and carefully replace references to n() with n_pairs() for the integer number of matched pairs or total() with the double-precision sum of the weights.
Configuration menu - View commit details
-
Copy full SHA for 17dc1b7 - Browse repository at this point
Copy the full SHA 17dc1b7View commit details
Commits on Oct 7, 2024
-
Configuration menu - View commit details
-
Copy full SHA for ace7c1b - Browse repository at this point
Copy the full SHA ace7c1bView commit details -
Per #2883, need to call set_n_pairs() in a few spots to set ECLV TOTA…
…L column correctly ci-run-unit
Configuration menu - View commit details
-
Copy full SHA for 55dbd06 - Browse repository at this point
Copy the full SHA 55dbd06View commit details -
Per #2887, call set_n_pairs() when aggregating PCT data in Series-Ana…
…lysis ci-run-unit
Configuration menu - View commit details
-
Copy full SHA for e44a100 - Browse repository at this point
Copy the full SHA e44a100View commit details -
Per #2887, update stat_analysis to parse the TOTAL column for the PCT…
… and MCTC line types.
Configuration menu - View commit details
-
Copy full SHA for 8e3e6c7 - Browse repository at this point
Copy the full SHA 8e3e6c7View commit details -
Configuration menu - View commit details
-
Copy full SHA for d1772df - Browse repository at this point
Copy the full SHA d1772dfView commit details
Commits on Oct 8, 2024
-
Per #2887, reconfigure existing Ensemble-Stat unit test to request pr…
…obabilistic output to see that it's impacted by the grid_weight_flag setting.
Configuration menu - View commit details
-
Copy full SHA for 1bd61df - Browse repository at this point
Copy the full SHA 1bd61dfView commit details -
Configuration menu - View commit details
-
Copy full SHA for 88a8c22 - Browse repository at this point
Copy the full SHA 88a8c22View commit details -
Per #2887, add grid_weight_flag to the list of config options for Gri…
…d-Stat and Ensemble-Stat.
Configuration menu - View commit details
-
Copy full SHA for 7b9ab8c - Browse repository at this point
Copy the full SHA 7b9ab8cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 2ec2e22 - Browse repository at this point
Copy the full SHA 2ec2e22View commit details -
Per #2887, revise the existing unit_grid_weight.xml unit tests for Gr…
…id-Stat to write CTC/CTS/MCTC/MCTS output and for the DESC column to be populated to indicate the type of grid weighting that was applied.
Configuration menu - View commit details
-
Copy full SHA for 940c9e2 - Browse repository at this point
Copy the full SHA 940c9e2View commit details
Commits on Oct 9, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 9e4f00f - Browse repository at this point
Copy the full SHA 9e4f00fView commit details -
Per #2279, add the MaskSID struct to store information about station …
…id names and corresponding weights.
Configuration menu - View commit details
-
Copy full SHA for 4bbe2ae - Browse repository at this point
Copy the full SHA 4bbe2aeView commit details -
Configuration menu - View commit details
-
Copy full SHA for d3069d0 - Browse repository at this point
Copy the full SHA d3069d0View commit details
Commits on Oct 10, 2024
-
Per #2279, adding point_weight_flag option to all Point-Stat and Ense…
…mble-Stat config file and tweaking whitespace.
Configuration menu - View commit details
-
Copy full SHA for f5f4d99 - Browse repository at this point
Copy the full SHA f5f4d99View commit details -
Per #2279, add point_weight_flag to the Point-Stat and Ensemble-Stat …
…config class. Also remove sue unneeded wgt_dp argument for the add_point_obs() functions. Plan to add logic to set the point weights only AFTER all the observations have been collected for each verification task.
Configuration menu - View commit details
-
Copy full SHA for d520fef - Browse repository at this point
Copy the full SHA d520fefView commit details -
Configuration menu - View commit details
-
Copy full SHA for b2ed2a6 - Browse repository at this point
Copy the full SHA b2ed2a6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0edcd65 - Browse repository at this point
Copy the full SHA 0edcd65View commit details -
Per #2279, fix PairBase to actually set point weight values parsed fr…
…om station id masks.
Configuration menu - View commit details
-
Copy full SHA for d5a26b5 - Browse repository at this point
Copy the full SHA d5a26b5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9806e0a - Browse repository at this point
Copy the full SHA 9806e0aView commit details
Commits on Oct 11, 2024
-
Per #2279, fix a couple bugs parsing the SID weights and add a new un…
…it_point_weight.xml unit test to run Point-Stat on scalar and probability inputs weighting the stations by their elevation. Still need to add Ensemble-Stat calls.
Configuration menu - View commit details
-
Copy full SHA for eabaaaf - Browse repository at this point
Copy the full SHA eabaaafView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5723b18 - Browse repository at this point
Copy the full SHA 5723b18View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3beab1f - Browse repository at this point
Copy the full SHA 3beab1fView commit details -
Merge remote-tracking branch 'origin/develop' into feature_2279_point…
…_weight_flag ci-run-unit
Configuration menu - View commit details
-
Copy full SHA for 764164b - Browse repository at this point
Copy the full SHA 764164bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 25ca869 - Browse repository at this point
Copy the full SHA 25ca869View commit details -
Configuration menu - View commit details
-
Copy full SHA for a0c1dc4 - Browse repository at this point
Copy the full SHA a0c1dc4View commit details -
Configuration menu - View commit details
-
Copy full SHA for b086ae0 - Browse repository at this point
Copy the full SHA b086ae0View commit details
Commits on Oct 14, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 458c6df - Browse repository at this point
Copy the full SHA 458c6dfView commit details -
Configuration menu - View commit details
-
Copy full SHA for 13fe94a - Browse repository at this point
Copy the full SHA 13fe94aView commit details -
Per #2279, switch MaskSID::sid_list from a vector of pairs to a simpl…
…er map named sid_map.
Configuration menu - View commit details
-
Copy full SHA for 02302be - Browse repository at this point
Copy the full SHA 02302beView commit details -
Configuration menu - View commit details
-
Copy full SHA for 40e805b - Browse repository at this point
Copy the full SHA 40e805bView commit details
Commits on Oct 15, 2024
-
Per #2279, move MaskSID from vx_config over into dedicated vx_util/ma…
…sk_sid.h and .cc to be consistent with mask_poly.h. I note that the members of the MaskSID struct were not being initialized properly. So making it a complete class was the right solution.
Configuration menu - View commit details
-
Copy full SHA for 39b60f3 - Browse repository at this point
Copy the full SHA 39b60f3View commit details -
Configuration menu - View commit details
-
Copy full SHA for cf13262 - Browse repository at this point
Copy the full SHA cf13262View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9ecea77 - Browse repository at this point
Copy the full SHA 9ecea77View commit details