aboutsummaryrefslogtreecommitdiffstats
path: root/libtellurian_azimuthal_radius.3
diff options
context:
space:
mode:
authorMattias Andrée <m@maandree.se>2024-10-20 17:28:46 +0200
committerMattias Andrée <m@maandree.se>2024-10-20 17:28:46 +0200
commit09e6857ae73249bc7433f2971dcf291c70e4c766 (patch)
treef07ef152c6372083ab87e2e4289c7ab8b1f2c1ad /libtellurian_azimuthal_radius.3
parentThird commit (diff)
downloadlibtellurian-09e6857ae73249bc7433f2971dcf291c70e4c766.tar.gz
libtellurian-09e6857ae73249bc7433f2971dcf291c70e4c766.tar.bz2
libtellurian-09e6857ae73249bc7433f2971dcf291c70e4c766.tar.xz
Fourth commit
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'libtellurian_azimuthal_radius.3')
-rw-r--r--libtellurian_azimuthal_radius.361
1 files changed, 61 insertions, 0 deletions
diff --git a/libtellurian_azimuthal_radius.3 b/libtellurian_azimuthal_radius.3
new file mode 100644
index 0000000..a1be8aa
--- /dev/null
+++ b/libtellurian_azimuthal_radius.3
@@ -0,0 +1,61 @@
+.TH LIBTELLURIAN_AZIMUTHAL_RADIUS 3 libtellurian
+.SH NAME
+libtellurian_azimuthal_radius \- Calculate a azimuthal radius of curvature
+
+.SH SYNPOSIS
+.nf
+#include <libtellurian.h>
+
+double libtellurian_azimuthal_radius(double \fIlatitude\fP, double \fIazimuth\fP);
+
+double libtellurian_azimuthal_radius_radians(double \fIlatitude\fP, double \fIazimuth\fP);
+.fi
+.PP
+Link with
+.I -ltellurian
+.IR -lm .
+
+.SH DESCRIPTION
+The
+.BR libtellurian_azimuthal_radius ()
+function calculates the Earth's azimuthal radius of
+curvature at a given
+.I latitude
+for a given
+.IR azimuth ,
+that is, the radius of curvature along the normal
+section in the direction of the
+.I azimuth
+at the specified
+.I latitude.
+.PP
+The
+.I latitude
+shall be specified according to GPS and in degrees,
+likewise, the
+.I azimuth
+shall be specified in degrees.
+.PP
+The
+.BR libtellurian_azimuthal_radius_radians ()
+function is identical to the
+.BR libtellurian_azimuthal_radius ()
+function except that
+.I latitude
+and
+.I azimuth
+shall be specified in radians.
+
+.SH RETURN VALUE
+The
+.BR libtellurian_azimuthal_radius ()
+and
+.BR libtellurian_azimuthal_radius_radians ()
+functions return the radius of curvature
+measured in meters.
+
+.SH ERRORS
+None.
+
+.SH SEE ALSO
+.BR libtellurian (7)