]> git.mxchange.org Git - simgear.git/commitdiff
Add new api to retreive a list of SGBuckets within a bounding rectangle
authorPeter Sadrozinski <psadrozinski@gmail.com>
Sun, 3 Mar 2013 16:57:38 +0000 (11:57 -0500)
committerChristian Schmitt <chris@ilovelinux.de>
Sun, 3 Mar 2013 18:21:05 +0000 (19:21 +0100)
simgear/bucket/newbucket.cxx
simgear/bucket/newbucket.hxx

index bb373fed851ca45cc12bbee20155cf0fef25b433..93095fd45b22cce3d579ef7623ff3ab7d3aeb6cd 100644 (file)
@@ -345,4 +345,13 @@ void sgBucketDiff( const SGBucket& b1, const SGBucket& b2, int *dx, int *dy ) {
 #endif
 }
 
+void sgGetBuckets( const SGGeod& min, const SGGeod& max, std::vector<SGBucket>& list ) {
+    double lon, lat, span;
 
+    for (lat = min.getLatitudeDeg(); lat <= max.getLatitudeDeg(); lat += SG_BUCKET_SPAN) {
+        span = sg_bucket_span( lat );
+        for (lon = min.getLongitudeDeg(); lon <= max.getLongitudeDeg(); lon += span) {
+            list.push_back( SGBucket(lon , lat) );
+        }
+    }
+}
index 64aa5f80a3f721f43f1b25c946fe6ae54ae98b4b..09169f860fd0435d8d8a60a5a185ac7842e4edfb 100644 (file)
@@ -42,6 +42,7 @@
 #include <cstdio> // sprintf()
 #include <ostream>
 #include <string>
+#include <vector>
 
 /**
  * standard size of a bucket in degrees (1/8 of a degree)
@@ -322,6 +323,15 @@ SGBucket sgBucketOffset( double dlon, double dlat, int x, int y );
 void sgBucketDiff( const SGBucket& b1, const SGBucket& b2, int *dx, int *dy );
 
 
+/**
+ * \relates SGBucket
+ * retrieve a list of buckets in the given bounding box
+ * @param min min lon,lat of bounding box in degrees
+ * @param max max lon,lat of bounding box in degrees
+ * @param list standard vector of buckets within the bounding box
+ */
+void sgGetBuckets( const SGGeod& min, const SGGeod& max, std::vector<SGBucket>& list );
+
 /**
  * Write the bucket lon, lat, x, and y to the output stream.
  * @param out output stream