Skip to content

A React web-app that display weather based on the city entered by the user.

Notifications You must be signed in to change notification settings

architadesai/WeatherFinder

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

WeatherFinder

A React web-app that display weather based on the city entered by the user.

Features

Start typing a city name and autosuggestions will appear
Autosuggestions in Desktop

AutoSuggestions Desktop View

Weather information

Desktop View of Weather data

Respoonsive React App - works well in tablet and mobile views
AutoSuggestions in Mobile View Mobile view of weather data

Installation Instructions

Technical Details

APIs Used:

  • To display weather based on city, country, latitude, longitude, etc.
OpenWeatherMap API Endpoints
Weather display data JSON details
  • Type of weather
    • weather[0].description
  • Weather type icon
    • weather[0].icon
  • latitude, longitude
    • coord.lon, coord.lat
  • temperature (given in K) = (K-273) celcius
    • main.temp
  • Humidity in %
    • main.humidity
  • Wind speed (given in m/s) = ms*3.6 kmph
    • wind.speed