[generator][python] Fixed typos.

This commit is contained in:
Maksim Andrianov 2019-06-26 19:13:03 +03:00 committed by gmoryes
parent f93cc4cc27
commit b6132e594c
2 changed files with 26 additions and 6 deletions

View file

@ -10,12 +10,11 @@ Further we will call them world and coastlines.
## Setup
You must have Python version not lower than 3.6 and complete the following steps:
0. Change directory:
0. [Build and install generator_tool.](https://github.com/mapsme/omim/blob/master/docs/INSTALL.md#maps-generator)
1. Change directory:
```sh
$ cd omim/tools/python/maps_generator
```
1. [Build and install generator_tool.](https://github.com/mapsme/omim/blob/master/docs/INSTALL.md#maps-generator)
2. Install dependencies:
```sh
maps_generator$ pip3 install -r requirements.txt
@ -139,7 +138,8 @@ optional arguments:
countries_txt, external_resources, localads,
statistics, cleanup, index, ugc, popularity, srtm,
routing, routing_transit.
--coasts Build WorldCoasts.raw and WorldCoasts.rawgeom files
--coasts Build only WorldCoasts.raw and WorldCoasts.rawgeom
files
--production Build production maps. In another case, 'osm only
maps' are built - maps without additional data and
advertising.

View file

@ -17,7 +17,7 @@ logger = logging.getLogger("maps_generator")
examples = """Examples:
1) Non-standard planet
1) 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.
@ -35,7 +35,7 @@ examples = """Examples:
...
3. Run
python$ python3.6 -m maps_generator --countries="World, WorldCoasts, Japan_*" --skip="update_planet"
python$ python3.6 -m maps_generator --countries="World, WorldCoasts, Japan_*"
You must skip the step of updating the planet, because it is a non-standard planet.
2) Rebuild stages:
@ -43,6 +43,26 @@ examples = """Examples:
You must have previous generation. You may regenerate from stage routing only for two mwms:
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 planet to contain a continuous coastline.
3) 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:
maps_generator$ vim var/etc/map_generator.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
python$ python3.6 -m maps_generator --countries="Russia_Moscow" --skip="coastline"
"""