1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124
|
=head1 NAME
CartConvert -- convert geodetic coordinates to geocentric or local cartesian
=head1 SYNOPSIS
B<CartConvert> [ B<-r> ] [ B<-l> I<lat0> I<lon0> I<h0> ] [ B<-e> I<a> I<f> ]
[ B<--comment-delimiter> I<commentdelim> ]
[ B<--version> | B<-h> | B<--help> ]
[ B<--input-file> I<infile> | B<--input-string> I<instring> ]
[ B<--line-separator> I<linesep> ]
[ B<--output-file> I<outfile> ]
=head1 DESCRIPTION
Convert geodetic coordinates to either geocentric or local cartesian
coordinates. Geocentric coordinates have the origin at the center of
the earth, with the I<z> axis going thru the north pole, and the I<x>
axis thru I<latitude> = 0, I<longitude> = 0. By default, the
conversion is to geocentric coordinates. Specifying B<-l> I<lat0>
I<lon0> I<h0> causes a local coordinate system to be used with the
origin at I<latitude> = I<lat0>, I<longitude> = I<lon0>, I<height> =
I<h0>, I<z> normal to the ellipsoid and I<y> due north.
Geodetic coordinates are provided on standard input as a set of lines
containing (blank separated) I<latitude>, I<longitude> (decimal degrees
or degrees, minutes and seconds), and I<height> above the ellipsoid
(meters). For each set of geodetic coordinates, the corresponding
cartesian coordinates I<x>, I<y>, I<z> (meters) are printed on standard
output.
=head1 OPTIONS
=over
=item B<-r>
perform the reverse projection. I<x>, I<y>, I<z> are given on standard
input and each line of standard output gives I<latitude>, I<longitude>,
I<height>.
=item B<-e>
specify the ellipsoid via I<a> I<f>; the equatorial radius is I<a> and
the flattening is I<f>. Setting I<f> = 0 results in a sphere. Specify
I<f> E<lt> 0 for a prolate ellipsoid. A simple fraction, e.g., 1/297,
is allowed for I<f>. (Also, if I<f> E<gt> 1, the flattening is set to
1/I<f>.) By default, the WGS84 ellipsoid is used, I<a> = 6378137 m,
I<f> = 1/298.257223563.
=item B<--comment-delimiter>
set the comment delimiter to I<commentdelim> (e.g., "#" or "//"). If
set, the input lines will be scanned for this delimiter and, if found,
the delimiter and the rest of the line will be removed prior to
processing and subsequently appended to the output line (separated by a
space).
=item B<--version>
print version and exit.
=item B<-h>
print usage and exit.
=item B<--help>
print full documentation and exit.
=item B<--input-file>
read input from the file I<infile> instead of from standard input; a file
name of "-" stands for standard input.
=item B<--input-string>
read input from the string I<instring> instead of from standard input.
All occurrences of the line separator character (default is a semicolon)
in I<instring> are converted to newlines before the reading begins.
=item B<--line-separator>
set the line separator character to I<linesep>. By default this is a
semicolon.
=item B<--output-file>
write output to the file I<outfile> instead of to standard output; a
file name of "-" stands for standard output.
=back
=head1 EXAMPLES
echo 33.3 44.4 6000 | CartConvert
=> 3816209.60 3737108.55 3485109.57
echo 33.3 44.4 6000 | CartConvert -l 33 44 20
=> 37288.97 33374.29 5783.64
echo 30000 30000 0 | CartConvert -r
=> 6.483 45 -6335709.73
=head1 ERRORS
An illegal line of input will print an error message to standard output
beginning with C<ERROR:> and causes B<CartConvert> to return an exit
code of 1. However, an error does not cause B<CartConvert> to
terminate; following lines will be converted.
=head1 SEE ALSO
The algorithm for converting geocentric to geodetic coordinates is given
in Appendix B of C. F. F. Karney, I<Geodesics on an ellipsoid of
revolution>, Feb. 2011; preprint L<http://arxiv.org/abs/1102.1215>.
=head1 AUTHOR
B<CartConvert> was written by Charles Karney.
=head1 HISTORY
B<CartConvert> was added to GeographicLib,
L<http://geographiclib.sf.net>, in 2009-02. Prior to 2009-03 it was
called ECEFConvert.
|