{"id":22680139,"url":"https://github.com/coderooz/eurorbit-weather-forecast","last_synced_at":"2025-03-29T13:43:15.682Z","repository":{"id":248531864,"uuid":"828956495","full_name":"coderooz/Eurorbit-Weather-Forecast","owner":"coderooz","description":"EurOrbit is a web application providing European weather forecasts using the 7Timer API. Select a city to view a 7-day forecast with icons and temperatures. Built with HTML, CSS, and JavaScript for Coursera's \"Build a Website using an API with HTML, JavaScript, and JSON\" course. Responsive design and easy setup.","archived":false,"fork":false,"pushed_at":"2024-07-21T20:05:33.000Z","size":76,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-04T14:36:08.843Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/coderooz.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-07-15T13:14:59.000Z","updated_at":"2024-07-21T20:05:36.000Z","dependencies_parsed_at":"2024-07-15T15:45:33.239Z","dependency_job_id":"a9f54681-0eab-4a06-9782-1f8fcf556a00","html_url":"https://github.com/coderooz/Eurorbit-Weather-Forecast","commit_stats":null,"previous_names":["coderooz/eurorbit-weather-forecast"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coderooz%2FEurorbit-Weather-Forecast","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coderooz%2FEurorbit-Weather-Forecast/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coderooz%2FEurorbit-Weather-Forecast/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/coderooz%2FEurorbit-Weather-Forecast/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/coderooz","download_url":"https://codeload.github.com/coderooz/Eurorbit-Weather-Forecast/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246193156,"owners_count":20738450,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-12-09T19:12:30.647Z","updated_at":"2025-03-29T13:43:15.663Z","avatar_url":"https://github.com/coderooz.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\r\n# EurOrbit - European Weather Forecast\r\n\r\nEurOrbit is a web application that provides weather forecasts for various European cities. This project was created as part of the Coursera course \"Build a Website using an API with HTML, JavaScript, and JSON\" by Coursera Project Network.\r\n\r\n## Table of Contents\r\n- [Introduction](#introduction)\r\n- [Features](#features)\r\n- [Technologies Used](#technologies-used)\r\n- [Setup](#setup)\r\n- [Usage](#usage)\r\n- [Project Structure](#project-structure)\r\n- [License](#license)\r\n\r\n## Introduction\r\nEurOrbit utilizes the 7Timer API to fetch and display weather forecasts for selected locations. Users can select a city from a dropdown menu, and the application will display the weather forecast for the next seven days, including weather icons and temperature details.\r\n\r\n## Features\r\n- Select a city to view its weather forecast\r\n- Displays weather conditions with icons\r\n- Provides temperature highs and lows for each day\r\n- Responsive design suitable for various devices\r\n\r\n## Technologies Used\r\n- HTML\r\n- CSS\r\n- JavaScript (with async/await for asynchronous operations)\r\n- 7Timer API for weather data\r\n- Fetch API for making HTTP requests\r\n\r\n## Setup\r\n1. Clone the repository to your local machine:\r\n    ```bash\r\n    git clone https://github.com/coderooz/eurorbit-weather-forecast.git\r\n    ```\r\n\r\n2. Navigate to the project directory:\r\n    ```bash\r\n    cd eurorbit-weather-forecast\r\n    ```\r\n\r\n3. Ensure you have the `city_coordinates.csv` file in the project directory with the following structure (without headers):\r\n    ```csv\r\n    lat,lon,city,country\r\n    52.5200,13.4050,Berlin,Germany\r\n    48.8566,2.3522,Paris,France\r\n    ```\r\n\r\n4. Ensure you have the necessary weather icons in an `icons` folder in the project directory. The icons should be named according to the weather conditions (e.g., `clear.png`, `partly-cloudy.png`).\r\n\r\n5. Open `index.html` in your web browser.\r\n\r\n## Usage\r\n1. Open the `index.html` file in your web browser.\r\n2. Select a location from the dropdown menu.\r\n3. View the weather forecast for the selected city.\r\n\r\n## Project Structure\r\n```\r\neurorbit-weather-forecast/\r\n├── css/\r\n│   └── style.css\r\n├── icons/\r\n│   ├── clear.png\r\n│   ├── cloudy.png\r\n│   ├── light-rain.png\r\n│   └── ... (other weather icons)\r\n├── js/\r\n│   └── main.js\r\n├── city_coordinates.csv\r\n├── index.html\r\n└── README.md\r\n```\r\n\r\n## License\r\nThis project is licensed under the MIT License. See the LICENSE file for more details.\r\r\n\r\n## Acknowledgments\r\n- Coursera Project Network for providing the course and guidance.\r\n- 7Timer API for weather data.\r\n\r\n## Author\r\n- Ranit Saha:Coderooz (viewersweb02@gmail.com)\r\n\r\r\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcoderooz%2Feurorbit-weather-forecast","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcoderooz%2Feurorbit-weather-forecast","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcoderooz%2Feurorbit-weather-forecast/lists"}