You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
additionalDescription: string;// New property for additional context
14
+
icon: React.ElementType;
15
+
color: string;
16
+
identifier: string;
17
+
}
18
+
19
+
constprojects: Record<string,Mission[]>={
20
+
"Refracting Telescope": [
21
+
{
22
+
id: 1,
23
+
name: "Planet Hunting",
24
+
description: "Click on the Telescope structure icon to rate different transit events and find planets.",
25
+
additionalDescription: "You'll work alongside other users to classify and verify planet candidates. Once they've been confirmed, you'll be able to visit them, determine their properties and start construction & exploration surveys.",
26
+
icon: Telescope,
27
+
color: "text-cyan-300",
28
+
identifier: "planet"
29
+
},
30
+
{
31
+
id: 2,
32
+
name: "Asteroid Detection",
33
+
description: "Click on the Telescope structure icon to discover new asteroids in your telescope's data.",
34
+
additionalDescription: "Using the latest telescope data, you will identify potential asteroids that might pose a threat to the Earth or serve as future targets for exploration. Additionally, exo-asteroids can be discovered and tracked to identify their interactions with planets discovered in the Planet Hunters project",
35
+
icon: Telescope,
36
+
color: "text-green-300",
37
+
identifier: "asteroid"
38
+
},
39
+
{
40
+
id: 3,
41
+
name: "Sunspot Observations",
42
+
description: "Click on the Telescope structure icon to keep track of our sun's health & electrical storms",
43
+
additionalDescription: "This mission requires monitoring sunspots and solar activity to understand how these phenomena affect space weather and our planet's magnetosphere. Sunspots can trigger electrical outages here on Earth (and on any planets in the firing line) - so we need to be prepared",
44
+
icon: Telescope,
45
+
color: "text-yellow-300",
46
+
identifier: "sunspot"
47
+
},
48
+
],
49
+
Biodome: [
50
+
{
51
+
id: 4,
52
+
name: "Wildwatch Burrowing Owls",
53
+
description: "Click on the Biodome structure icon to classify pictures of burrowing owls in captivity.",
54
+
additionalDescription: "Help track the health and behavior of burrowing owls by classifying pictures from the Biodome. You will analyze the owls' nesting and foraging behaviors.",
55
+
icon: LightbulbIcon,
56
+
color: "text-cyan-300",
57
+
identifier: "burrowingOwl"
58
+
},
59
+
{
60
+
id: 5,
61
+
name: "Iguanas from Above",
62
+
description: "Count Galapagos Marine Iguanas from aerial photos that have been sent to your Biodome structure.",
63
+
additionalDescription: "Use aerial images to count and classify marine iguanas on the Galapagos Islands. This is important for conservation efforts to track their population.",
64
+
icon: LightbulbIcon,
65
+
color: "text-green-300",
66
+
identifier: "iguana"
67
+
},
68
+
],
69
+
WeatherBalloon: [
70
+
{
71
+
id: 6,
72
+
name: "Martian Cloud Survey",
73
+
description: "Use your Weather Balloon to identify clouds & cloud behaviour on Mars & Mars-like planets",
74
+
additionalDescription: "Analyze cloud patterns on Mars and other planets. This mission will involve classifying clouds based on their shape, size, and movement. We can use this information to understand more about the composition and climate cycle on these planets",
75
+
icon: CloudDrizzleIcon,
76
+
color: "text-blue-400",
77
+
identifier: "martianClouds"
78
+
},
79
+
{
80
+
id: 7,
81
+
name: "Jovian Vortx Hunters",
82
+
description: "Classify storms & storm behaviour on gas giant planets using data collected in your Weather Balloon",
83
+
additionalDescription: "Study the massive storms on gas giants like Jupiter, tracking their movements and behaviors to understand their atmospheric dynamics, composition and climate.",
84
+
icon: CloudDrizzleIcon,
85
+
color: "text-yellow-400",
86
+
identifier: "jovianStorms"
87
+
},
88
+
],
89
+
};
90
+
91
+
constdefaultMission: Mission={
92
+
id: 0,
93
+
name: "Welcome to Star Sailors",
94
+
description: "You've been given some basic structures to start your journey. Click on their icons to classify the data they've collected for you. New data & projects are being added weekly.",
95
+
additionalDescription: "You'll get to explore various missions, starting with basic tasks such as classifying objects in the sky and on Earth. Each task you complete unlocks new insights. Next week (22nd December) you'll be able to upload your own discoveries and clips",
0 commit comments