Code Monkey home page Code Monkey logo

Comments (6)

YosefCohen877 avatar YosefCohen877 commented on June 10, 2024 1

i did it like this update to Hebrew and if not success to English -

docker run \
-e DOWNLOAD_PBF=https://download.geofabrik.de/asia/israel-and-palestine-latest.osm.pbf \
-v /home/debian/gis:/data/database/ \
overv/openstreetmap-tile-server \
import

docker run \
-p 8080:80 \
-v /home/debian/gis:/data/database/ \
-d overv/openstreetmap-tile-server \
run

docker exec -it name bash
psql -h localhost -U renderer gis
the password is - "renderer"

save it to "/convert.sql"

BEGIN;
UPDATE planet_osm_point SET name = COALESCE(tags->'name:he', tags->'name:en', name);
UPDATE planet_osm_line SET name = COALESCE(tags->'name:he', tags->'name:en', name);
UPDATE planet_osm_polygon SET name = COALESCE(tags->'name:he', tags->'name:en', name);
UPDATE planet_osm_roads SET name = COALESCE(tags->'name:he', tags->'name:en', name);
COMMIT;

\i /convert.sql

exit
docker restart name

from openstreetmap-tile-server.

Istador avatar Istador commented on June 10, 2024

No, there isn't an environment variable for it.

Also see #24

from openstreetmap-tile-server.

gsontheimer avatar gsontheimer commented on June 10, 2024

Well, then that would be something to add to the Docker code, so that an environment Variable could be used to force Latin names.

from openstreetmap-tile-server.

Istador avatar Istador commented on June 10, 2024

This will likely never happen, because we'd need to rewrite/adjust the SQL queries that are defined in the osm-carto repo for that. Doing that binds us harder to a specific version, which makes updating that dependency harder.

Maybe there is another style that already does this, that you can easily use instead?

from openstreetmap-tile-server.

Istador avatar Istador commented on June 10, 2024

BEGIN;
UPDATE planet_osm_point SET name = COALESCE(tags->'name:he', tags->'name:en', name);
UPDATE planet_osm_line SET name = COALESCE(tags->'name:he', tags->'name:en', name);
UPDATE planet_osm_polygon SET name = COALESCE(tags->'name:he', tags->'name:en', name);
UPDATE planet_osm_roads SET name = COALESCE(tags->'name:he', tags->'name:en', name);
COMMIT;

I just want to point out that this would not work with automatic updates turned on (you don't have it enabled in your posted commands, so that's fine), because the updates would revert it for changed entries. You'd need to re-run these update queries regularly or need to add them to the update script to be persistent.

from openstreetmap-tile-server.

YosefCohen877 avatar YosefCohen877 commented on June 10, 2024

BEGIN;
UPDATE planet_osm_point SET name = COALESCE(tags->'name:he', tags->'name:en', name);
UPDATE planet_osm_line SET name = COALESCE(tags->'name:he', tags->'name:en', name);
UPDATE planet_osm_polygon SET name = COALESCE(tags->'name:he', tags->'name:en', name);
UPDATE planet_osm_roads SET name = COALESCE(tags->'name:he', tags->'name:en', name);
COMMIT;

I just want to point out that this would not work with automatic updates turned on (you don't have it enabled in your posted commands, so that's fine), because the updates would revert it for changed entries. You'd need to re-run these update queries regularly or need to add them to the update script to be persistent.

My env is offline so its ok..

from openstreetmap-tile-server.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.