{"id":18033946,"url":"https://github.com/miolab/weather_cast_angle","last_synced_at":"2026-02-25T16:34:15.449Z","repository":{"id":209265620,"uuid":"721097029","full_name":"miolab/weather_cast_angle","owner":"miolab","description":"App of provide comprehensive information on tide levels, wind, weather, and more to help a fishing plan.","archived":false,"fork":false,"pushed_at":"2025-03-23T21:07:15.000Z","size":883,"stargazers_count":2,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-18T06:44:38.979Z","etag":null,"topics":["cachex","docker","elixir","phoenix","tailwindcss"],"latest_commit_sha":null,"homepage":"","language":"Elixir","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/miolab.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,"zenodo":null}},"created_at":"2023-11-20T10:54:24.000Z","updated_at":"2025-03-21T08:38:18.000Z","dependencies_parsed_at":"2024-12-13T10:19:15.322Z","dependency_job_id":"781c4a73-806f-414f-bcae-c5630fa1dbe7","html_url":"https://github.com/miolab/weather_cast_angle","commit_stats":null,"previous_names":["miolab/weather_cast_angle"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/miolab/weather_cast_angle","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/miolab%2Fweather_cast_angle","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/miolab%2Fweather_cast_angle/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/miolab%2Fweather_cast_angle/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/miolab%2Fweather_cast_angle/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/miolab","download_url":"https://codeload.github.com/miolab/weather_cast_angle/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/miolab%2Fweather_cast_angle/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29830267,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-25T15:41:19.027Z","status":"ssl_error","status_checked_at":"2026-02-25T15:40:47.150Z","response_time":61,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["cachex","docker","elixir","phoenix","tailwindcss"],"created_at":"2024-10-30T11:09:03.628Z","updated_at":"2026-02-25T16:34:15.435Z","avatar_url":"https://github.com/miolab.png","language":"Elixir","funding_links":[],"categories":[],"sub_categories":[],"readme":"# WeatherCastAngle\n\n![elixir ci workflow](https://github.com/miolab/weather_cast_angle/actions/workflows/elixir-ci.yml/badge.svg)\n![docker build workflow](https://github.com/miolab/weather_cast_angle/actions/workflows/docker-build.yml/badge.svg)\n\n## Overview\n\nThis app is specifically designed to provide comprehensive information on tide levels, wind, weather, and more to help a fishing plan. :fish:\n\n## Features\n\n- Screenshot during development;\n\n  | mobile                                                                                                                                      |\n  | ------------------------------------------------------------------------------------------------------------------------------------------- |\n  | \u003cimg width=\"350\" alt=\"screenshot_during_development\" src=\"https://github.com/user-attachments/assets/0159b371-04ec-49db-b4f0-8fe8a208d5b9\"\u003e |\n\n- The information provided by this application;\n\n  - Tide graph\n  - Weather\n  - Wind speed and direction\n  - Temperature\n  - Moon age\n  - Humidity\n  - Tide name (e.g. 大潮, 小潮, 長潮, etc.)\n  - Seawater temperature\n  - Sunrise and Sunset time\n\n### Source\n\n- Marine information: Japan Meteorological Agency https://www.jma.go.jp/jma/kishou/info/coment.html\n  - https://www.jma.go.jp/jma/menu/menureport.html\n- Weather information: OpenWeather https://openweathermap.org/full-price\n  - Current weather data: https://openweathermap.org/current\n  - 5 day weather forecast: https://openweathermap.org/forecast5\n- Tide names classification: calculate using the difference in ecliptic longitude based on the MIRC method.\n- Moon information: calculate using PyEphem astronomy library for Python https://rhodesmill.org/pyephem/\n\n### Disclaimer\n\n- This repository and application are designed for **personal use** only.\n- The use of this app is at your own risk. We assume no liability for any outcomes resulting from its use.\n\n---\n\n## Development information\n\n### Pre-required\n\nCan build the Docker image and launch the application using the following commands:\n\n- Prepare `.env` file and set [OpenWeather](https://openweathermap.org/) API key (required)\n\n  ```sh\n  cp .env.sample .env\n  ```\n\n- Run `mix git_hooks.install` to prepare local development\n\n- Run `mix setup` to install and setup dependencies\n\n### Start this application using docker container\n\nTo start the Phoenix server,\n\n- Build the application container\n\n  ```sh\n  docker build -t weather_cast_angle .\n  ```\n\n  - For **development**, and if `docker compose` command is available, the following will work instead.\n\n    ```sh\n    docker compose build\n    ```\n\n- Start Phoenix endpoint with `mix phx.server` or inside IEx with `iex -S mix phx.server` using docker;\n\n  ```sh\n  docker run --rm -p 4000:4000 \\\n  -v $(pwd):/app \\\n  -e OPEN_WEATHER_API_KEY=$(cat .env | grep OPEN_WEATHER_API_KEY | cut -d '=' -f2) \\\n  --name weather_cast_angle \\\n  weather_cast_angle\n  ```\n\n  - For **development**, and if `docker compose` command is available, the following will work instead.\n\n    ```sh\n    docker compose up\n    ```\n\n- If want to run `iex -S mix`;\n\n  ```sh\n  docker exec -it weather_cast_angle iex -S mix\n  ```\n\n### Setting Up npm Execution Environment for Local Development\n\nIn local testing and development, an **npm** execution environment may be required for tasks such as installing **JavaScript libraries** (e.g., chart.js). The use of **nodenv** is recommended for preparing this environment.\n\nTo install **nodenv**, refer to the official installation guide: [nodenv installation](https://github.com/nodenv/nodenv#installation).\n\nThe Node.js version specified in the .node-version file can be installed locally by executing the following command:\n\n```sh\nnodenv install\n```\n\nThis ensures the appropriate Node.js version is available for the development environment.\n\n### Other Phoenix Official References\n\nReady to run in production? Please [check our deployment guides](https://hexdocs.pm/phoenix/deployment.html).\n\n- Learn more\n  - Official website: https://www.phoenixframework.org/\n  - Guides: https://hexdocs.pm/phoenix/overview.html\n  - Docs: https://hexdocs.pm/phoenix\n  - Forum: https://elixirforum.com/c/phoenix-forum\n  - Source: https://github.com/phoenixframework/phoenix\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmiolab%2Fweather_cast_angle","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmiolab%2Fweather_cast_angle","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmiolab%2Fweather_cast_angle/lists"}