]> Pileus Git - grits/blobdiff - src/grits-util.c
libgis -> grits: Update functions/types/etc
[grits] / src / grits-util.c
index 7c86290d4bba7c15d9ae2f1d629b56314ae3afca..a4cb0f83994a621c6c6606fc041b109f59f74c80 100644 (file)
@@ -16,7 +16,7 @@
  */
 
 /**
- * SECTION:gis-util
+ * SECTION:grits-util
  * @short_description: Geographic utilities
  *
  * Miscellaneous utility functions, these deal mostly with coordinate
 #include "grits-util.h"
 
 /************
- * GisPoint *
+ * GritsPoint *
  ************/
 /**
- * gis_point_set_lle:
+ * grits_point_set_lle:
  * @point: the point to modify
  * @lat:   the new latitude
  * @lon:   the new longitude
@@ -85,7 +85,7 @@
  *
  * Set the latitude, longitude, and elevation for a point.
  */
-void gis_point_set_lle(GisPoint *point, gdouble lat, gdouble lon, gdouble elev)
+void grits_point_set_lle(GritsPoint *point, gdouble lat, gdouble lon, gdouble elev)
 {
        point->lat  = lat;
        point->lon  = lon;
@@ -94,10 +94,10 @@ void gis_point_set_lle(GisPoint *point, gdouble lat, gdouble lon, gdouble elev)
 
 
 /***********
- * GisBBox *
+ * GritsBBox *
  ***********/
 /**
- * gis_bbox_set_bounds:
+ * grits_bbox_set_bounds:
  * @n: the north edge
  * @s: the south edge
  * @e: the east edge
@@ -105,7 +105,7 @@ void gis_point_set_lle(GisPoint *point, gdouble lat, gdouble lon, gdouble elev)
  *
  * Set the north, south, east, and west edges of the bounding box
  */
-void gis_bbox_set_bounds(GisBBox *bbox,
+void grits_bbox_set_bounds(GritsBBox *bbox,
                gdouble n, gdouble s, gdouble e, gdouble w)
 {
        bbox->n = n;