2013-04-18 23:35:02 +02:00
|
|
|
package net.osmand.osm.edit;
|
|
|
|
|
2013-12-01 17:08:52 +01:00
|
|
|
import java.util.Collection;
|
2013-04-18 23:35:02 +02:00
|
|
|
import java.util.List;
|
2013-11-30 19:07:47 +01:00
|
|
|
import java.util.Map;
|
2013-04-18 23:35:02 +02:00
|
|
|
|
|
|
|
import net.osmand.data.Amenity;
|
|
|
|
import net.osmand.data.AmenityType;
|
|
|
|
import net.osmand.data.Building;
|
|
|
|
import net.osmand.data.City;
|
|
|
|
import net.osmand.data.City.CityType;
|
|
|
|
import net.osmand.data.LatLon;
|
|
|
|
import net.osmand.data.MapObject;
|
|
|
|
import net.osmand.data.TransportStop;
|
|
|
|
import net.osmand.osm.MapRenderingTypes;
|
|
|
|
import net.osmand.osm.edit.OSMSettings.OSMTagKey;
|
|
|
|
import net.osmand.util.Algorithms;
|
|
|
|
|
|
|
|
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) {
|
|
|
|
LatLon l = OsmMapUtils.getCenter(e);
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2013-11-30 20:44:07 +01:00
|
|
|
public static Amenity parseAmenity(Entity entity, AmenityType type, String subtype, Map<String, String> tagValues,
|
|
|
|
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);
|
2013-11-30 20:44:07 +01:00
|
|
|
am.setAdditionalInfo(types.getAmenityAdditionalInfo(tagValues, type, subtype));
|
2013-11-24 01:24:16 +01:00
|
|
|
am.setAdditionalInfo("website", getWebSiteURL(entity));
|
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,
|
|
|
|
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());
|
2013-11-30 20:44:07 +01:00
|
|
|
Amenity a = parseAmenity(entity, type, 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;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|