aboutsummaryrefslogtreecommitdiff
path: root/src/proj_internal.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/proj_internal.h')
-rw-r--r--src/proj_internal.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/proj_internal.h b/src/proj_internal.h
index 0b74b563..5773637c 100644
--- a/src/proj_internal.h
+++ b/src/proj_internal.h
@@ -50,6 +50,12 @@ extern "C" {
+struct PJ_OBS {
+ PJ_COORD coo; /* coordinate data */
+};
+typedef struct PJ_OBS PJ_OBS;
+
+
#ifndef PJ_TODEG
#define PJ_TODEG(rad) ((rad)*180.0/M_PI)
#endif
@@ -59,6 +65,9 @@ extern "C" {
+PJ_OBS proj_obs (double x, double y, double z, double t);
+PJ_OBS proj_trans_obs (PJ *P, PJ_DIRECTION direction, PJ_OBS obs);
+
PJ_COORD proj_coord_error (void);
PJ_OBS proj_obs_error (void);
#ifndef PJ_INTERNAL_C