Skip to content

Commit

Permalink
rename top level coverage points
Browse files Browse the repository at this point in the history
  • Loading branch information
bbalser committed Jul 8, 2024
1 parent c2541ce commit 8924be9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/service/poc_mobile.proto
Original file line number Diff line number Diff line change
Expand Up @@ -456,8 +456,10 @@ message radio_reward_v2 {
message covered_hex {
uint64 location = 1;
// modeled coverage points * rank_multiplier * assignment_multiplier
// value is 3 decimal places of precision multiplied by 1000
uint64 base_coverage_points = 2;
// base_coverage_points * (boosted_multiplier - 1)
// value is 3 decimal places of precision multiplied by 1000
uint64 boosted_coverage_points = 3;

oracle_boosting_assignment urbanized = 4;
Expand All @@ -481,9 +483,9 @@ message radio_reward_v2 {
string cbsd_id = 2;

// sum of base_coverage_points for all covered_hexes
uint64 base_coverage_points = 3;
uint64 base_coverage_points_sum = 3;
// sum of boosted_coverage_points for all covered hexes
uint64 boosted_coverage_points = 4;
uint64 boosted_coverage_points_sum = 4;

// base_coverage_points * location_trust_score_multiplier *
// speedtest_multiplier
Expand Down

0 comments on commit 8924be9

Please sign in to comment.