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#include <cmath>
35#include "Rectangle.h"
36#include "Units.h"
37
38namespace drain
39{
40
41
43
47class BBox : public Rectangle<double> {
48public:
49
50 inline
51 BBox(){
52 }
53
54 inline
55 BBox(const BBox & bbox) : Rectangle<double>(bbox){
56 }
57
58 inline
59 BBox(const Rectangle<double> & bbox) : Rectangle<double>(bbox){
60 }
61
62 /*
63 inline
64 BBox(const UniTuple<double,4> & bbox) : Rectangle<double>(bbox){
65 }
66 */
67
68
70
73 static inline
74 bool isMetric(const Point2D<double> & p){
75 return isMetric(p.x, 180.0) || isMetric(p.y, 90.0);
76 }
77
78
80 static inline
81 bool isMetric(double x, double limit){
82 return (x < -limit) || (x > limit);
83 }
84
85
86
88
91 inline
92 bool isMetric() const {
93 return isMetric(lowerLeft) || isMetric(upperRight);
94 }
95
96
97 static inline
98 Unit guessUnit(double x, double y){
99 /*
100 if (isWithin(x, -1.0,+1.0)){
101 return Unit::RADIAN;
102 }
103 */
104 if (isWithin(x, -M_PI,+M_PI) && isWithin(y, -M_PI,+M_PI)){
105 return Unit::RADIAN;
106 }
107 else if (isWithin(x, -180.0,+180.0) && isWithin(y, -90.0,+90.0)){
108 return Unit::DEGREE;
109 }
110 else {
111 return Unit::METRE;
112 }
113
114 }
115
116 static inline
117 bool isWithin(double x, double min, double max){
118 return (x > min) && (x < max);
119 }
120
121
122};
123
124
125
126} // drain
127
128#endif /* DRAIN_BOUNDING_BOX_H_ */
Container for geographical extent spanned by lowerLeft(x,y) and upperRight(x,y). Assumes longitude=x ...
Definition BoundingBox.h:47
bool isMetric() const
Check if this Bounding Box has metric coordinates, instead of degrees.
Definition BoundingBox.h:92
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:74
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:81
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