Hi there,
I would like to manually create a system that is not only hospitable but also above a certain mean temperatur. As I´ve got absolutly no experience programming somthing that could iterate through a certain number of creations to produce such a system I would like to ask if someone has a solution to this problem. I could imagine a form where you could set certain parameters to limit down to specific system requirements.
If somebody could help I would be grateful.
THX in advance,
Troedel
Comments
As stated elsewhere .AstroDB files are actualy SQLite databases one can directly open with DB Browser or similar software.
Looks like this:
replace into datatarget.bodies
select * from bodies
where system_id in
(select system_id from bodies
where habitability=2 and
temp between 290 and 295);
Thats pretty basic I know but it works for me. THX for listening, hope it helps someone in the future.