Yes goemon, you hit the proverbial nail. What location exists which (roughly) had equal travel time from one side of the bubble to the other. Strikes me that this would be a logical location for someone who did a lot of CG's, as I do.
Depending on which character I use, I'm in Alliance or Empire space and some of the CG's can be quite a haul away. I'm looking to cut down on travel time by locating myself centrally.
Cheers.
Isn't there a massive black hole at the centre of our galaxy? I remember somebody saying that in a BBC documentary some time ago. If that were the case then you could search for the centre by using black holes ?
it is, and its name is sagittarius a* - and it even has a visitor list on these forums! https://forums.frontier.co.uk/showthread.php?t=98529
OP was asking for the center of inhabited space. if we take all the gasplanets with water-based lifeforms (or any other) into this, you'll be probably right.
Hello Commanders!
Clearly at the centre of *all* space, civilised, uninhabited, Euclidian and otherwise (all at the same time), is the system known as the nuclear chaos, blind idiot god, Azathoth.
Just don't tell anyone.
And for goodness sake *don't* try to visit it.
id | name | x | y | z | tgc_id | updatedate | permit | commandercreate
-------+---------------+----------+-----------+----------+--------+---------------------+--------+-----------------
2796 | Thanatos | 80.59375 | -74.28125 | 12.40625 | 14711 | 2015-05-12 15:29:33 | | FD
7507 | Yab Cameni | 99.4375 | -73.53125 | 12.6875 | 1616 | 2015-05-12 15:29:33 | | FD
36710 | ICZ BV-X b1-2 | 95.28125 | -69.96875 | 9.53125 | 120152 | 2015-11-07 20:47:46 | |
my ($x, $y, $z) = (0.0, 0.0, 0.0);
foreach my $s (keys(%${fd_stars})) {
# print Dumper($fd_stars->{$s});
$x += ($fd_stars->{$s}{'x'} - $x) / 2;
$y += ($fd_stars->{$s}{'y'} - $y) / 2;
$z += ($fd_stars->{$s}{'z'} - $z) / 2;
}
printf "%10.5f : %10.5f : %10.5f\n", $x, $y, $z;
Ah-hah! My next destination!
*Plotting course for Azathoth
...
...
-Fried chips drive engaged-
Hello Commanders!
Clearly at the centre of *all* space, civilised, uninhabited, Euclidian and otherwise (all at the same time), is the system known as the nuclear chaos, blind idiot god, Azathoth.
Just don't tell anyone.
And for goodness sake *don't* try to visit it.
If anyone has a suggestion for a better "centre-of-mass" algorithm I'm all ears.
my ($x, $y, $z) = (0.0, 0.0, 0.0);
foreach my $s (keys(%${fd_stars})) {
$x += $fd_stars->{$s}{'x'};
$y += $fd_stars->{$s}{'y'};
$z += $fd_stars->{$s}{'z'};
}
my $n = scalar(keys(%${fd_stars}));
printf "%10.5f : %10.5f : %10.5f\n", $x/$n, $y/$n, $z/$n;
That gives: 16.83025 : -33.42442 : 11.52990(This actually calculates geometric centre, which is the same as centre of mass if we assign the same mass to each object. See Center of mass § A system of particles, and note that if you take m[SUB]i[/SUB] = 1 for every i, then M = n and the formula is the same as Centroid § Of a finite set of points.)
Hello Commanders!
Clearly at the centre of *all* space, civilised, uninhabited, Euclidian and otherwise (all at the same time), is the system known as the nuclear chaos, blind idiot god, Azathoth.
Just don't tell anyone.
And for goodness sake *don't* try to visit it.