/[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 2210 by torben, Thu Sep 11 08:14:40 2014 UTC revision 2211 by torben, Thu Sep 11 20:44:20 2014 UTC
# Line 27  public class BoundingBox { Line 27  public class BoundingBox {
27          }          }
28                    
29          public void validateBbox() throws BoundingBoxException {          public void validateBbox() throws BoundingBoxException {
30                                    
31                  if ( Math.abs(latitudeMax-latitudeMin)> 1.0)                  if ( Math.abs(latitudeMax-latitudeMin)> 1.0)
32                          throw new BoundingBoxException("For stor latitude forskel");                          throw new BoundingBoxException("For stor latitude forskel");
33                                    
34                  if ( Math.abs(longitudeMax-longitudeMin)> 1.0)                  if ( Math.abs(longitudeMax-longitudeMin)> 1.0)
35                          throw new BoundingBoxException("For stor longitude forskel");                                            throw new BoundingBoxException("For stor longitude forskel");
36                    
37                    GeoPoint min = new GeoPoint(latitudeMin, longitudeMin);
38                    GeoPoint max = new GeoPoint(latitudeMax, longitudeMax);
39                    double afstand = GeoPoint.beregnAfstand(min, max);
40                    
41                    if (afstand >= 90.0) { //hvis cross størrelsen er over 90 km - sÃ¥ er postnummeret for stort
42                            throw new BoundingBoxException("For stor cross afstand " + afstand);
43                    }
44          }          }
45                    
46          public void adjustToMargin() {          public void adjustToMargin() {

Legend:
Removed from v.2210  
changed lines
  Added in v.2211

  ViewVC Help
Powered by ViewVC 1.1.20