Tweaks for poles.

This commit is contained in:
curt
1999-05-06 02:27:24 +00:00
parent a8f4a61dc2
commit 218821f694

View File

@@ -122,7 +122,7 @@ public:
// return the horizontal tile span factor based on latitude
inline double bucket_span( double l ) {
if ( l >= 89.0 ) {
return 0.0;
return 360.0;
} else if ( l >= 88.0 ) {
return 8.0;
} else if ( l >= 86.0 ) {
@@ -150,7 +150,7 @@ inline double bucket_span( double l ) {
} else if ( l >= -89.0 ) {
return 8.0;
} else {
return 0.0;
return 360.0;
}
}