Loading...
Searching...
No Matches
BoundingBox.h
1/*
2
3MIT License
4
5Copyright (c) 2017 FMI Open Development / Markus Peura, first.last@fmi.fi
6
7Permission is hereby granted, free of charge, to any person obtaining a copy
8of this software and associated documentation files (the "Software"), to deal
9in the Software without restriction, including without limitation the rights
10to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11copies of the Software, and to permit persons to whom the Software is
12furnished to do so, subject to the following conditions:
13
14The above copyright notice and this permission notice shall be included in all
15copies or substantial portions of the Software.
16
17THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23SOFTWARE.
24
25 */
26/*
27Part of Rack development has been done in the BALTRAD projects part-financed
28by the European Union (European Regional Development Fund and European
29Neighbourhood 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
37namespace drain
38{
39
40
42
46class BBox : public Rectangle<double> {
47public:
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
Definition Point.h:48
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