Betrachte 3 Beiträge - 1 bis 3 (von insgesamt 3)
  • Autor
    Beiträge
  • #23247
    Avatar-FotoR5O.nl
    Teilnehmer

    I wonder whether OAM also support this tag:
    cycleway:right=lane

    I just adjusted cycling lanes here:
    https://www.openstreetmap.org/changeset/58496707#map=14/51.5793/5.0148
    It used to have this tag:
    cycleway=lane
    which resulted in a lot of cycle lanes in OAM on both sides of both 1-way lanes: 4 cycle lanes in total, as seen here:
    https://photos.app.goo.gl/tsiOhfYo8b25lPzO2
    After consulting with the senior OSM guys they proposed to use tag cycleway:right=lane
    Now I hope that the OAM map&theme also recognizes this tag.

    #23260
    Avatar-FotoChristianK
    Administrator

    Yes, this tag is supported.
    However the situation with these lanes is complicated and we had to transform these tags.
    So please take a look at this tagtransform rule:

    
    	<!-- cycleway lanes/tracks -->
    	<translation>
    		<name>unify oneway:bicycle=no and transfor to oneway:bicycle=ow_bic_no</name>
    		<description>unify oneway:bicycle=no</description>
    		<match mode="and">
    			<match mode="or" type="way">
    				<tag k="oneway"  v="yes"/>
    			</match>	
    			<match mode="or" type="way">
    				<tag k="cycleway" v="opposite"/>
    				<tag k="cycleway" v="opposite_track"/>
    				<tag k="cycleway" v="opposite_lane"/>
    				<tag k="cycleway(:left|:right)" v="opposite_track"/>
    				<tag k="cycleway(:left|:right)" v="opposite_lane"/>
    				<tag k="oneway:bicycle" v="no"/>
    			</match>
    		</match>			
    		<output>
    			<copy-all/>
    			<tag k="oneway:bicycle" v="ow_bic_no"/>
    		</output>
    	</translation>	
    
    	<translation>
    		<name>cycleway lanes</name>
    		<description>cycleway lanes</description>
    		<match mode="or" type="way">
    			<match mode="and" type="way">
    				<tag k="cycleway:left" v="lane"/>
    				<tag k="cycleway:right" v="lane"/>
    			</match>			
    			<match mode="and" type="way">
    				<tag k="cycleway:left" v="opposite_lane"/>
    				<tag k="cycleway:right" v="opposite_lane"/>
    			</match>			
    		</match>
    		<output>
    			<copy-unmatched/>
    			<tag k="cycleway_lane" v="cw_lane_both"/>
    		</output>
    	</translation>	
    
    	<translation>
    		<name>cycleway tracks</name>
    		<description>cycleway lanes</description>
    		<match mode="or" type="way">
    			<match mode="and" type="way">
    				<tag k="cycleway:left" v="track"/>
    				<tag k="cycleway:right" v="track"/>
    			</match>			
    			<match mode="and" type="way">
    				<tag k="cycleway:left" v="opposite_track"/>
    				<tag k="cycleway:right" v="opposite_track"/>
    			</match>			
    		</match>		
    		<output>
    			<copy-unmatched/>
    			<tag k="cycleway_track" v="cw_track_both"/>
    		</output>
    	</translation>			
    
    	<translation>
    		<name>cycleway lanes</name>
    		<description>cycleway lanes</description>
    		<match type="way">
    			<tag k="cycleway" v="lane"/>
    		</match>
    		<output>
    			<copy-all/>
    			<tag k="cycleway_lane" v="cw_lane_both"/>
    		</output>
    	</translation>	
    
    	<translation>
    		<name>cycleway lanes</name>
    		<description>cycleway lanes</description>
    		<match type="way">
    			<tag k="cycleway:right" v="lane"/>
    		</match>
    		<output>
    			<copy-all/>
    			<tag k="cycleway_lane" v="cw_lane_right"/>
    		</output>
    	</translation>	
    
    	<translation>
    		<name>cycleway lanes</name>
    		<description>cycleway lanes</description>
    		<match type="way">
    			<tag k="cycleway:left" v="lane"/>
    		</match>			
    		<output>
    			<copy-all/>
    			<tag k="cycleway_lane" v="cw_lane_left"/>
    		</output>
    	</translation>	
    
    	<translation>
    		<name>cycleway tracks</name>
    		<description>cycleway tracks</description>
    		<match type="way">
    			<tag k="cycleway" v="track"/>
    		</match>
    		<output>
    			<copy-all/>
    			<tag k="cycleway_track" v="cw_track_both"/>
    		</output>
    	</translation>	
    
    	<translation>
    		<name>cycleway tracks</name>
    		<description>cycleway tracks</description>
    		<match type="way">
    			<tag k="cycleway:right" v="track"/>
    		</match>
    		<output>
    			<copy-all/>
    			<tag k="cycleway_track" v="cw_track_right"/>
    		</output>
    	</translation>	
    
    	<translation>
    		<name>cycleway tracks</name>
    		<description>cycleway tracks</description>
    		<match type="way">
    			<tag k="cycleway:left" v="track"/>
    		</match>			
    		<output>
    			<copy-all/>
    			<tag k="cycleway_track" v="cw_track_left"/>
    		</output>
    	</translation>	
    
    

    Best regards
    Christian

    #23266
    Avatar-FotoTobias
    Administrator

    It’s included in Elevate, maybe you have to switch to cycling or MTB mapstyle.

    Developer of Elevate mapstyle

Betrachte 3 Beiträge - 1 bis 3 (von insgesamt 3)
  • Sie müssen angemeldet sein, um zu diesem Thema eine Antwort verfassen zu können.