├── .gitignore ├── .prettierrc.json ├── README.md ├── data-processing ├── README.md ├── data │ ├── debris.txt │ ├── sat_metadata_012022.csv │ └── sat_metadata_052022.csv ├── index.html └── js │ ├── main.js │ ├── papaparse.js │ └── satellite.es.js ├── index.html ├── license.txt ├── package.json ├── public ├── assets │ ├── .DS_Store │ ├── GeoXC-logo.png │ ├── apogee.png │ ├── arrows-back.svg │ ├── arrows-dropdown.svg │ ├── astronaut-notfound.png │ ├── close.svg │ ├── current_location.png │ ├── esri-logo.png │ ├── image.jpeg │ ├── inclination.png │ ├── iss │ │ ├── image.jpg │ │ ├── license.txt │ │ ├── scene.bin │ │ ├── scene.gltf │ │ └── textures │ │ │ ├── Solar_Cell_baseColor.png │ │ │ ├── Solar_Cell_metallicRoughness.png │ │ │ ├── Solar_Cell_normal.png │ │ │ ├── Solar_Rear_baseColor.png │ │ │ ├── Strut_Small_baseColor.png │ │ │ └── Strut_Small_normal.png │ ├── landsat │ │ ├── image.jpg │ │ ├── landsat2.glb │ │ └── license.txt │ ├── menu.svg │ ├── perigee.png │ ├── satellite-animation-css.svg │ ├── satellite-animation-js.svg │ ├── satellite-icon.png │ └── theos-2 │ │ ├── image.jpg │ │ └── theos-2.glb └── data │ ├── active.txt │ └── featured_satellites.json ├── src ├── App.jsx ├── components │ ├── About │ │ ├── About.jsx │ │ └── About.module.css │ ├── Accordion │ │ ├── Accordion.jsx │ │ └── Accordion.module.css │ ├── BackButton │ │ ├── BackButton.jsx │ │ └── BackButton.module.css │ ├── BarChart │ │ └── BarChart.jsx │ ├── BarChartComponent │ │ ├── BarChartComponent.jsx │ │ └── BarChartComponent.module.css │ ├── CountriesChart │ │ ├── CountriesChart.jsx │ │ └── CountriesChart.module.css │ ├── Debris │ │ ├── Debris.jsx │ │ └── Debris.module.css │ ├── FeaturedSatellitesList │ │ ├── FeaturedSatellitesList.jsx │ │ └── FeaturedSatellitesList.module.css │ ├── FilterButton │ │ ├── FilterButton.jsx │ │ └── FilterButton.module.css │ ├── InfoPanel │ │ ├── InfoPanel.jsx │ │ └── InfoPanel.module.css │ ├── Link │ │ ├── Link.jsx │ │ └── Link.module.css │ ├── Loading │ │ ├── Loading.jsx │ │ └── Loading.module.css │ ├── Map │ │ ├── Map.jsx │ │ └── Map.module.css │ ├── Menu │ │ ├── Menu.jsx │ │ └── Menu.module.css │ ├── OrbitsChart │ │ ├── OrbitsChart.jsx │ │ └── OrbitsChart.module.css │ ├── PageNotFound │ │ ├── PageNotFound.jsx │ │ └── PageNotFound.module.css │ ├── Satellite │ │ ├── Satellite.jsx │ │ └── Satellite.module.css │ ├── SatelliteOrbits │ │ ├── SatelliteOrbits.jsx │ │ └── SatelliteOrbits.module.css │ ├── SatelliteOwners │ │ ├── SatelliteOwners.jsx │ │ └── SatelliteOwners.module.css │ ├── SatelliteUsage │ │ ├── SatelliteUsage.jsx │ │ └── SatelliteUsage.module.css │ ├── SatellitesResults │ │ ├── SatellitesResults.jsx │ │ └── SatellitesResults.module.css │ ├── Search │ │ ├── Search.jsx │ │ └── Search.module.css │ ├── Stories │ │ ├── Stories.jsx │ │ └── Stories.module.css │ ├── StoryCard │ │ ├── StoryCard.jsx │ │ └── StoryCard.module.css │ ├── Title │ │ ├── Title.jsx │ │ └── Title.module.css │ ├── UsageChart │ │ ├── UsageChart.jsx │ │ └── UsageChart.module.css │ └── index.js ├── config.js ├── main.css ├── main.jsx ├── services │ └── satellites.js ├── stores │ ├── AppStore.js │ ├── DataStore.js │ ├── MapStore.js │ └── SatelliteStore.js └── utils │ ├── satPositionUtils.js │ ├── urlUtils.js │ ├── utils.js │ └── visualizationUtils.js └── vite.config.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .DS_Store -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/README.md -------------------------------------------------------------------------------- /data-processing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/data-processing/README.md -------------------------------------------------------------------------------- /data-processing/data/debris.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/data-processing/data/debris.txt -------------------------------------------------------------------------------- /data-processing/data/sat_metadata_012022.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/data-processing/data/sat_metadata_012022.csv -------------------------------------------------------------------------------- /data-processing/data/sat_metadata_052022.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/data-processing/data/sat_metadata_052022.csv -------------------------------------------------------------------------------- /data-processing/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/data-processing/index.html -------------------------------------------------------------------------------- /data-processing/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/data-processing/js/main.js -------------------------------------------------------------------------------- /data-processing/js/papaparse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/data-processing/js/papaparse.js -------------------------------------------------------------------------------- /data-processing/js/satellite.es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/data-processing/js/satellite.es.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/index.html -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/license.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/package.json -------------------------------------------------------------------------------- /public/assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/public/assets/.DS_Store -------------------------------------------------------------------------------- /public/assets/GeoXC-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/public/assets/GeoXC-logo.png -------------------------------------------------------------------------------- /public/assets/apogee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/public/assets/apogee.png -------------------------------------------------------------------------------- /public/assets/arrows-back.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/public/assets/arrows-back.svg -------------------------------------------------------------------------------- /public/assets/arrows-dropdown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/public/assets/arrows-dropdown.svg -------------------------------------------------------------------------------- /public/assets/astronaut-notfound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/public/assets/astronaut-notfound.png -------------------------------------------------------------------------------- /public/assets/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/public/assets/close.svg -------------------------------------------------------------------------------- /public/assets/current_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/public/assets/current_location.png -------------------------------------------------------------------------------- /public/assets/esri-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/public/assets/esri-logo.png -------------------------------------------------------------------------------- /public/assets/image.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/public/assets/image.jpeg -------------------------------------------------------------------------------- /public/assets/inclination.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/public/assets/inclination.png -------------------------------------------------------------------------------- /public/assets/iss/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/public/assets/iss/image.jpg -------------------------------------------------------------------------------- /public/assets/iss/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/public/assets/iss/license.txt -------------------------------------------------------------------------------- /public/assets/iss/scene.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/public/assets/iss/scene.bin -------------------------------------------------------------------------------- /public/assets/iss/scene.gltf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/public/assets/iss/scene.gltf -------------------------------------------------------------------------------- /public/assets/iss/textures/Solar_Cell_baseColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/public/assets/iss/textures/Solar_Cell_baseColor.png -------------------------------------------------------------------------------- /public/assets/iss/textures/Solar_Cell_metallicRoughness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/public/assets/iss/textures/Solar_Cell_metallicRoughness.png -------------------------------------------------------------------------------- /public/assets/iss/textures/Solar_Cell_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/public/assets/iss/textures/Solar_Cell_normal.png -------------------------------------------------------------------------------- /public/assets/iss/textures/Solar_Rear_baseColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/public/assets/iss/textures/Solar_Rear_baseColor.png -------------------------------------------------------------------------------- /public/assets/iss/textures/Strut_Small_baseColor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/public/assets/iss/textures/Strut_Small_baseColor.png -------------------------------------------------------------------------------- /public/assets/iss/textures/Strut_Small_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/public/assets/iss/textures/Strut_Small_normal.png -------------------------------------------------------------------------------- /public/assets/landsat/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/public/assets/landsat/image.jpg -------------------------------------------------------------------------------- /public/assets/landsat/landsat2.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/public/assets/landsat/landsat2.glb -------------------------------------------------------------------------------- /public/assets/landsat/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/public/assets/landsat/license.txt -------------------------------------------------------------------------------- /public/assets/menu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/public/assets/menu.svg -------------------------------------------------------------------------------- /public/assets/perigee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/public/assets/perigee.png -------------------------------------------------------------------------------- /public/assets/satellite-animation-css.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/public/assets/satellite-animation-css.svg -------------------------------------------------------------------------------- /public/assets/satellite-animation-js.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/public/assets/satellite-animation-js.svg -------------------------------------------------------------------------------- /public/assets/satellite-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/public/assets/satellite-icon.png -------------------------------------------------------------------------------- /public/assets/theos-2/image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/public/assets/theos-2/image.jpg -------------------------------------------------------------------------------- /public/assets/theos-2/theos-2.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/public/assets/theos-2/theos-2.glb -------------------------------------------------------------------------------- /public/data/active.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/public/data/active.txt -------------------------------------------------------------------------------- /public/data/featured_satellites.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/public/data/featured_satellites.json -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/components/About/About.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/components/About/About.jsx -------------------------------------------------------------------------------- /src/components/About/About.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/components/About/About.module.css -------------------------------------------------------------------------------- /src/components/Accordion/Accordion.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/components/Accordion/Accordion.jsx -------------------------------------------------------------------------------- /src/components/Accordion/Accordion.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/components/Accordion/Accordion.module.css -------------------------------------------------------------------------------- /src/components/BackButton/BackButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/components/BackButton/BackButton.jsx -------------------------------------------------------------------------------- /src/components/BackButton/BackButton.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/components/BackButton/BackButton.module.css -------------------------------------------------------------------------------- /src/components/BarChart/BarChart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/components/BarChart/BarChart.jsx -------------------------------------------------------------------------------- /src/components/BarChartComponent/BarChartComponent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/components/BarChartComponent/BarChartComponent.jsx -------------------------------------------------------------------------------- /src/components/BarChartComponent/BarChartComponent.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/components/BarChartComponent/BarChartComponent.module.css -------------------------------------------------------------------------------- /src/components/CountriesChart/CountriesChart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/components/CountriesChart/CountriesChart.jsx -------------------------------------------------------------------------------- /src/components/CountriesChart/CountriesChart.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/components/CountriesChart/CountriesChart.module.css -------------------------------------------------------------------------------- /src/components/Debris/Debris.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/components/Debris/Debris.jsx -------------------------------------------------------------------------------- /src/components/Debris/Debris.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/components/Debris/Debris.module.css -------------------------------------------------------------------------------- /src/components/FeaturedSatellitesList/FeaturedSatellitesList.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/components/FeaturedSatellitesList/FeaturedSatellitesList.jsx -------------------------------------------------------------------------------- /src/components/FeaturedSatellitesList/FeaturedSatellitesList.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/components/FeaturedSatellitesList/FeaturedSatellitesList.module.css -------------------------------------------------------------------------------- /src/components/FilterButton/FilterButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/components/FilterButton/FilterButton.jsx -------------------------------------------------------------------------------- /src/components/FilterButton/FilterButton.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/components/FilterButton/FilterButton.module.css -------------------------------------------------------------------------------- /src/components/InfoPanel/InfoPanel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/components/InfoPanel/InfoPanel.jsx -------------------------------------------------------------------------------- /src/components/InfoPanel/InfoPanel.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/components/InfoPanel/InfoPanel.module.css -------------------------------------------------------------------------------- /src/components/Link/Link.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/components/Link/Link.jsx -------------------------------------------------------------------------------- /src/components/Link/Link.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/components/Link/Link.module.css -------------------------------------------------------------------------------- /src/components/Loading/Loading.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/components/Loading/Loading.jsx -------------------------------------------------------------------------------- /src/components/Loading/Loading.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/components/Loading/Loading.module.css -------------------------------------------------------------------------------- /src/components/Map/Map.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/components/Map/Map.jsx -------------------------------------------------------------------------------- /src/components/Map/Map.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/components/Map/Map.module.css -------------------------------------------------------------------------------- /src/components/Menu/Menu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/components/Menu/Menu.jsx -------------------------------------------------------------------------------- /src/components/Menu/Menu.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/components/Menu/Menu.module.css -------------------------------------------------------------------------------- /src/components/OrbitsChart/OrbitsChart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/components/OrbitsChart/OrbitsChart.jsx -------------------------------------------------------------------------------- /src/components/OrbitsChart/OrbitsChart.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/components/OrbitsChart/OrbitsChart.module.css -------------------------------------------------------------------------------- /src/components/PageNotFound/PageNotFound.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/components/PageNotFound/PageNotFound.jsx -------------------------------------------------------------------------------- /src/components/PageNotFound/PageNotFound.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/components/PageNotFound/PageNotFound.module.css -------------------------------------------------------------------------------- /src/components/Satellite/Satellite.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/components/Satellite/Satellite.jsx -------------------------------------------------------------------------------- /src/components/Satellite/Satellite.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/components/Satellite/Satellite.module.css -------------------------------------------------------------------------------- /src/components/SatelliteOrbits/SatelliteOrbits.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/components/SatelliteOrbits/SatelliteOrbits.jsx -------------------------------------------------------------------------------- /src/components/SatelliteOrbits/SatelliteOrbits.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/components/SatelliteOrbits/SatelliteOrbits.module.css -------------------------------------------------------------------------------- /src/components/SatelliteOwners/SatelliteOwners.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/components/SatelliteOwners/SatelliteOwners.jsx -------------------------------------------------------------------------------- /src/components/SatelliteOwners/SatelliteOwners.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/components/SatelliteOwners/SatelliteOwners.module.css -------------------------------------------------------------------------------- /src/components/SatelliteUsage/SatelliteUsage.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/components/SatelliteUsage/SatelliteUsage.jsx -------------------------------------------------------------------------------- /src/components/SatelliteUsage/SatelliteUsage.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/components/SatelliteUsage/SatelliteUsage.module.css -------------------------------------------------------------------------------- /src/components/SatellitesResults/SatellitesResults.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/components/SatellitesResults/SatellitesResults.jsx -------------------------------------------------------------------------------- /src/components/SatellitesResults/SatellitesResults.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/components/SatellitesResults/SatellitesResults.module.css -------------------------------------------------------------------------------- /src/components/Search/Search.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/components/Search/Search.jsx -------------------------------------------------------------------------------- /src/components/Search/Search.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/components/Search/Search.module.css -------------------------------------------------------------------------------- /src/components/Stories/Stories.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/components/Stories/Stories.jsx -------------------------------------------------------------------------------- /src/components/Stories/Stories.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/components/Stories/Stories.module.css -------------------------------------------------------------------------------- /src/components/StoryCard/StoryCard.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/components/StoryCard/StoryCard.jsx -------------------------------------------------------------------------------- /src/components/StoryCard/StoryCard.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/components/StoryCard/StoryCard.module.css -------------------------------------------------------------------------------- /src/components/Title/Title.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/components/Title/Title.jsx -------------------------------------------------------------------------------- /src/components/Title/Title.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/components/Title/Title.module.css -------------------------------------------------------------------------------- /src/components/UsageChart/UsageChart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/components/UsageChart/UsageChart.jsx -------------------------------------------------------------------------------- /src/components/UsageChart/UsageChart.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/components/UsageChart/UsageChart.module.css -------------------------------------------------------------------------------- /src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/components/index.js -------------------------------------------------------------------------------- /src/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/config.js -------------------------------------------------------------------------------- /src/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/main.css -------------------------------------------------------------------------------- /src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/main.jsx -------------------------------------------------------------------------------- /src/services/satellites.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/services/satellites.js -------------------------------------------------------------------------------- /src/stores/AppStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/stores/AppStore.js -------------------------------------------------------------------------------- /src/stores/DataStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/stores/DataStore.js -------------------------------------------------------------------------------- /src/stores/MapStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/stores/MapStore.js -------------------------------------------------------------------------------- /src/stores/SatelliteStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/stores/SatelliteStore.js -------------------------------------------------------------------------------- /src/utils/satPositionUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/utils/satPositionUtils.js -------------------------------------------------------------------------------- /src/utils/urlUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/utils/urlUtils.js -------------------------------------------------------------------------------- /src/utils/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/utils/utils.js -------------------------------------------------------------------------------- /src/utils/visualizationUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/src/utils/visualizationUtils.js -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RalucaNicola/satellite-explorer/HEAD/vite.config.js --------------------------------------------------------------------------------