/[projects]/android/TrainInfoService/src/dk/thoerup/traininfoservice/TestServlet.java
ViewVC logotype

Diff of /android/TrainInfoService/src/dk/thoerup/traininfoservice/TestServlet.java

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

revision 852 by torben, Tue Jun 15 13:10:32 2010 UTC revision 853 by torben, Tue Jun 15 13:16:29 2010 UTC
# Line 16  public class TestServlet extends HttpSer Line 16  public class TestServlet extends HttpSer
16          Random r = new Random();          Random r = new Random();
17    
18          //South-West corner= 54.5, 8.0          //South-West corner= 54.5, 8.0
19          //North-East corner= 58.0, 13.0          //North-East corner= 57.8, 12.7
20          //Latitude span=3.5          //Latitude span=3.3
21          //Longitude span=5.0          //Longitude span=4.7
22          void testFindNearest(int count) throws SQLException {                    void testFindNearest(int count) throws SQLException {          
23    
24                  StationDAO db = new StationDAO();                  StationDAO db = new StationDAO();
25    
26    
27                  for (int i=0; i<count; i++) {                  for (int i=0; i<count; i++) {
28                          float lat = (r.nextFloat()*3.5F) + 54.5F;                          float lat = (r.nextFloat()*3.3F) + 54.5F;
29                          float lng = (r.nextFloat()*5.0F) + 8.0F;                          float lng = (r.nextFloat()*4.7F) + 8.0F;
30                          db.getByLocation(lat, lng);                          db.getByLocation(lat, lng);
31                  }                  }
32    

Legend:
Removed from v.852  
changed lines
  Added in v.853

  ViewVC Help
Powered by ViewVC 1.1.20