mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
Result images will be saved to a separate file with "_map" suffix instead of the main image.
Configure options:
| Name | Type | Default | Description |
|----------------|---------|-------------|-----------------------|
| map_overlay | Boolean | `false` | Draw countries border |
| cities_overlay | Mapped | `NONE` | Draw cities |
`cities_overlay`:
| Name | Type | Default | Description |
|----------------|---------|-------------|----------------------------------------------------------------------------|
| color | Array | `[0, 1, 0]` | RGB float-array (0.0 - 1.0) |
| font_size | Number | `50` | Cities font size |
| type | String | `capitals` | Cities type. See below |
| scale_rank | Number | `3` | **Only for `all` type**. 0-10. The more, the smaller cities will be drawn. |
Cities `type` is one of:
* `capitals` - Draw only Capitals
* `rcapitals` - Draw Capitals and Administrative centers
* `all` - Draw all cities by Scale Rank
Example:
```json
...
"map_overlay": true,
"cities_overlay": {
"color": [0.85, 1, 0],
"font_size": 24,
"type": "rcapitals",
"scale_rank": 6
}
...
```
|
||
|---|---|---|
| .. | ||
| maidenhead.c | ||
| maidenhead.h | ||
| map_drawer.cpp | ||
| map_drawer.h | ||
| shapefile.cpp | ||
| shapefile.h | ||