RELEASING SOON*
*The cryptographic keys that I will work on and calculate from the chosen object disposition from the database have been scheduled for release later in Q1 2025.
On a small note, I have decided to engage in a conflict of interest by planning to open a new educational institution. Ok, this sounds bad but what's it about?
It is completely free to read and see and open to the entire internet because if I have a good business idea that I cannot physically complete. Still, it will undercut current market leaders, I will post a preview of the concept on a different page on my site.
I.T.A
I.T.A
I.T.A
SPONSORED BY ELON MUSK AND DONALD TRUMP
My apologies
The title was designed for 1440p resolution displays at an aspect 16:9
SPONSORED BY ELON MUSK AND DONALD TRUMP
I.T.A
I.T.A
I.T.A
I. Interstellar
T. Travel
GALACTIC TITLES AVAILABLE
Embark on a cosmic adventure
Start Exploring
A.Agency
I.T.A
I.T.A
I.T.A
I.T.A
I.T.A
I.T.A
I.T.A
I.T.A
I.T.A
I.T.A
I.T.A
I.T.A
I.T.A
I.T.A
I.T.A
WELCOME
IF YOU HAVE TIME READ THIS, https://v3.pebblepad.co.uk/spa/#/public/cbwW6hMr55dMxg96HRkw6y4mxW
SERVICES
Nothing to book right now. Check back soon.
Bro, trust me. If I were you, I'd agree that it is a scam. However, because I'm the business owner, I cannot legally call myself a scam because that would let you sue me.
In my honest opinion, if you like the concept, you can buy one. If not, please move along and visit another website.
Book OnlineABOUT
Our Mission
ADRIANO TO THE STAR provides a revolutionary opportunity for individuals to own celestial bodies within the Andromeda galaxy. Our platform, inspired by the wonders of the cosmos, enables the buying and selling of licenses for stars, planets, and large Kepler objects. We aim to redefine the space industry by offering a unique and personalized experience for all space enthusiasts.
Learn More
GALLERY
science.nasa.gov
We will update the list of contact information later.
I will list the database for the list of kepler objects currently known to api.nasa.gov
Read moreFOLLOW US
I will provide documentation on how I retrieved the request of constellations and kepler objects from https://api.nasa.gov/ here.
import os
import requests
# Function to fetch data from NASA Exoplanet Archive API
def fetch_nasa_exoplanet_data(api_key):
try:
url = f"https://exoplanetarchive.ipac.caltech.edu/cgi-bin/nstedAPI/nph-nstedAPI?table=cumulative&select=kepid,kepoi_name,kepler_name,koi_disposition,koi_pdisposition,koi_score,koi_fpflag_nt&format=json&api_key={api_key}"
response = requests.get(url)
response.raise_for_status()
return response.json()
except requests.exceptions.RequestException as e:
print(f"Failed to fetch data from NASA: {e}")
return []
# Function to classify stars and exoplanets
def classify_objects(data):
classifications = []
for obj in data:
classification = {
"kepid": obj.get("kepid", "Unknown"),
"kepoi_name": obj.get("kepoi_name", "Unknown"),
"kepler_name": obj.get("kepler_name", "Unknown"),
"koi_disposition": obj.get("koi_disposition", "Unknown"),
"koi_pdisposition": obj.get("koi_pdisposition", "Unknown"),
"koi_score": obj.get("koi_score", "Unknown"),
"koi_fpflag_nt": obj.get("koi_fpflag_nt", "Unknown")
}
classifications.append(classification)
return classifications
# Main function
def main():
nasa_api_key = os.getenv("NASA_API_KEY")
combined_data = fetch_nasa_exoplanet_data(nasa_api_key)
classifications = classify_objects(combined_data)
output_file = "REDACTED\\REDACTED.txt"
with open(output_file, "w") as file:
for classification in classifications:
file.write(f"{classification}\\n")
print(f"Output written to {output_file}")
if __name__ == "__main__":
main()