Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/codingjoe/m5maps
Map software for the M5 Paper ESP32 eInk development board
https://github.com/codingjoe/m5maps
esp32 m5paper maps osm
Last synced: 2 months ago
JSON representation
Map software for the M5 Paper ESP32 eInk development board
- Host: GitHub
- URL: https://github.com/codingjoe/m5maps
- Owner: codingjoe
- License: mit
- Created: 2022-01-09T17:43:59.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-01-22T13:53:16.000Z (11 months ago)
- Last Synced: 2024-10-05T04:55:35.039Z (3 months ago)
- Topics: esp32, m5paper, maps, osm
- Language: C++
- Homepage:
- Size: 17.6 KB
- Stars: 6
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# M5Maps
![IMG_20220228_164828](https://user-images.githubusercontent.com/1772890/206997306-7191108e-2354-4826-80c3-376ca505c70c.jpg)
Map software for the M5 Paper ESP32 eInk development board.
### Setup
```shell
pip install -r requirements.txt
```### Usage
Usage: `download_maps.py [OPTIONS] LON LAT DEST TILE_SRV...`
OSM example:
```shell
./download_maps.py 9.7947192 61.8789995 "/Volumes/NO NAME" "https://a.tile.opentopomap.org/{z}/{x}/{y}.png" "https://b.tile.opentopomap.org/{z}/{x}/{y}.png" "https://c.tile.opentopomap.org/{z}/{x}/{y}.png"
```Statkart example:
```shell
./download_maps.py 9.7947192 61.8789995 "/Volumes/NO NAME" "https://opencache.statkart.no/gatekeeper/gk/gk.open_gmaps?layers=topo4&zoom={z}&x={x}&y={y}" "https://opencache2.statkart.no/gatekeeper/gk/gk.open_gmaps?layers=topo4&zoom={z}&x={x}&y={y}" "https://opencache3.statkart.no/gatekeeper/gk/gk.open_gmaps?layers=topo4&zoom={z}&x={x}&y={y}"
```