GRASS Programmer's Manual  6.4.2(2012)
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
proj/local_proto.h
Go to the documentation of this file.
1 
16 struct ellps_list
17 {
18  char *name, *longname;
19  double a, es, rf;
20  struct ellps_list *next;
21 };
22 
23 struct datum_list
24 {
25  char *name, *longname, *ellps;
26  double dx, dy, dz;
27  struct datum_list *next;
28 };
29 
30 struct ellps_list *read_ellipsoid_table(int);
31 void free_ellps_list(struct ellps_list *);
32 
33 struct datum_list *read_datum_table(void);
34 void free_datum_list(struct datum_list *);