Skip to content

Commit 641e018

Browse files
committed
feat: add groundster project component
1 parent dc88afa commit 641e018

File tree

3 files changed

+14
-5
lines changed

3 files changed

+14
-5
lines changed

src/images/projects/groundster.png

532 KB
Loading

src/images/projects/index.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import settle from './settle.png';
22
import volcano from './volcano.png';
33
import website from './website.png';
4+
import groundster from './groundster.png';
45

5-
export { settle, volcano, website };
6+
export { settle, volcano, website, groundster };

src/pages/Projects.js

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,23 @@ export function Projects() {
1515
<div className="content-grid">
1616
<ContentElement
1717
title="SETTLE - Satellite Element Tracking via TLE"
18-
description="Visualising calculated satellite positions on an interactive map"
18+
description="A satellite tracker using Celestrak TLE data with SGP4 orbit propagation and interactive map visualisations"
1919
image={images.settle}
2020
link="https://github.com/mgrinstein/SETTLE"
21-
hashtags={["Python", "CelesTrack", "sgp4"]}
21+
hashtags={["Python", "CelesTrak", "sgp4"]}
2222
buttonText="Source Code"
2323
/>
2424
<ContentElement
25-
title="Satellite Image Analysis"
26-
description="Processing and analyzing satellite images using the 2024 Kīlauea volcano eruption as an example"
25+
title="GROUNDSTER - GROUND Station TElemetry Receiver"
26+
description="A simulated ground station that receives telemetry data from a satellite via TCP socket connection"
27+
image={images.groundster}
28+
link="https://github.com/mgrinstein/GROUNDSTER"
29+
hashtags={["C++", "Python", "FASTAPI"]}
30+
buttonText="Source Code"
31+
/>
32+
<ContentElement
33+
title=" KILAUEA-EO - Kīlauea Earth Observation"
34+
description="An analysis of a recent volcanic eruption using Sentinel-2 imagery in the NIR band from Google Earth Engine"
2735
image={images.volcano}
2836
link="https://github.com/mgrinstein/volcano-image-processing"
2937
hashtags={["Python", "JupyterNotebook", "GeoTIFF", "EarthObservation"]}

0 commit comments

Comments
 (0)