BoundingBox.h
1 /*
2 
3 MIT License
4 
5 Copyright (c) 2017 FMI Open Development / Markus Peura, first.last@fmi.fi
6 
7 Permission is hereby granted, free of charge, to any person obtaining a copy
8 of this software and associated documentation files (the "Software"), to deal
9 in the Software without restriction, including without limitation the rights
10 to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 copies of the Software, and to permit persons to whom the Software is
12 furnished to do so, subject to the following conditions:
13 
14 The above copyright notice and this permission notice shall be included in all
15 copies or substantial portions of the Software.
16 
17 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23 SOFTWARE.
24 
25  */
26 /*
27 Part of Rack development has been done in the BALTRAD projects part-financed
28 by the European Union (European Regional Development Fund and European
29 Neighbourhood Partnership Instrument, Baltic Sea Region Programme 2007-2013)
30  */
31 #ifndef DRAIN_BOUNDING_BOX_H_
32 #define DRAIN_BOUNDING_BOX_H_
33 
34 
35 #include "Rectangle.h"
36 
37 namespace drain
38 {
39 
40 
42 
46 class BBox : public Rectangle<double> {
47 public:
48 
49  inline
50  BBox(){
51  }
52 
53  inline
54  BBox(const BBox & bbox) : Rectangle<double>(bbox){
55  }
56 
57  inline
58  BBox(const Rectangle<double> & bbox) : Rectangle<double>(bbox){
59  }
60 
61  /*
62  inline
63  BBox(const UniTuple<double,4> & bbox) : Rectangle<double>(bbox){
64  }
65  */
66 
67 
69 
72  static inline
73  bool isMetric(const Point2D<double> & p){
74  return isMetric(p.x, 180.0) || isMetric(p.y, 90.0);
75  }
76 
78  static inline
79  bool isMetric(double x, double limit){
80  return (x < -limit) || (x > limit);
81  }
82 
84 
87  inline
88  bool isMetric() const {
89  return isMetric(lowerLeft) || isMetric(upperRight);
90  }
91 
92 
93 };
94 
95 
96 
97 } // drain
98 
99 #endif /* DRAIN_BOUNDING_BOX_H_ */
Container for geographical extent spanned by lowerLeft(x,y) and upperRight(x,y). Assumes longitude=x ...
Definition: BoundingBox.h:46
bool isMetric() const
Check if this Bounding Box has metric coordinates, instead of degrees.
Definition: BoundingBox.h:88
static bool isMetric(const Point2D< double > &p)
Checks if a coordinate (x,y) == (lon,lat) looks like metric, that is, beyond [-90,...
Definition: BoundingBox.h:73
static bool isMetric(double x, double limit)
Checks if a coordinate looks like metric, that is, beyond [-90,+90] or [-180,+180].
Definition: BoundingBox.h:79
Definition: DataSelector.cpp:1277
Rectange defined through lower left and upper right coordinates.
Definition: Rectangle.h:65
bool limit(const double &lowerBound, const double &upperBound, double &x)
Limits x between interval [lowerBound, upperBound].
Definition: Rectangle.h:167