/[projects]/dao/DaoAdresseService/src/dk/daoas/daoadresseservice/GeocodeHelper.java
ViewVC logotype

Diff of /dao/DaoAdresseService/src/dk/daoas/daoadresseservice/GeocodeHelper.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 2298 by torben, Sun Feb 15 11:00:48 2015 UTC revision 2307 by torben, Sun Feb 15 17:53:36 2015 UTC
# Line 1  Line 1 
1  package dk.daoas.daoadresseservice;  package dk.daoas.daoadresseservice;
2    
3  import java.io.IOException;  import java.io.IOException;
4    import java.net.URLEncoder;
5  import java.util.List;  import java.util.List;
6    
7  import com.google.code.geocoder.Geocoder;  import com.google.code.geocoder.Geocoder;
# Line 10  import com.google.code.geocoder.model.Ge Line 11  import com.google.code.geocoder.model.Ge
11  import com.google.code.geocoder.model.GeocoderRequest;  import com.google.code.geocoder.model.GeocoderRequest;
12  import com.google.code.geocoder.model.GeocoderResult;  import com.google.code.geocoder.model.GeocoderResult;
13  import com.google.code.geocoder.model.GeocoderStatus;  import com.google.code.geocoder.model.GeocoderStatus;
14    import com.google.gson.Gson;
15    
16    import dk.daoas.daoadresseservice.beans.OSMAddress;
17    
18  public class GeocodeHelper {  public class GeocodeHelper {
19                    
20                    
21            
22    
23    
24          public static void main(String[] args) throws IOException {                      public static void main(String[] args) throws IOException {
25                  System.out.println(  GeocodeHelper.googleHelper(2800, "Chr. Xs Alle") );                  int post = 8700;
26                    String vej = "Enebarvej";
27                    
28                    long start1 = System.currentTimeMillis();
29                    System.out.println( "Google:" +  GeocodeHelper.googleHelper(post, vej) );              
30                    long stop1 = System.currentTimeMillis();
31                    
32                    long start2 = System.currentTimeMillis();
33                    System.out.println( "OSM:" +  GeocodeHelper.openstreetmapHelper(post, vej) );
34                    long stop2 = System.currentTimeMillis();
35                    
36                    System.out.println("Google: " + (stop1-start1));
37                    System.out.println("OSM: " + (stop2-start2));
38            }
39            
40            public static String openstreetmapHelper(int postnr, String vejnavn) {
41                    
42                    try {
43                                    
44                            String encVej = URLEncoder.encode(vejnavn, "UTF-8");
45                            
46                            String url = "http://nominatim.openstreetmap.org/search?country=DK&street=" + encVej + "&postalcode=" + postnr + "&format=json&addressdetails=1";
47                            //String url = "http://nominatim.openstreetmap.org/search?country=DK&street=" + encVej + "&format=json&addressdetails=1";
48                            //System.out.println (url);
49                            
50                            String json = HttpUtil.getContentString(url, 1000);
51                            //System.out.println(json);
52                            
53                            Gson gson = new Gson();
54                            OSMAddress adrList[] = gson.fromJson(json, OSMAddress[].class);
55                            
56                            //System.out.println("Count: " + adrList.length);
57                            if (adrList.length != 1)
58                                    return null;
59                                    
60                            if (adrList[0].address != null) {
61                                    return adrList[0].address.road;
62                            }
63    
64                            
65                    } catch (Exception e) {
66                            System.out.println( "Error: " + e.getMessage() );
67                    }                                                              
68                    return null;
69          }          }
70                    
71            
72            
73          public static String googleHelper(int postnr, String vejnavn) {          public static String googleHelper(int postnr, String vejnavn) {
74                  try {                  try {
75                          //Todo: Load api key from context config                          //Todo: Load api key from context config

Legend:
Removed from v.2298  
changed lines
  Added in v.2307

  ViewVC Help
Powered by ViewVC 1.1.20