umeshjain1999 / Weather

Weather forecasting app

Home Page:https://weather-umeshjain.netlify.app/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Weather App 🌩

With one click to enable GPS location and receive the weather condition in your current location.
Weather provides detailed current weather forecasts and weather observations for all the cities around the world. Weather also provides sunrise/sunset times according to city, atmospheric pressure, and humidity. This application allows you to find out a detailed forecast wherever you are, for any time of the day or for next the 7 days just by tapping on a specific day.

Motivation 🎯

This weather application was the assignment given to me by some company that I had to complete within 2 days. It was an amazing experience and I learned many things.

Technology πŸ€–

Features πŸ’‘

  • Using GPS this app provides you a detailed forecast of your current location.
  • Using the search bar of this app you can search for any city around the world.
  • Different types of weather also visualize using icons.
  • While searching for the city it gives you the suggestion of other related cities based on the matching letters.
  • This Suggestion of cities also provides quick temperature information.
  • Weather app provides a forecast of the next 7 days by just tapping on a particular day.
  • The weather app also provides a detailed forecast for any time of the day which is shown via a beautiful and responsive graph.
  • This app also provides pressure, humidity, sunrise/sunset timing for all the searches.

How I created this project πŸ€”

  • All-weather information are fetched using Weather API.
  • I have used useState and useEffect to manage the data across the components in Reactjs.
  • The suggestion of the city in the search bar is fetched from API and Highlighting specific words is done by a library.
  • To get current location of the user
  if ("geolocation" in navigator) {
            // check if geolocation is supported/enabled on current browser
            navigator.geolocation.getCurrentPosition(
            function success(position) {
              // for when getting location is a success
              setLocation({latitude :  position.coords.latitude , longitude :  position.coords.longitude});
              setLoading(false);
           },
            function error(error_message) {
              // for when getting location results in an error
              console.error('An error has occured while retrieving location', error_message);
                    
            }  
          );

} 
  
  else {
    // geolocation is not supported
    // get your location some other way
    console.log('geolocation is not enabled on this browser')
    alert('Give access to your location');
    setLoading(false)
  }

Credits πŸ™

Wonderful weather icons - Rasmus Nielsen
Loading spinner - Sam Herbert on github.
Font - Open Sans (400,600,700) Designed by Steve Matteson

License 🏫

MIT

About

Weather forecasting app

https://weather-umeshjain.netlify.app/


Languages

Language:JavaScript 76.5%Language:CSS 18.4%Language:HTML 5.1%