Skip to content

Instantly share code, notes, and snippets.

@osdrv
Created December 30, 2011 10:04
Show Gist options
  • Save osdrv/1539114 to your computer and use it in GitHub Desktop.
Save osdrv/1539114 to your computer and use it in GitHub Desktop.
c++ mercator projection route approximation
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