Replies: 2 comments 14 replies
-
Nor it's stored as mc=# SELECT
tags->boundary as boundary, tags->'maritime' as maritime,
admin_level
FROM planet_osm_roads
WHERE boundary = 'administrative'
-- was: IN ('2', '3')
AND admin_level = '2'
AND osm_id < 0;
boundary | maritime | admin_level
----------+----------+-------------
| | 2
| | 2
| | 2
| | 2
(4 rows) and why do I get 4 rows? |
Beta Was this translation helpful? Give feedback.
4 replies
-
Ok, I know this was closed, but the only answer I got was why I was getting two borders instead of one. But the original question remains: why some tags are not imported? I just found the same again today. While trying to report another instance of this, I got a question about Exhibit A: https://www.openstreetmap.org/way/983355274 Exhibit B:
This way is 3yo and I reimported Europe recently, and been updating it daily. |
Beta Was this translation helpful? Give feedback.
10 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I'm not 100% sure this is a bug, so I start this as a discussion first.
I have a osm-carto fork where I specialize the rendering to my personal needs. The latest change I wanted to do was to not render the maritime borders, so I modified the country border query to this:
just to find that
maritime
is not in thetags
:(granted, one has
maritime=yes
and the otherborder=maritime
, but bare with me).I import that
.pbf
:and check if it imported:
Am I doing something wrong or is this a bug?
Hint: I made no changes to
openstreetmap-carto.lua
, so this is not being stored as a column:Beta Was this translation helpful? Give feedback.
All reactions