fd1b905978
git-svn-id: https://osmand.googlecode.com/svn/trunk@176 e29c36b1-1cfa-d876-8d93-3434fc2bb7b8
187 lines
5 KiB
Java
187 lines
5 KiB
Java
package com.osmand.data;
|
|
|
|
import java.text.Collator;
|
|
import java.util.ArrayList;
|
|
import java.util.Collection;
|
|
import java.util.Collections;
|
|
import java.util.Comparator;
|
|
import java.util.HashMap;
|
|
import java.util.LinkedHashMap;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
import com.osmand.Algoritms;
|
|
import com.osmand.data.City.CityType;
|
|
import com.osmand.osm.LatLon;
|
|
import com.osmand.osm.MapUtils;
|
|
import com.osmand.osm.Node;
|
|
import com.osmand.osm.io.OsmBaseStorage;
|
|
|
|
public class Region extends MapObject {
|
|
private DataTileManager<Amenity> amenities = new DataTileManager<Amenity>();
|
|
private OsmBaseStorage storage;
|
|
private DataTileManager<City> cityManager = new DataTileManager<City>();
|
|
private Map<String, List<TransportRoute>> routes = new LinkedHashMap<String, List<TransportRoute>>();
|
|
private Map<CityType, List<City>> cities = new HashMap<CityType, List<City>>();
|
|
{
|
|
cityManager.setZoom(10);
|
|
for(CityType type : CityType.values()){
|
|
cities.put(type, new ArrayList<City>());
|
|
}
|
|
}
|
|
|
|
public static class CityComparator implements Comparator<City>{
|
|
private final boolean en;
|
|
public CityComparator(boolean en){
|
|
this.en = en;
|
|
}
|
|
Collator collator = Collator.getInstance();
|
|
@Override
|
|
public int compare(City o1, City o2) {
|
|
if(en){
|
|
return collator.compare(o1.getEnName(), o2.getEnName());
|
|
} else {
|
|
return collator.compare(o1.getName(), o2.getName());
|
|
}
|
|
}
|
|
}
|
|
|
|
public Region(){
|
|
name = "Region"; //$NON-NLS-1$
|
|
}
|
|
|
|
public OsmBaseStorage getStorage() {
|
|
return storage;
|
|
}
|
|
|
|
public void setStorage(OsmBaseStorage storage) {
|
|
this.storage = storage;
|
|
}
|
|
|
|
|
|
public Collection<City> getCitiesByType(CityType type){
|
|
return cities.get(type);
|
|
}
|
|
|
|
public int getCitiesCount(CityType type) {
|
|
if (type == null) {
|
|
int am = 0;
|
|
for (CityType t : cities.keySet()) {
|
|
am += cities.get(t).size();
|
|
}
|
|
return am;
|
|
} else if (!cities.containsKey(type)) {
|
|
return 0;
|
|
} else {
|
|
return cities.get(type).size();
|
|
}
|
|
|
|
}
|
|
|
|
public Collection<City> getCitiesByName(String name){
|
|
return getCityByName(name, true, Integer.MAX_VALUE);
|
|
}
|
|
|
|
public Collection<City> getSuggestedCities(String name, int number){
|
|
return getCityByName(name, false, number);
|
|
}
|
|
|
|
protected Collection<City> getCityByName(String name, boolean exactMatch, int number){
|
|
List<City> l = new ArrayList<City>();
|
|
for(CityType type : CityType.values()){
|
|
for(City c : cities.get(type)){
|
|
if( (exactMatch && c.getName().equalsIgnoreCase(name)) ||
|
|
(!exactMatch && c.getName().toLowerCase().startsWith(name.toLowerCase())
|
|
)){
|
|
l.add(c);
|
|
if(l.size() >= number){
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return l;
|
|
}
|
|
|
|
public City getClosestCity(LatLon point) {
|
|
City closest = null;
|
|
double relDist = Double.POSITIVE_INFINITY;
|
|
for (City c : cityManager.getClosestObjects(point.getLatitude(), point.getLongitude())) {
|
|
double rel = MapUtils.getDistance(c.getLocation(), point) / c.getType().getRadius();
|
|
if (rel < relDist) {
|
|
closest = c;
|
|
relDist = rel;
|
|
if(relDist < 0.2d){
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
return closest;
|
|
}
|
|
|
|
|
|
public DataTileManager<Amenity> getAmenityManager(){
|
|
return amenities;
|
|
}
|
|
|
|
public void registerAmenity(Amenity a){
|
|
LatLon location = a.getLocation();
|
|
if(location != null){
|
|
amenities.registerObject(location.getLatitude(), location.getLongitude(), a);
|
|
}
|
|
}
|
|
|
|
public void registerCity(City city){
|
|
if(city.getType() != null && !Algoritms.isEmpty(city.getName()) && city.getLocation() != null){
|
|
LatLon l = city.getLocation();
|
|
cityManager.registerObject(l.getLatitude(), l.getLongitude(), city);
|
|
cities.get(city.getType()).add(city);
|
|
}
|
|
}
|
|
|
|
public void unregisterCity(City city){
|
|
if(city != null && city.getType() != null){
|
|
LatLon l = city.getLocation();
|
|
cityManager.unregisterObject(l.getLatitude(), l.getLongitude(), city);
|
|
cities.get(city.getType()).remove(city);
|
|
}
|
|
}
|
|
|
|
public City registerCity(Node c){
|
|
City city = new City(c);
|
|
if(city.getType() != null && !Algoritms.isEmpty(city.getName())){
|
|
cityManager.registerObject(c.getLatitude(), c.getLongitude(), city);
|
|
cities.get(city.getType()).add(city);
|
|
return city;
|
|
}
|
|
return null;
|
|
}
|
|
|
|
public Map<String, List<TransportRoute>> getTransportRoutes() {
|
|
return routes;
|
|
}
|
|
|
|
|
|
public void doDataPreparation(){
|
|
CityComparator comp = new CityComparator(false);
|
|
for(CityType t : cities.keySet()){
|
|
Collections.sort(cities.get(t), comp);
|
|
for(City c : cities.get(t)){
|
|
c.doDataPreparation();
|
|
}
|
|
}
|
|
for(String s : routes.keySet()){
|
|
List<TransportRoute> trans = routes.get(s);
|
|
Collections.sort(trans, new Comparator<TransportRoute>(){
|
|
@Override
|
|
public int compare(TransportRoute o1, TransportRoute o2) {
|
|
int i1 = Algoritms.extractFirstIntegerNumber(o1.getRef());
|
|
int i2 = Algoritms.extractFirstIntegerNumber(o2.getRef());
|
|
return i1 - i2;
|
|
}
|
|
});
|
|
}
|
|
|
|
|
|
}
|
|
}
|