forked from organicmaps/organicmaps
[generator][python] Added example to README.
This commit is contained in:
parent
08d3fe39d9
commit
a2f0a23fa9
1 changed files with 27 additions and 3 deletions
|
@ -152,7 +152,7 @@ You can override this behavior with the option --order=/path/to/mwm_generation_o
|
|||
You can calculate this list yourself from the statistics, which is calculated with each generation.
|
||||
|
||||
### Examples
|
||||
#### Non-standard planet
|
||||
#### Non-standard planet with coastlines
|
||||
If you want to generate maps for Japan you must complete the following steps:
|
||||
1. Open https://download.geofabrik.de/asia/japan.html and copy url of osm.pbf and md5sum files.
|
||||
2. Edit ini file:
|
||||
|
@ -174,7 +174,6 @@ PLANET_MD5_URL: https://download.geofabrik.de/asia/japan-latest.osm.pbf.md5
|
|||
3. Run
|
||||
```sh
|
||||
python$ python3.6 -m maps_generator --countries="World, WorldCoasts, Japan_*" --skip="update_planet"
|
||||
|
||||
```
|
||||
You must skip the step of updating the planet, because it is a non-standard planet.
|
||||
#### Rebuild stages:
|
||||
|
@ -183,5 +182,30 @@ You must have previous generation. You may regenerate from stage routing only fo
|
|||
|
||||
```sh
|
||||
python$ python3.6 -m maps_generator -c --from_stage="routing" --countries="Japan_Kinki Region_Osaka_Osaka, Japan_Chugoku Region_Tottori"
|
||||
```
|
||||
##### Note: To generate maps with the coastline, you need more time and you need the original piece of the map to contain a continuous coastline.
|
||||
|
||||
```
|
||||
#### Non-standard planet without coastlines
|
||||
If you want to generate maps for Moscow you must complete the following steps:
|
||||
1. Open https://download.geofabrik.de/russia/central-fed-district.html and copy url of osm.pbf and md5sum files.
|
||||
2. Edit ini file:
|
||||
```sh
|
||||
maps_generator$ vim var/etc/map_generator.ini
|
||||
```
|
||||
|
||||
```ini
|
||||
[Main]
|
||||
...
|
||||
DEBUG: 0
|
||||
...
|
||||
[External]
|
||||
PLANET_URL: https://download.geofabrik.de/russia/central-fed-district-latest.osm.pbf
|
||||
PLANET_MD5_URL: https://download.geofabrik.de/russia/central-fed-district-latest.osm.pbf.md5
|
||||
...
|
||||
```
|
||||
|
||||
3. Run
|
||||
```sh
|
||||
python$ python3.6 -m maps_generator --countries="Russia_Moscow" --skip="update_planet, coastline"
|
||||
```
|
||||
You must skip the step of updating the planet, because it is a non-standard planet
|
Loading…
Add table
Reference in a new issue