Hi.
How I can get a list of all temperate planets from EVE online database, for example? Programming language does not matter, I just need a hint how to work with EVE online api…
Thank you.
Hi.
How I can get a list of all temperate planets from EVE online database, for example? Programming language does not matter, I just need a hint how to work with EVE online api…
Thank you.
This kind of information would best come from the SDE, where you could run a SQL query to get your answer.
https://www.fuzzwork.co.uk/dump/sde-20171205-TRANQUILITY/
I have no idea which one will have this info, but this is where you’ll find it
Here you go.
Basic just used the SDE MapDenormalized
table, then filter on typeID where typeID = 11.
11 = Planet (Temperate)
.
SQL for this would be like SELECT * FROM MapDenormalized WHERE typeID = 11;
This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.