@@ -53,7 +53,9 @@ export const AGGREGATES: Record<string, AggregateFn> = {
53
53
compute : ( service , empire ) => service . aggregateEconomy ( empire ) ,
54
54
} ,
55
55
'empire.compare.economy' : {
56
- description : 'Calculates the economy level of the empire compared to another empire as a logarithmic difference' ,
56
+ description : 'Calculates the economy level of the empire compared to another empire as a logarithmic difference.\n' +
57
+ 'Precisely, the formula is `log2(compareResult / myResult)`.\n' +
58
+ 'So a result of 1 means the other empire has twice the economy score, 2 means four times, etc., -1 means half, -2 means a quarter, etc.' ,
57
59
params : {
58
60
compare : 'The ID of the empire to compare to' ,
59
61
} ,
@@ -64,7 +66,8 @@ export const AGGREGATES: Record<string, AggregateFn> = {
64
66
compute : ( service , empire ) => service . aggregateMilitary ( empire ) ,
65
67
} ,
66
68
'empire.compare.military' : {
67
- description : 'Calculates the military level of the empire compared to another empire as a logarithmic difference' ,
69
+ description : 'Calculates the military level of the empire compared to another empire as a logarithmic difference. ' +
70
+ 'See `empire.compare.economy` for details on the formula.' ,
68
71
params : {
69
72
compare : 'The ID of the empire to compare to' ,
70
73
} ,
@@ -75,7 +78,8 @@ export const AGGREGATES: Record<string, AggregateFn> = {
75
78
compute : ( service , empire ) => service . aggregateTechnology ( empire ) ,
76
79
} ,
77
80
'empire.compare.technology' : {
78
- description : 'Calculates the technology level of the empire compared to another empire as a logarithmic difference' ,
81
+ description : 'Calculates the technology level of the empire compared to another empire as a logarithmic difference. ' +
82
+ 'See `empire.compare.economy` for details on the formula.' ,
79
83
params : {
80
84
compare : 'The ID of the empire to compare to' ,
81
85
} ,
0 commit comments