Skip to Content
Mapping Hacks
book

Mapping Hacks

by Schuyler Erle, Rich Gibson, Jo Walsh
June 2005
Intermediate to advanced
568 pages
24h 7m
English
O'Reilly Media, Inc.
Content preview from Mapping Hacks
144
|
Chapter 3, Mapping Your World
#30 Plot a Great Circle on a Flat Map
HACK
Great Circles of Perl
In practice, great-circle routes are hard to navigate precisely, because the
bearing of a great circle relative to True North changes continually, unlike
that of a rhumb line. In fact, the conventional way to navigate a great-circle
route is to approximate it with a series of short rhumb lines. We can use this
same technique to draw the path of a great-circle arc on a flat map in Perl:
#!/usr/bin/perl
use Math::Trig qw(great_circle_direction deg2rad);
use Imager;
use strict;
my ($mapfile, $lon1, $lat1, $lon2, $lat2) = @ARGV;
my @origin = ($lon1, $lat1);
my @dest = ($lon2, $lat2);
my $step = .1;
my @position = @origin;
my @points;
until (abs($position[0] - $dest[0]) < $step
and abs($position[1] - $dest[1]) < $step) {
my $bearing = great_circle_direction(
deg2rad( $position[0] ),
Figure 3-33. Great-circle arc from San Francisco to London on a Gnomonic projection
Plot a Great Circle on a Flat Map #30
Chapter 3, Mapping Your World
|
145
HACK
deg2rad( 90 - $position[1] ),
deg2rad( $dest[0] ),
deg2rad( 90 - $dest[1] )
);
$position[0] += sin($bearing) * $step / cos(deg2rad($position[1])) ;
$position[1] += cos($bearing) * $step;
$position[0] += 360 if $position[0] < -180;
$position[0] -= 360 if $position[0] > 180; ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

GeoServer Cookbook

GeoServer Cookbook

Stefano Iacovella
Leaflet.js Essentials

Leaflet.js Essentials

Paul Crickard III

Publisher Resources

ISBN: 0596007035Purchase LinkErrata PageOther