Update documentation for global tide prediction support

Co-authored-by: SpudGunMan <12676665+SpudGunMan@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot]
2025-10-29 03:58:26 +00:00
parent f40d5b24f6
commit fc5476b5dd
2 changed files with 4 additions and 2 deletions

View File

@@ -40,7 +40,7 @@ Mesh Bot is a feature-rich Python bot designed to enhance your [Meshtastic](http
- **New Node Greetings**: Automatically greet new nodes via text.
### Interactive AI and Data Lookup
- **Weather, Earthquake, River, and Tide Data**: Get local alerts and info from NOAA/USGS; uses Open-Meteo for areas outside NOAA coverage.
- **Weather, Earthquake, River, and Tide Data**: Get local alerts and info from NOAA/USGS; uses Open-Meteo for areas outside NOAA coverage. Global tide predictions available via tidepredict library for worldwide locations.
- **Wikipedia Search**: Retrieve summaries from Wikipedia.
- **OpenWebUI, Ollama LLM Integration**: Query the [Ollama](https://github.com/ollama/ollama/tree/main/docs) AI for advanced responses. Supports RAG (Retrieval Augmented Generation) with Wikipedia/Kiwix context and [OpenWebUI](https://github.com/open-webui/open-webui) integration for enhanced AI capabilities. [LLM Readme](modules/llm.md)
- **Satellite Passes**: Find upcoming satellite passes for your location.

View File

@@ -287,7 +287,7 @@ The system uses SQLite with four tables:
| `wxa` | NOAA alerts |
| `wxalert` | NOAA alerts (expanded) |
| `mwx` | NOAA Coastal Marine Forecast |
| `tide` | NOAA tide info |
| `tide` | Tide info (NOAA/tidepredict for global) |
| `riverflow` | NOAA river flow info |
| `earthquake` | USGS earthquake info |
| `valert` | USGS volcano alerts |
@@ -299,6 +299,8 @@ The system uses SQLite with four tables:
Configure in `[location]` section of `config.ini`.
**Note**: For global tide predictions outside the US, enable `useTidePredict = True` in `config.ini`. See [xtide.md](xtide.md) for setup details.
Certainly! Heres a README help section for your `mapHandler` command, suitable for users of your meshbot:
---