Challenge difficulty

From Project-GC
Jump to navigation Jump to search

What is it?

For most Challenge checkers in the system there is a Challenge difficulty calculated. The difficulty is based on on how many Geocachers fulfill the challenge or not. Project-GC is running Challenge checkers in the background for tens of thousands of Geocachers, this process is a part of the Auto-Challenge-Checker System. The result of these runs is used to calculate the Challenge difficulty.

How is it calculated?

Basically the Challenge difficulty tells us what proportion of Geocachers fulfill a Challenge or not. The rating is an integer between 0 and 100, where higher means harder, but should not be confused with percent.

First off it's important to understand that the automatic Challenge checker runs aren't automatically executed on the average Geocacher, but more likely on the more hardcore Geocachers. It's primarily executed on Geocachers with more finds, regular users of Project-GC and also paid members of the site. With this in mind we know that the result isn't representing the average geocacher, on the other hand, challenges generally aren't targeting the average geocacher either.

For each Challenge we look at the Challenge checker runs across three nested groups of Geocachers, based on where Project-GC believes each Geocacher lives (typically inferred from their finds - we don't actually know):

  • Region - Geocachers determined to live in the same region as the Challenge.
  • Country - Geocachers determined to live in the same country as the Challenge (this also includes those counted under Region).
  • World - all Geocachers (this also includes those counted under Country and Region).

For each group we calculate the fail rate - the share of runs that did not fulfill the Challenge. A high regional fail rate means the Challenge is hard for locals.

A fourth factor folds in how rarely the Challenge is actually found, expressed as '(1 - $numFinds / $daysOld) * 100'. It is 0 when the Challenge is found daily and approaches 100 when it is rarely found.

The four components are combined with weights - more local counts more:

 $difficulty = (3*$worldFailPercent + 5*$countryFailPercent + 10*$regionFailPercent + $findsPerDayFactor) / (3+5+10+1)

The result is rounded down to the closest integer.

Example

A Challenge in Texas, United States, was published 365 days ago and has had 10 finds since. The checker results show:

  • 20% of Geocachers in Texas fulfill it - regional fail rate 80%.
  • 60% of Geocachers in the United States fulfill it (Texas geocachers included) - country fail rate 40%.
  • 70% of all Geocachers with checker runs fulfill it (US geocachers included) - world fail rate 30%.

Plugged in:

  • finds-per-day factor = (1 - 10/365) * 100 = 97.260
  • difficulty = (3*30 + 5*40 + 10*80 + 97.260) / 19 = 1187.260 / 19 = 62.487
  • Rounded down: 62.

Related statistics

Challenge difficulty per rating interval shows the correlation between the difficulty rating of the geocache and the challenge difficulty.

The challenge tab in the profile stats has a module for challenge difficulties.