I don't suppose anybody's scanned and sold Sgr A* since 3.3 dropped?
If I was a betting man, 261800. Hopefully someone will confirm or refute soon.I don't suppose anybody's scanned and sold Sgr A* since 3.3 dropped?
One quick question: Is there any bonus for fully mapping (to any level) all the bodies in a system? Or is it just per-planet bonuses?
Not for fully mapping with probes, no. For fully scanning with the FSS, there is, based on the number of bodies. 10,000 Cr per body, if memory serves.One quick question: Is there any bonus for fully mapping (to any level) all the bodies in a system? Or is it just per-planet bonuses?
It's had plenty of visitors for sure. But black holes are considered stellar objects, so they can't be mapped. No new tags for A*.
Plenty of people who haven't been there yet though.
Great work, thank you so much for doing this!!!OK. I've used Median masses from my old analysis. These values will barely have changed, if at all.
Planet Type Terraformable? Median mass FSS FSS+FD FSS+DSS FSS+FD+DSS Ammonia World 0.43914 143463 373004 597762 1724965 Earth-like World 0.498039 270290 702753 1126206 3249900 Water World 0.780638 99747 259343 415613 1199337 Water World Yes 0.453011 268616 698400 1119231 3229773 High Metal Content Planet 0.344919 14070 36581 58624 169171 High Metal Content Planet Yes 0.466929 163948 426264 683116 1971272 Icy Body 0.01854 500 1300 1569 4527 Metal Rich Body 0.323933 31632 82244 131802 380341 Rocky Body 0.003359 500 1300 1476 4260 Rocky Body Yes 0.142312 129504 336711 539601 1557130 Rocky Ice Body 0.180686 500 1300 1752 5057 Class I Gas Giant 69.551636 3845 9997 16021 46233 Class II Gas Giant 476.240875 28405 73853 118354 341536 Class III Gas Giant 1148.921509 995 2587 4145 11963 Class IV Gas Giant 2615.635376 1119 2910 4663 13457 Class V Gas Giant 925.575806 966 2510 4023 11609 Gas Giant with Ammonia-based Life 170.455071 774 2014 3227 9312 Gas Giant with Water-based Life 477.001832 883 2295 3679 10616 Helium-Rich Gas Giant 550.141846 900 2339 3749 10818 Water Giant 47.163769 667 1734 2779 8019
FSS = FSS but don't get first discoverer.
FSS + FD + FSS, and get first discoverer tag.
FSS + DSS = body scanned and mapped with efficiency bonus - but neither first discoverer nor first mapped
FSS + FS + DSS = body scanned, mapped with efficiency, and both first discovered and first mapped.
You could add plenty more columns for other variations, but I think this gives a gist. I've also not checked it at all, so don't blame me if it's totally wrong. Terraforming numbers assume maximum terraforming bonus, but that's by no means guaranteed.
Is that code right? It seems to be what has been implemented in EDD but it is giving weird results such as some terraformable HMCs being worth as much as ELWs. In particular, it does not seem to be consistent with the results for the table you published a couple of posts later.So rather than a formula and multiplier lookup table, I've thrown it all in a function as it's a bit easier to understand IMO (for me, anyway). It's not perfect, but it's close enough. It assumes you've looked up k already (and for terraformables/elws, k = (base k + terraformable k) for maximum terraformable value)
The figures still need tweaking, but you could be doing this forever and not get it _quite_ right.Code:static int GetBodyValue(int k, double mass, bool isFirstDicoverer, bool isMapped, bool isFirstMapped, bool withEfficiencyBonus) { const double q = 0.56591828; double mappingMultiplier = 1; if(isMapped) { if(isFirstDicoverer && isFirstMapped) { mappingMultiplier = 3.699622554; } else if(isFirstMapped) { mappingMultiplier = 8.0956; } else { mappingMultiplier = 3.3333333333; } mappingMultiplier *= (withEfficiencyBonus) ? 1.25 : 1; } double value = Math.Max(500,(k + k * q * Math.Pow(mass,0.2)) * mappingMultiplier); value *= (isFirstDicoverer) ? 2.6 : 1; return (int)Math.Round(value); }
One more additional point of note. The data provided by BlackMirror (thanks, btw) seems to correlate with other data I have (and a small handful of iain's), and suggests there are 2 other potential multipliers. First off, if you have previously sold (non-mapped) data for a body (perhaps before 3.3) but were not first discoverer, and then later go back to map that body, then an additional multiplier of approximately 1.23524 seems to be applied. Similarly, if you were first discoverer of the body then the multiplier is around 1.89404. I've left this out of the base calculation because it's more difficult to determine this data from the journal (though not impossible, if you have a history).
Is that code right? It seems to be what has been implemented in EDD but it is giving weird results such as some terraformable HMCs being worth as much as ELWs. In particular, it does not seem to be consistent with the results for the table you published a couple of posts later.
Console.WriteLine("Gludgoi OY-Z c13-4 1: (expected 1891752) "
+ GetBodyValue(9654 + 100677, 0.241748, true, true, true, true).ToString());
Console.WriteLine("Hypio Eaec TO-Z e20 9: (expected 1837746) "
+ GetBodyValue(9654 + 100677, 0.14631, true, true, true, true).ToString());
Console.WriteLine("Wredguia NN-S b31-3 A 2: (expected 153372) "
+ GetBodyValue(9654 + 100677, 0.15566, false, false, false, false).ToString());
Console.WriteLine("Hypoe Phoe ED-I c26-13 B 2: (expected 400192) "
+ GetBodyValue(9654 + 100677, 0.165818, true, false, false, false).ToString());
Console.WriteLine("Outorst UZ-P d5-0 7: (expected 431212) "
+ GetBodyValue(9654 + 100677, 0.555887, true, false, false, false).ToString());
Gludgoi OY-Z c13-4 1: (expected 1891752) 1891746
Hypio Eaec TO-Z e20 9: (expected 1837746) 1837743
Wredguia NN-S b31-3 A 2: (expected 153372) 153372
Hypoe Phoe ED-I c26-13 B 2: (expected 400192) 400192
Outorst UZ-P d5-0 7: (expected 431212) 431212
Question abou the full system scan bonus:
1. Will that add a multiplier to the payouts for scanning planets? E.g. an ELW will pay you 3.2mln, but with a full system scan times 1.5 = ~4.8? Probably it's just a fix bonus of x credits?
And 2. do we have any data regarding the payouts for FSS + FD? Sometimes I wonder if it's worth to fly 200kls, so it would be good to have a comparison between FSS+FD+DSS vs FSS+FD.