From 9600cecf009caae6925324b93a14ca861d0f0bb8 Mon Sep 17 00:00:00 2001 From: Tomas Pohanka Date: Mon, 28 Jun 2021 22:54:00 +0200 Subject: [PATCH] Add notice into README about import-osm (#1118) Adding information when run `make import-osm`. closes https://github.com/openmaptiles/openmaptiles/issues/1116 --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 95aa6a46..0e58e616 100644 --- a/README.md +++ b/README.md @@ -130,6 +130,13 @@ make import-wikidata ``` ### Work on Layers +Each time you modify a layer's `mapping.yaml` file or add new OSM tags, run `make` and `make import-osm` to recreate tables (potentially with additional data) in PostgreSQL. With the new data, there can be new Wikidata records also. +``` +make clean +make +make import-osm +make import-wikidata +``` Each time you modify layer SQL code run `make` and `make import-sql`.