lat = -1000;
}
+#ifndef NO_DEPRECATED_API
+
// constructor for specified location
SGBucket::SGBucket(const double dlon, const double dlat) {
set_bucket(dlon, dlat);
}
+#endif
SGBucket::SGBucket(const SGGeod& geod) {
set_bucket(geod.getLongitudeDeg(),
}
}
+#ifndef NO_DEPRECATED_API
+
+void SGBucket::set_bucket(double dlon, double dlat)
+{
+ innerSet(dlon, dlat);
+}
+
+
+void SGBucket::set_bucket(const SGGeod& geod)
+{
+ innerSet(geod.getLongitudeDeg(), geod.getLatitudeDeg());
+}
+
+#endif
+
// Set the bucket params for the specified lat and lon
-void SGBucket::set_bucket( double dlon, double dlat )
+void SGBucket::innerSet( double dlon, double dlat )
{
if ((dlon < -180.0) || (dlon >= 180.0)) {
SG_LOG(SG_TERRAIN, SG_WARN, "SGBucket::set_bucket: passed longitude:" << dlon);
}
}
-void SGBucket::set_bucket(const SGGeod& geod)
-{
- set_bucket(geod.getLongitudeDeg(), geod.getLatitudeDeg());
-}
-
// Build the path name for this bucket
std::string SGBucket::gen_base_path() const {
// long int index;
double tmp = get_center_lon() + dx * span;
tmp = SGMiscd::normalizePeriodic(-180.0, 180.0, tmp);
- return SGBucket(tmp, clat);
+
+ SGBucket b;
+ b.innerSet(tmp, clat);
+ return b;
}
std::string SGBucket::gen_index_str() const
return (std::string)tmp;
}
+#ifndef NO_DEPRECATED_API
// find the bucket which is offset by the specified tile units in the
// X & Y direction. We need the current lon and lat to resolve
// ambiguities when going from a wider tile to a narrower one above or
return result;
}
-
+#endif
// calculate the offset between two buckets
void sgBucketDiff( const SGBucket& b1, const SGBucket& b2, int *dx, int *dy ) {
span = sg_bucket_span( lat );
for (lon = min.getLongitudeDeg(); lon <= max.getLongitudeDeg(); lon += span)
{
- SGBucket b(lon, lat);
+ SGBucket b(SGGeod::fromDeg(lon, lat));
if (!b.isValid()) {
continue;
}
#include <iosfwd>
#include <vector>
+// #define NO_DEPRECATED_API
+
/**
* standard size of a bucket in degrees (1/8 of a degree)
*/
unsigned char x; // x subdivision (0 to 7)
unsigned char y; // y subdivision (0 to 7)
+ void innerSet( double dlon, double dlat );
public:
/**
*/
bool isValid() const;
+#ifndef NO_DEPRECATED_API
/**
* Construct a bucket given a specific location.
* @param dlon longitude specified in degrees
* @param dlat latitude specified in degrees
*/
SGBucket(const double dlon, const double dlat);
-
+#endif
+
/**
* Construct a bucket given a specific location.
* @param dlon longitude specified in degrees
*/
SGBucket(const long int bindex);
+#ifndef NO_DEPRECATED_API
/**
* Reset a bucket to represent a new lat and lon
* @param dlon longitude specified in degrees
*/
void set_bucket(const SGGeod& geod);
+
/**
* Reset a bucket to represent a new lat and lon
* @param dlon longitude specified in degrees
* @param dlat latitude specified in degrees
*/
void set_bucket( double dlon, double dlat );
+#endif
/**
* Create an impossible bucket.
return !(lhs == rhs);
}
-
+#ifndef NO_DEPRECATED_API
/**
* \relates SGBucket
* Return the bucket which is offset from the specified dlon, dlat by
* @return offset bucket
*/
SGBucket sgBucketOffset( double dlon, double dlat, int x, int y );
+#endif
/**