I am interested in seeing my entire journey since starting, seeing how many systems I have jumped in to etc.
Now having seen that some of the 3rd party trading tools (EliteOCR, Slopey etc) seem to be able know what system we are in I guessed this must be logged somewhere.
So after a bit of poking around I discovered it was in the net*.log files found in C:\Users\andyl\AppData\Local\Frontier_Developments\Products\FORC-FDEV-D-1010\Logs (change the user as appropriate).
So I copied them over to my Linux box. Then it was simply a matter of
grep System net*.log | cut -c46- | cut -d\) -f1 | uniq | cut -d\( -f2 | uniq
will print out a full list of all the systems (not stations) you have visited (in the order you visited them).
You can obviously redirect that output and put it into a file for later perusal.
That makes it easy to get a full list of your travels.
You can count how many systems you have been to. Pipe it through wc -l.
You can sort it and then throw it through uniq again to get a list of the unique systems.
For me so far 422 systems visited and 367 unique systems. I guess I'm not one to ply a standard trading route, or have a home base for bounty hunting.
Now you may not have a handy Linux box, but they are available on the Mac (in Terminal), and there are third party shells and tools that provide them on Windows.
Hopefully this has been of use to someone.
Now having seen that some of the 3rd party trading tools (EliteOCR, Slopey etc) seem to be able know what system we are in I guessed this must be logged somewhere.
So after a bit of poking around I discovered it was in the net*.log files found in C:\Users\andyl\AppData\Local\Frontier_Developments\Products\FORC-FDEV-D-1010\Logs (change the user as appropriate).
So I copied them over to my Linux box. Then it was simply a matter of
grep System net*.log | cut -c46- | cut -d\) -f1 | uniq | cut -d\( -f2 | uniq
will print out a full list of all the systems (not stations) you have visited (in the order you visited them).
You can obviously redirect that output and put it into a file for later perusal.
That makes it easy to get a full list of your travels.
You can count how many systems you have been to. Pipe it through wc -l.
You can sort it and then throw it through uniq again to get a list of the unique systems.
For me so far 422 systems visited and 367 unique systems. I guess I'm not one to ply a standard trading route, or have a home base for bounty hunting.
Now you may not have a handy Linux box, but they are available on the Mac (in Terminal), and there are third party shells and tools that provide them on Windows.
Hopefully this has been of use to someone.