2013-04-18 23:35:02 +02:00
|
|
|
package net.osmand.osm.edit;
|
|
|
|
|
2015-05-13 17:02:53 +02:00
|
|
|
import net.osmand.data.*;
|
2013-04-18 23:35:02 +02:00
|
|
|
import net.osmand.data.City.CityType;
|
2015-02-18 23:21:57 +01:00
|
|
|
import net.osmand.osm.MapPoiTypes;
|
2013-04-18 23:35:02 +02:00
|
|
|
import net.osmand.osm.MapRenderingTypes;
|
2015-02-18 23:21:57 +01:00
|
|
|
import net.osmand.osm.PoiCategory;
|
2013-04-18 23:35:02 +02:00
|
|
|
import net.osmand.osm.edit.OSMSettings.OSMTagKey;
|
|
|
|
import net.osmand.util.Algorithms;
|
|
|
|
|
2015-05-13 17:02:53 +02:00
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.Collection;
|
|
|
|
import java.util.List;
|
|
|
|
import java.util.Map;
|
|
|
|
|
2013-04-18 23:35:02 +02:00
|
|
|
public class EntityParser {
|
|
|
|
|
2013-11-13 14:13:48 +01:00
|
|
|
public static void parseMapObject(MapObject mo, Entity e) {
|
2013-04-18 23:35:02 +02:00
|
|
|
mo.setId(e.getId());
|
|
|
|
if(mo instanceof Amenity) {
|
|
|
|
mo.setId((e.getId() << 1) + ((e instanceof Node) ? 0 : 1));
|
|
|
|
}
|
|
|
|
if (mo.getName().length() == 0) {
|
|
|
|
mo.setName(e.getTag(OSMTagKey.NAME));
|
|
|
|
}
|
|
|
|
if (mo.getEnName().length() == 0) {
|
|
|
|
mo.setEnName(e.getTag(OSMTagKey.NAME_EN));
|
|
|
|
if (mo.getName().length() == 0) {
|
|
|
|
mo.setName(mo.getEnName());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (mo.getLocation() == null) {
|
2015-05-13 17:02:53 +02:00
|
|
|
LatLon l = null;
|
|
|
|
if (mo instanceof Building) {
|
|
|
|
l = findOnlyOneEntrance(e);
|
|
|
|
}
|
|
|
|
if (l == null) {
|
|
|
|
l = OsmMapUtils.getCenter(e);
|
|
|
|
}
|
2013-04-18 23:35:02 +02:00
|
|
|
if (l != null) {
|
|
|
|
mo.setLocation(l.getLatitude(), l.getLongitude());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (mo.getName().length() == 0) {
|
|
|
|
setNameFromOperator(mo, e);
|
|
|
|
}
|
|
|
|
if (mo.getName().length() == 0) {
|
|
|
|
setNameFromRef(mo, e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-13 17:02:53 +02:00
|
|
|
/**
|
|
|
|
* Finds the LatLon of a main entrance point. Main entrance here is the only entrance with value 'main'. If there is
|
|
|
|
* no main entrances, but there is only one entrance of any kind in given building, it is returned.
|
|
|
|
*
|
|
|
|
* @param e building entity
|
|
|
|
* @return main entrance point location or {@code null} if no entrance found or more than one entrance
|
|
|
|
*/
|
|
|
|
private static LatLon findOnlyOneEntrance(Entity e) {
|
|
|
|
if (e instanceof Node) {
|
|
|
|
return e.getLatLon();
|
|
|
|
}
|
|
|
|
List<Node> nodes = null;
|
|
|
|
if (e instanceof Way) {
|
|
|
|
nodes = ((Way) e).getNodes();
|
|
|
|
} else if (e instanceof Relation) {
|
2015-05-13 20:24:52 +02:00
|
|
|
nodes = new ArrayList<Node>();
|
2015-05-13 17:02:53 +02:00
|
|
|
for (Entity member : ((Relation) e).getMembers(null)) {
|
|
|
|
if (member instanceof Way) {
|
|
|
|
nodes.addAll(((Way) member).getNodes());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (nodes != null) {
|
|
|
|
int entrancesCount = 0;
|
|
|
|
Node mainEntrance = null;
|
|
|
|
Node lastEntrance = null;
|
|
|
|
|
|
|
|
for (Node node : nodes) {
|
|
|
|
String entrance = node.getTag(OSMTagKey.ENTRANCE);
|
|
|
|
if (entrance != null && !"no".equals(entrance)) {
|
|
|
|
if ("main".equals(entrance)) {
|
|
|
|
// main entrance should be only one
|
|
|
|
if (mainEntrance != null) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
mainEntrance = node;
|
|
|
|
}
|
|
|
|
entrancesCount++;
|
|
|
|
lastEntrance = node;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (mainEntrance != null) {
|
|
|
|
return mainEntrance.getLatLon();
|
|
|
|
}
|
|
|
|
if (entrancesCount == 1) {
|
|
|
|
return lastEntrance.getLatLon();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2013-04-18 23:35:02 +02:00
|
|
|
private static void setNameFromRef(MapObject mo, Entity e) {
|
|
|
|
String ref = e.getTag(OSMTagKey.REF);
|
|
|
|
if(ref != null){
|
|
|
|
mo.setName(ref);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private static void setNameFromOperator(MapObject mo,Entity e) {
|
|
|
|
String op = e.getTag(OSMTagKey.OPERATOR);
|
|
|
|
if (op == null)
|
|
|
|
return;
|
|
|
|
String ref = e.getTag(OSMTagKey.REF);
|
|
|
|
if (ref != null)
|
|
|
|
op += " [" + ref + "]";
|
|
|
|
mo.setName(op);
|
|
|
|
}
|
|
|
|
|
2015-02-18 23:21:57 +01:00
|
|
|
public static Amenity parseAmenity(Entity entity, PoiCategory type, String subtype, Map<String, String> tagValues,
|
2013-11-30 20:44:07 +01:00
|
|
|
MapRenderingTypes types) {
|
2013-04-18 23:35:02 +02:00
|
|
|
Amenity am = new Amenity();
|
2013-11-13 14:13:48 +01:00
|
|
|
parseMapObject(am, entity);
|
2013-11-30 20:44:07 +01:00
|
|
|
if(tagValues == null) {
|
|
|
|
tagValues = entity.getTags();
|
|
|
|
}
|
2013-04-18 23:35:02 +02:00
|
|
|
am.setType(type);
|
|
|
|
am.setSubType(subtype);
|
2015-02-18 23:21:57 +01:00
|
|
|
AmenityType at = AmenityType.findOrCreateTypeNoReg(type.getKeyName());
|
|
|
|
am.setAdditionalInfo(types.getAmenityAdditionalInfo(tagValues, at, subtype));
|
2015-02-02 09:24:59 +01:00
|
|
|
String wbs = getWebSiteURL(entity);
|
|
|
|
if(wbs != null) {
|
|
|
|
am.setAdditionalInfo("website", wbs);
|
|
|
|
}
|
2013-11-13 14:13:48 +01:00
|
|
|
return am;
|
|
|
|
}
|
|
|
|
|
2013-11-24 01:24:16 +01:00
|
|
|
|
2013-11-13 14:13:48 +01:00
|
|
|
|
|
|
|
private static String getWebSiteURL(Entity entity) {
|
2013-04-18 23:35:02 +02:00
|
|
|
String siteUrl = entity.getTag(OSMTagKey.WIKIPEDIA);
|
|
|
|
if (siteUrl != null) {
|
|
|
|
if (!siteUrl.startsWith("http://")) { //$NON-NLS-1$
|
|
|
|
int i = siteUrl.indexOf(':');
|
|
|
|
if (i == -1) {
|
|
|
|
siteUrl = "http://en.wikipedia.org/wiki/" + siteUrl; //$NON-NLS-1$
|
|
|
|
} else {
|
|
|
|
siteUrl = "http://" + siteUrl.substring(0, i) + ".wikipedia.org/wiki/" + siteUrl.substring(i + 1); //$NON-NLS-1$ //$NON-NLS-2$
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
siteUrl = entity.getTag(OSMTagKey.WEBSITE);
|
|
|
|
if (siteUrl == null) {
|
|
|
|
siteUrl = entity.getTag(OSMTagKey.URL);
|
|
|
|
if (siteUrl == null) {
|
|
|
|
siteUrl = entity.getTag(OSMTagKey.CONTACT_WEBSITE);
|
|
|
|
}
|
|
|
|
}
|
2013-06-14 20:25:57 +02:00
|
|
|
if (siteUrl != null && !siteUrl.startsWith("http://") && !siteUrl.startsWith("https://")) {
|
2013-04-18 23:35:02 +02:00
|
|
|
siteUrl = "http://" + siteUrl;
|
|
|
|
}
|
|
|
|
}
|
2013-11-13 14:13:48 +01:00
|
|
|
return siteUrl;
|
2013-04-18 23:35:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public static List<Amenity> parseAmenities(MapRenderingTypes renderingTypes,
|
2015-02-18 23:21:57 +01:00
|
|
|
MapPoiTypes poiTypes, Entity entity, List<Amenity> amenitiesList){
|
2013-11-30 19:07:47 +01:00
|
|
|
amenitiesList.clear();
|
2013-04-18 23:35:02 +02:00
|
|
|
// it could be collection of amenities
|
|
|
|
boolean relation = entity instanceof Relation;
|
2013-12-01 17:08:52 +01:00
|
|
|
Collection<Map<String, String>> it = renderingTypes.splitTagsIntoDifferentObjects(entity.getTags());
|
|
|
|
for(Map<String, String> tags : it) {
|
2013-11-30 19:07:47 +01:00
|
|
|
if (!tags.isEmpty()) {
|
|
|
|
boolean purerelation = relation && !"multipolygon".equals(tags.get("type"));
|
2015-01-06 21:45:58 +01:00
|
|
|
boolean hasName = !Algorithms.isEmpty(tags.get("name"));
|
2013-11-30 19:07:47 +01:00
|
|
|
for (Map.Entry<String, String> e : tags.entrySet()) {
|
2015-01-06 21:45:58 +01:00
|
|
|
AmenityType type = purerelation ? renderingTypes.getAmenityTypeForRelation(e.getKey(), e.getValue(), hasName)
|
|
|
|
: renderingTypes.getAmenityType(e.getKey(), e.getValue(), hasName );
|
2013-11-30 19:07:47 +01:00
|
|
|
if (type != null) {
|
|
|
|
String subtype = renderingTypes.getAmenitySubtype(e.getKey(), e.getValue());
|
2015-02-18 23:21:57 +01:00
|
|
|
PoiCategory pc = poiTypes.getPoiCategoryByName(type.getCategoryName(), true);
|
|
|
|
Amenity a = parseAmenity(entity, pc, subtype, tags, renderingTypes);
|
2013-11-30 19:07:47 +01:00
|
|
|
if (checkAmenitiesToAdd(a, amenitiesList) && !"no".equals(subtype)) {
|
|
|
|
amenitiesList.add(a);
|
|
|
|
}
|
2013-04-18 23:35:02 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return amenitiesList;
|
|
|
|
}
|
|
|
|
|
|
|
|
private static boolean checkAmenitiesToAdd(Amenity a, List<Amenity> amenitiesList){
|
|
|
|
// check amenity for duplication
|
|
|
|
for(Amenity b : amenitiesList){
|
|
|
|
if(b.getType() == a.getType() && Algorithms.objectEquals(a.getSubType(), b.getSubType())){
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public static Building parseBuilding(Entity e){
|
|
|
|
Building b = new Building();
|
|
|
|
parseMapObject(b, e);
|
|
|
|
// try to extract postcode
|
|
|
|
String p = e.getTag(OSMTagKey.ADDR_POSTCODE);
|
|
|
|
if(p == null) {
|
|
|
|
p = e.getTag(OSMTagKey.POSTAL_CODE);
|
|
|
|
}
|
|
|
|
b.setPostcode(p);
|
|
|
|
return b;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static City parseCity(Node el) {
|
|
|
|
return parseCity(el, CityType.valueFromString(el.getTag(OSMTagKey.PLACE)));
|
|
|
|
}
|
|
|
|
|
|
|
|
public static City parseCity(Entity el, CityType t) {
|
|
|
|
if(t == null) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
City c = new City(t);
|
|
|
|
parseMapObject(c, el);
|
|
|
|
String isin = el.getTag(OSMTagKey.IS_IN);
|
|
|
|
isin = isin != null ? isin.toLowerCase() : null;
|
|
|
|
c.setIsin(isin);
|
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public static OsmTransportRoute parserRoute(Relation r, String ref){
|
|
|
|
OsmTransportRoute rt = new OsmTransportRoute();
|
|
|
|
parseMapObject(rt, r);
|
|
|
|
rt.setRef(ref);
|
|
|
|
return rt;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static TransportStop parseTransportStop(Entity e){
|
|
|
|
TransportStop st = new TransportStop();
|
|
|
|
parseMapObject(st, e);
|
|
|
|
return st;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|