/* Copyright (c) 2016, KlokanTech.com & OpenMapTiles contributors. All rights reserved. Code license: BSD 3-Clause License Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. Design license: CC-BY 4.0 See https://github.com/openmaptiles/openmaptiles/blob/master/LICENSE.md for details on usage */ package com.onthegomap.flatmap.basemap.layers; import static com.onthegomap.flatmap.basemap.layers.Transportation.highwayClass; import static com.onthegomap.flatmap.basemap.layers.Transportation.highwaySubclass; import static com.onthegomap.flatmap.basemap.layers.Transportation.isFootwayOrSteps; import static com.onthegomap.flatmap.basemap.util.Utils.brunnel; import static com.onthegomap.flatmap.basemap.util.Utils.coalesce; import static com.onthegomap.flatmap.basemap.util.Utils.nullIf; import static com.onthegomap.flatmap.basemap.util.Utils.nullIfEmpty; import static com.onthegomap.flatmap.util.MemoryEstimator.CLASS_HEADER_BYTES; import static com.onthegomap.flatmap.util.MemoryEstimator.POINTER_BYTES; import static com.onthegomap.flatmap.util.MemoryEstimator.estimateSize; import com.onthegomap.flatmap.FeatureCollector; import com.onthegomap.flatmap.FeatureMerge; import com.onthegomap.flatmap.VectorTile; import com.onthegomap.flatmap.basemap.BasemapProfile; import com.onthegomap.flatmap.basemap.generated.OpenMapTilesSchema; import com.onthegomap.flatmap.basemap.generated.Tables; import com.onthegomap.flatmap.basemap.util.LanguageUtils; import com.onthegomap.flatmap.config.FlatmapConfig; import com.onthegomap.flatmap.geo.GeoUtils; import com.onthegomap.flatmap.geo.GeometryException; import com.onthegomap.flatmap.reader.SourceFeature; import com.onthegomap.flatmap.reader.osm.OsmElement; import com.onthegomap.flatmap.reader.osm.OsmReader; import com.onthegomap.flatmap.reader.osm.OsmRelationInfo; import com.onthegomap.flatmap.stats.Stats; import com.onthegomap.flatmap.util.MemoryEstimator; import com.onthegomap.flatmap.util.Parse; import com.onthegomap.flatmap.util.Translations; import com.onthegomap.flatmap.util.ZoomFunction; import java.util.Comparator; import java.util.List; import java.util.Map; import java.util.concurrent.atomic.AtomicBoolean; import java.util.function.Function; import java.util.regex.Matcher; import java.util.regex.Pattern; import org.locationtech.jts.geom.Geometry; import org.locationtech.jts.geom.prep.PreparedGeometry; import org.locationtech.jts.geom.prep.PreparedGeometryFactory; import org.slf4j.Logger; import org.slf4j.LoggerFactory; /** * Defines the logic for generating map elements for road, shipway, rail, and path names in the {@code * transportation_name} layer from source features. *

* This class is ported to Java from OpenMapTiles * transportation_name sql files. */ public class TransportationName implements OpenMapTilesSchema.TransportationName, Tables.OsmHighwayLinestring.Handler, BasemapProfile.NaturalEarthProcessor, BasemapProfile.FeaturePostProcessor, BasemapProfile.OsmRelationPreprocessor, BasemapProfile.IgnoreWikidata { /* * Generate road names from OSM data. Route network and ref are copied * from relations that roads are a part of - except in Great Britain which * uses a naming convention instead of relations. * * The goal is to make name linestrings as long as possible to give clients * the best chance of showing road names at different zoom levels, so do not * limit linestrings by length at process time and merge them at tile * render-time. * * Any 3-way nodes and intersections break line merging so set the * transportation_name_limit_merge argument to true to add temporary * "is link" and "relation" keys to prevent opposite directions of a * divided highway or on/off ramps from getting merged for main highways. */ // extra temp key used to group on/off-ramps separately from main highways private static final String LINK_TEMP_KEY = "__islink"; private static final String RELATION_ID_TEMP_KEY = "__relid"; private static final Logger LOGGER = LoggerFactory.getLogger(TransportationName.class); private static final Pattern GREAT_BRITAIN_REF_NETWORK_PATTERN = Pattern.compile("^[AM][0-9AM()]+"); private static final ZoomFunction.MeterToPixelThresholds MIN_LENGTH = ZoomFunction.meterThresholds() .put(6, 20_000) .put(7, 20_000) .put(8, 14_000) .put(9, 8_000) .put(10, 8_000) .put(11, 8_000); private static final Comparator RELATION_ORDERING = Comparator .comparingInt(r -> r.network.ordinal()) // TODO also compare network string? .thenComparingInt(r -> r.ref.length()) .thenComparing(RouteRelation::ref); private final Map MINZOOMS; private final boolean brunnel; private final boolean sizeForShield; private final boolean limitMerge; private final Stats stats; private final FlatmapConfig config; private final AtomicBoolean loggedNoGb = new AtomicBoolean(false); private PreparedGeometry greatBritain = null; public TransportationName(Translations translations, FlatmapConfig config, Stats stats) { this.config = config; this.stats = stats; this.brunnel = config.arguments().getBoolean( "transportation_name_brunnel", "transportation_name layer: set to false to omit brunnel and help merge long highways", true ); this.sizeForShield = config.arguments().getBoolean( "transportation_name_size_for_shield", "transportation_name layer: allow road names on shorter segments (ie. they will have a shield)", false ); this.limitMerge = config.arguments().getBoolean( "transportation_name_limit_merge", "transportation_name layer: limit merge so we don't combine different relations to help merge long highways", false ); boolean z13Paths = config.arguments().getBoolean( "transportation_z13_paths", "transportation(_name) layer: show paths on z13", false ); MINZOOMS = Map.of( FieldValues.CLASS_TRACK, 14, FieldValues.CLASS_PATH, z13Paths ? 13 : 14, FieldValues.CLASS_MINOR, 13, FieldValues.CLASS_TRUNK, 8, FieldValues.CLASS_MOTORWAY, 6 // default: 12 ); } @Override public void processNaturalEarth(String table, SourceFeature feature, FeatureCollector features) { if ("ne_10m_admin_0_countries".equals(table) && feature.hasTag("iso_a2", "GB")) { // multiple threads call this method concurrently, GB polygon *should* only be found // once, but just to be safe synchronize updates to that field synchronized (this) { try { Geometry boundary = feature.polygon().buffer(GeoUtils.metersToPixelAtEquator(0, 10_000) / 256d); greatBritain = PreparedGeometryFactory.prepare(boundary); } catch (GeometryException e) { LOGGER.error("Failed to get Great Britain Polygon: " + e); } } } } @Override public List preprocessOsmRelation(OsmElement.Relation relation) { if (relation.hasTag("route", "road")) { RouteNetwork networkType = null; String network = relation.getString("network"); String ref = relation.getString("ref"); if ("US:I".equals(network)) { networkType = RouteNetwork.US_INTERSTATE; } else if ("US:US".equals(network)) { networkType = RouteNetwork.US_HIGHWAY; } else if (network != null && network.length() == 5 && network.startsWith("US:")) { networkType = RouteNetwork.US_STATE; } else if (network != null && network.startsWith("CA:transcanada")) { networkType = RouteNetwork.CA_TRANSCANADA; } if (networkType != null) { return List.of(new RouteRelation(coalesce(ref, ""), networkType, relation.id())); } } return null; } @Override public void process(Tables.OsmHighwayLinestring element, FeatureCollector features) { List> relations = element.source() .relationInfo(RouteRelation.class); String ref = element.ref(); RouteRelation relation = getRouteRelation(element, relations, ref); if (relation != null && nullIfEmpty(relation.ref) != null) { ref = relation.ref; } String name = nullIfEmpty(element.name()); ref = nullIfEmpty(ref); String highway = nullIfEmpty(element.highway()); String highwayClass = highwayClass(element.highway(), null, element.construction(), element.manMade()); if (element.isArea() || highway == null || highwayClass == null || (name == null && ref == null)) { return; } String baseClass = highwayClass.replace("_construction", ""); int minzoom = MINZOOMS.getOrDefault(baseClass, 12); boolean isLink = highway.endsWith("_link"); if (isLink) { minzoom = Math.max(13, minzoom); } FeatureCollector.Feature feature = features.line(LAYER_NAME) .setBufferPixels(BUFFER_SIZE) .setBufferPixelOverrides(MIN_LENGTH) // TODO abbreviate road names - can't port osml10n because it is AGPL .putAttrs(LanguageUtils.getNamesWithoutTranslations(element.source().tags())) .setAttr(Fields.REF, ref) .setAttr(Fields.REF_LENGTH, ref != null ? ref.length() : null) .setAttr(Fields.NETWORK, (relation != null && relation.network != null) ? relation.network.name : ref != null ? "road" : null) .setAttr(Fields.CLASS, highwayClass) .setAttr(Fields.SUBCLASS, highwaySubclass(highwayClass, null, highway)) .setMinPixelSize(0) .setSortKey(element.zOrder()) .setMinZoom(minzoom); if (brunnel) { feature.setAttr(Fields.BRUNNEL, brunnel(element.isBridge(), element.isTunnel(), element.isFord())); } /* * to help group roads into longer segments, add temporary tags to limit which segments get grouped together. Since * a divided highway typically has a separate relation for each direction, this ends up keeping segments going * opposite directions group getting grouped together and confusing the line merging process */ if (limitMerge) { feature .setAttr(LINK_TEMP_KEY, isLink ? 1 : 0) .setAttr(RELATION_ID_TEMP_KEY, relation == null ? null : relation.id); } if (isFootwayOrSteps(highway)) { feature .setAttrWithMinzoom(Fields.LAYER, nullIf(element.layer(), 0), 12) .setAttrWithMinzoom(Fields.LEVEL, Parse.parseLongOrNull(element.source().getTag("level")), 12) .setAttrWithMinzoom(Fields.INDOOR, element.indoor() ? 1 : null, 12); } } private RouteRelation getRouteRelation(Tables.OsmHighwayLinestring element, List> relations, String ref) { RouteRelation relation = relations.stream() .map(OsmReader.RelationMember::relation) .min(RELATION_ORDERING) .orElse(null); if (relation == null && ref != null) { // GB doesn't use regular relations like everywhere else, so if we are // in GB then use a naming convention instead. Matcher refMatcher = GREAT_BRITAIN_REF_NETWORK_PATTERN.matcher(ref); if (refMatcher.find()) { if (greatBritain == null) { if (!loggedNoGb.get() && loggedNoGb.compareAndSet(false, true)) { LOGGER.warn("No GB polygon for inferring route network types"); } } else { try { Geometry wayGeometry = element.source().worldGeometry(); if (greatBritain.intersects(wayGeometry)) { RouteNetwork networkType = "motorway".equals(element.highway()) ? RouteNetwork.GB_MOTORWAY : RouteNetwork.GB_TRUNK; relation = new RouteRelation(refMatcher.group(), networkType, 0); } } catch (GeometryException e) { e.log(stats, "omt_transportation_name_gb_test", "Unable to test highway against GB route network: " + element.source().id()); } } } } return relation; } @Override public List postProcess(int zoom, List items) { double tolerance = config.tolerance(zoom); double minLength = coalesce(MIN_LENGTH.apply(zoom), 0).doubleValue(); // TODO tolerances: // z6: (tolerance: 500) // z7: (tolerance: 200) // z8: (tolerance: 120) // z9-11: (tolerance: 50) Function, Double> lengthLimitCalculator = zoom >= 14 ? (p -> 0d) : minLength > 0 ? (p -> minLength) : this::getMinLengthForName; var result = FeatureMerge.mergeLineStrings(items, lengthLimitCalculator, tolerance, BUFFER_SIZE); if (limitMerge) { // remove temp keys that were just used to improve line merging for (var feature : result) { feature.attrs().remove(LINK_TEMP_KEY); feature.attrs().remove(RELATION_ID_TEMP_KEY); } } return result; } /** Returns the minimum pixel length that a name will fit into. */ private double getMinLengthForName(Map attrs) { Object ref = attrs.get(Fields.REF); Object name = coalesce(attrs.get(Fields.NAME), ref); return (sizeForShield && ref instanceof String) ? 6 : name instanceof String str ? str.length() * 6 : Double.MAX_VALUE; } private enum RouteNetwork { US_INTERSTATE("us-interstate"), US_HIGHWAY("us-highway"), US_STATE("us-state"), CA_TRANSCANADA("ca-transcanada"), GB_MOTORWAY("gb-motorway"), GB_TRUNK("gb-trunk"); final String name; RouteNetwork(String name) { this.name = name; } } /** Information extracted from route relations to use when processing ways in that relation. */ private static record RouteRelation( String ref, RouteNetwork network, @Override long id ) implements OsmRelationInfo { @Override public long estimateMemoryUsageBytes() { return CLASS_HEADER_BYTES + POINTER_BYTES + estimateSize(ref) + POINTER_BYTES + // network MemoryEstimator.estimateSizeLong(id); } } }