The EONET Mapping Tracker tracks natural events and disasters. It is powered by NASA's API and uses Google Maps to map out the current whereabouts of natural events, including wildfires, volcanos, storms, and icebergs. It was built in React and makes use of Fetch, ES6, and a variety of technologies. It is currently not deployed but the source code is available.
- Takes user location to set default map view
- Immediately fetches new data from NASA's Earth Observatory Natural Event Tracking system when loaded to ensure accuracy
- Loading splash screen implemented to ensure application runs smoothly when first loaded
- Uses the Google Maps API as well as Material Design Icons
- Written in React, styling is done in pure CSS
Clone this repository and cd
to the project directory. First, run npm install
to install all dependencies and libraries, after which you can run npm start
in order to run in development mode. By default, it should be live on Port 3000.
This was a project that interested me because it mapped a variety of natural events directly to a map that everyone is familiar with, and it is re-rendered everytime the site is visited, allowing for real-time mapping to see what is going on directly from the Earth Observatory Natural Events Tracking system.
Originally, I followed a tutorial that taught me how to call an API and how to display items on the Map, however I extended it to display a variety of events, I added menu functionality, dynamic location based on where the user is located, implemented a better loading screen, and a new color scheme as well as my own CSS for design. Due to the fact that the API is simplistic, I implemented a backend with Node and Express but found there was no real performance increase by processing the API call in the backend, so ultimately, I scrapped that idea.