{"id":20354613,"url":"https://github.com/alexlopezdevelop/weatherapp","last_synced_at":"2025-08-18T16:07:33.304Z","repository":{"id":178082319,"uuid":"661327087","full_name":"AlexLopezDevelop/weatherapp","owner":"AlexLopezDevelop","description":null,"archived":false,"fork":false,"pushed_at":"2024-10-28T08:04:47.000Z","size":1502,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-04T16:48:37.955Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Swift","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/AlexLopezDevelop.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2023-07-02T13:55:59.000Z","updated_at":"2024-10-28T08:04:52.000Z","dependencies_parsed_at":null,"dependency_job_id":"8bcee6f3-d3ba-47e3-84ba-778968479097","html_url":"https://github.com/AlexLopezDevelop/weatherapp","commit_stats":null,"previous_names":["alexlopezdevelop/weatherapp"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/AlexLopezDevelop/weatherapp","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlexLopezDevelop%2Fweatherapp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlexLopezDevelop%2Fweatherapp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlexLopezDevelop%2Fweatherapp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlexLopezDevelop%2Fweatherapp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AlexLopezDevelop","download_url":"https://codeload.github.com/AlexLopezDevelop/weatherapp/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AlexLopezDevelop%2Fweatherapp/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271019686,"owners_count":24685713,"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","status":"online","status_checked_at":"2025-08-18T02:00:08.743Z","response_time":89,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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-11-14T23:09:10.989Z","updated_at":"2025-08-18T16:07:33.269Z","avatar_url":"https://github.com/AlexLopezDevelop.png","language":"Swift","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Weather App\n\nThis is a weather application developed in Swift that queries a weather service to obtain the user's current location and displays the weather forecast in the device's language.\n\n\u003cimg height=\"400\" alt=\"weatherapp\" src=\"https://github.com/AlexLopezDevelop/weatherapp/assets/32960226/a7d84a6c-0a20-435e-ac36-af1f28ca6c5c\"\u003e\n\u003cimg height=\"400\" alt=\"weatherapp\" src=\"https://github.com/AlexLopezDevelop/weatherapp/assets/32960226/710364f7-0ac7-48cc-b939-b566b0a4853a\"\u003e\n\u003cimg height=\"400\" alt=\"weatherapp\" src=\"https://github.com/AlexLopezDevelop/weatherapp/assets/32960226/37c93703-db83-4ad4-9b15-98e56b142cd8\"\u003e\n\u003cimg height=\"400\" alt=\"weatherapp\" src=\"https://github.com/AlexLopezDevelop/weatherapp/assets/32960226/a7ed5552-0bdf-40f1-927b-aff28ae019c9\"\u003e\n\n## APIs Used\n\nThis application utilizes the [OpenWeatherMap One Call API](https://openweathermap.org/api/one-call-api) to access weather information.\n\n## Requirements\n\n- Swift 5.0 or later\n- Xcode 11.0 or later\n\n## Installation\n\n1. Clone the repository to your local machine.\n2. Open the project in Xcode.\n3. In the project navigator, locate the `Development.xconfig` file.\n4. Open the `Development.xconfig` file and add your API key from [OpenWeatherMap](https://openweathermap.org/api/one-call-api) in the following format:\n\n    ```\n    API_KEY = // Add your API key\n    ```\n\n   Replace `// Add your API key` with your actual API key.\n\n5. Save the `Development.xconfig` file.\n\n6. Build and run the application in Xcode.\n\n## Language Support\n\nThe Weather App supports the following languages:\n\n- English 🇺🇸\n- Spanish 🇪🇸\n- French 🇫🇷\n\nTo change the language of the app, ensure that your device is set to one of the supported languages.\n\n\n## License\n\nThis project is licensed under the [MIT License](LICENSE).\n\n## Comments\n\n- `enableLocationView` has been created to showcase how to build a view without using Storyboards. However, the rest of the project has been developed using Storyboards and XIBs, as they are what I'm most accustomed to and allowed me to progress more quickly.\n\n- No external libraries have been used, so there was no need for CocoaPods. In my opinion, it's generally better to rely on the tools provided by the Swift API, as it avoids dependency issues that may arise when migrating the app to a newer Swift version. However, in the part where obtaining the city name from the user's location, it could be improved by implementing a library that handles all possible cases. Unusual scenarios have been tested, such as locations in the northern part of Greenland, where the city name may not be available due to limited data.\n\n- The `.xcconfig` file has been added to store the ApiKey, providing convenience for configuration purposes.\n\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falexlopezdevelop%2Fweatherapp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Falexlopezdevelop%2Fweatherapp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Falexlopezdevelop%2Fweatherapp/lists"}