/[projects]/dao/FuldDaekningWorker/src/dk/daoas/fulddaekning/BoundingBox.java
ViewVC logotype

Diff of /dao/FuldDaekningWorker/src/dk/daoas/fulddaekning/BoundingBox.java

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

revision 2221 by torben, Fri Sep 19 09:37:37 2014 UTC revision 2331 by torben, Fri Feb 20 08:58:19 2015 UTC
# Line 10  public class BoundingBox { Line 10  public class BoundingBox {
10                                    
11                  private static final long serialVersionUID = 1L;                                  private static final long serialVersionUID = 1L;                
12          }          }
13                            
         //public static final double LATITUDE_MARGIN = 0.02702703;  
         //public static final double LONGUTUDE_MARGIN = 0.046875;  
           
14          public double latitudeMax;          public double latitudeMax;
15          public double latitudeMin;          public double latitudeMin = Double.MAX_VALUE;
16                    
17          public double longitudeMax;          public double longitudeMax;
18          public double longitudeMin;          public double longitudeMin = Double.MAX_VALUE;
19                    
20                    
21          @Override          @Override
# Line 27  public class BoundingBox { Line 24  public class BoundingBox {
24          }          }
25                    
26          public void validateBbox() throws BoundingBoxException {          public void validateBbox() throws BoundingBoxException {
27                                    
28                  if ( Math.abs(latitudeMax-latitudeMin)> 1.0)                  double latDiff = Math.abs(latitudeMax - latitudeMin);          
29                          throw new BoundingBoxException("For stor latitude forskel");                  if ( latDiff > 1.1) {
30                            throw new BoundingBoxException("For stor latitude forskel / " + latDiff);
31                    }
32                                    
33                  if ( Math.abs(longitudeMax-longitudeMin)> 1.0)                  double lngDiff = Math.abs(longitudeMax - longitudeMin);
34                          throw new BoundingBoxException("For stor longitude forskel");                  if ( lngDiff > 1.1) {
35                            throw new BoundingBoxException("For stor longitude forskel / " + lngDiff);
36                    }
37                                    
38                  GeoPoint min = new GeoPoint(latitudeMin, longitudeMin);                  GeoPoint min = new GeoPoint(latitudeMin, longitudeMin);
39                  GeoPoint max = new GeoPoint(latitudeMax, longitudeMax);                  GeoPoint max = new GeoPoint(latitudeMax, longitudeMax);
40                  double afstand = GeoPoint.beregnAfstand(min, max);                  double afstand = GeoPoint.beregnAfstand(min, max);
41                                    
42                  if (afstand >= 80.0) { //hvis cross afstand er over 80 km - så er postnummeret for stort                  if (afstand >= 125.0) { //hvis cross afstand er over X km - så er postnummeret for stort
43                          throw new BoundingBoxException("For stor cross afstand " + afstand);                          throw new BoundingBoxException("For stor cross afstand " + afstand);
44                  }                  }
45          }          }
46                    
47          public void adjustToMargin() {          public void adjustToMargin(double kmMargin) {
48                  Constants consts = Constants.getInstance();                  double latMargin = GeoPoint.kmToLatitude(kmMargin);
49                    double lngMargin = GeoPoint.kmToLongitude(kmMargin);
50                    
51                    latitudeMax += latMargin;
52                    latitudeMin -= latMargin;
53                    
54                    longitudeMax += lngMargin;
55                    longitudeMin -= lngMargin;
56            }
57            
58            @Override
59            public BoundingBox clone() {
60                    BoundingBox bb = new BoundingBox();
61                    bb.latitudeMax = this.latitudeMax;
62                    bb.longitudeMax = this.longitudeMax;
63                                    
64                  latitudeMax += consts.getLatitudeMargin();                  bb.latitudeMin = this.latitudeMin;
65                  latitudeMin -= consts.getLatitudeMargin();                  bb.longitudeMin = this.longitudeMin;
66                                    
67                  longitudeMax += consts.getLongitudeMargin();                  return bb;
                 longitudeMin -= consts.getLongitudeMargin();  
68          }          }
69                    
70    

Legend:
Removed from v.2221  
changed lines
  Added in v.2331

  ViewVC Help
Powered by ViewVC 1.1.20