Created
December 30, 2011 10:04
-
-
Save osdrv/1539114 to your computer and use it in GitHub Desktop.
c++ mercator projection route approximation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
current_point = this->from; | |
/* just a direction */ | |
this->sign = ( ( this->from.y - this->to.y ) > 0 ) ? -1 : 1; | |
for ( int j = 0; j < this->steps; ++j ) { | |
float lon = ( current_point.y + this->sign * this->step_lon ) * M_PI / 180; | |
float lat = atan( ( tan( this->lat1 ) * sin( this->lon2 - lon ) / sin( this->lon2 - this->lon1 ) ) + ( tan( this->lat2 ) * sin( lon - this->lon1 ) / sin( this->lon2 - this->lon1 ) ) ); | |
Vec2f next_point = Vec2f( lat * 180 / M_PI, lon * 180 / M_PI ); | |
/* draw line */ | |
current_point = next_point; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment