Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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}"
```