Skip to content

CoreyPatrickPDX/465pfinal

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

96 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Air Quality Dashboard

This project represents an air quality monitoring system that tracks various pollutants in different countries. The main interface provides a list of pollutants, detailed information about a selected pollutant, a list of top countries, and a world map.

Main Components

Main View

MainView.js is the main file that brings all the components together. It fetches and displays data about various pollutants from different countries. You can also search for a specific city's pollutant data in the search bar.

Detailed View

DetailedView.js is the second file that brings all the components together for detailed pollutant data. It fetches and displays data about various pollutants from a searched location using the getLocationData function.The data, once fetched, is displayed in a NewDetailedChart.js. A Pollutant List and Pollutant Details are displayed alongside a detailed chart of pollutant levels in the selected location.

Historical View

HistoricalView.js is similar to DetailedView.js, but instead focuses on displaying historical data of pollutant levels from a selected location. It uses a HistoricalForm for users to input the desired data range. The data, once fetched, is displayed in a NewHistoricalChart.js.

Key Components

Pollutant List

PollutantList.js displays a list of pollutants. Clicking on a pollutant updates the selectedPollutant state in all views.

Pollutant Details

PollutantDetails.js displays detailed information about the selected pollutant.

Top Countries

TopCountries.js displays the countries with the best pollutant values.

World Map

WorldMap.js displays a world map indicating the amount of pollutants in each country.

Detailed Chart and Historical Chart

NewDetailedChart.js and NewHistoricalChart.js both components visualize the fetched pollutant data in a chart format.

Historical Form

HistoricalForm.js creates a form used in the historical view to input the desired data range.

CSS

MainView.css

This file contains the styles for all views, including the navbar, search box, map container, and pollutant list.

PollutantList.css

This file contains the styles for the list of pollutants.

PollutantDetails.css

This file contains the styles for the detailed information about the selected pollutant.

TopCountries.css

This file contains the styles for the countries with the best pollutant values.

HistoricalForm.css

This file contains the styles for the form used in the historical view to input the desired data range.

API

The application uses the OpenAQ API to fetch air quality data across the globe. The main API endpoints used are:

  • 1: ...
  • 2: ...
  • 3: ...

The application interacts with the OpenAQ API via multiple functions, each one serving a distinct purpose:

  • getCountries(): Fetches the latest available air quality data for all countries.
  • getCityData(city): Fetches the air quality data for a specified city.
  • getCountryData(country): Fetches the air quality data for a specified country.
  • getCurrentData(): Fetches the current air quality data.
  • getAllCities(): Fetches data for all the cities in the database.
  • getAllPollutants(): Fetches all pollutants data.
  • getCountryCode(country): Fetches the air quality data for a specific parameter and geographical location between two dates.

React Hooks

The application uses the useState and useEffect hooks for state management and side-effects respectively.

Dependencies

This project utilizes the following outside libraries:

  • React Router: Used for setting up navigation between different components in the application.
  • React Router Dom: It is used to handle routing and navigation in the application.
  • Axios: Used for handling HTTP requests to the API.
  • React Google Charts: Used for rendering the map and charts based on pollutant data.

Tutorials and Resources

The following resources were consulted during the development of this application:

Installation

  1. Clone this repository.
  2. Run npm install to install all the dependencies.
  3. Run npm start to start the application.

Other Related Tutorials and Resources

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 83.4%
  • CSS 12.6%
  • HTML 4.0%