GRASS Programmer's Manual
6.4.2(2012)
|
00001 00016 struct ellps_list 00017 { 00018 char *name, *longname; 00019 double a, es, rf; 00020 struct ellps_list *next; 00021 }; 00022 00023 struct datum_list 00024 { 00025 char *name, *longname, *ellps; 00026 double dx, dy, dz; 00027 struct datum_list *next; 00028 }; 00029 00030 struct ellps_list *read_ellipsoid_table(int); 00031 void free_ellps_list(struct ellps_list *); 00032 00033 struct datum_list *read_datum_table(void); 00034 void free_datum_list(struct datum_list *);