pgLatLon

diff latlon-v0007.c @ 29:868220477afb

Added files for next version 0.7 (latlon-v0007.c)
author jbe
date Sat Sep 24 01:23:11 2016 +0200 (2016-09-24)
parents latlon-v0006.c@f765aed73421
children bdbec73dc8ff
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/latlon-v0007.c	Sat Sep 24 01:23:11 2016 +0200
     1.3 @@ -0,0 +1,3073 @@
     1.4 +
     1.5 +/*-------------*
     1.6 + *  C prelude  *
     1.7 + *-------------*/
     1.8 +
     1.9 +#include "postgres.h"
    1.10 +#include "fmgr.h"
    1.11 +#include "libpq/pqformat.h"
    1.12 +#include "access/gist.h"
    1.13 +#include "access/stratnum.h"
    1.14 +#include "utils/array.h"
    1.15 +#include <math.h>
    1.16 +
    1.17 +#ifdef PG_MODULE_MAGIC
    1.18 +PG_MODULE_MAGIC;
    1.19 +#endif
    1.20 +
    1.21 +#if INT_MAX < 2147483647
    1.22 +#error Expected int type to be at least 32 bit wide
    1.23 +#endif
    1.24 +
    1.25 +
    1.26 +/*---------------------------------*
    1.27 + *  distance calculation on earth  *
    1.28 + *  (using WGS-84 spheroid)        *
    1.29 + *---------------------------------*/
    1.30 +
    1.31 +/*  WGS-84 spheroid with following parameters:
    1.32 +    semi-major axis  a = 6378137
    1.33 +    semi-minor axis  b = a * (1 - 1/298.257223563)
    1.34 +    estimated diameter = 2 * (2*a+b)/3
    1.35 +*/
    1.36 +#define PGL_SPHEROID_A 6378137.0            /* semi major axis */
    1.37 +#define PGL_SPHEROID_F (1.0/298.257223563)  /* flattening */
    1.38 +#define PGL_SPHEROID_B (PGL_SPHEROID_A * (1.0-PGL_SPHEROID_F))
    1.39 +#define PGL_EPS2       ( ( PGL_SPHEROID_A * PGL_SPHEROID_A - \
    1.40 +                           PGL_SPHEROID_B * PGL_SPHEROID_B ) / \
    1.41 +                         ( PGL_SPHEROID_A * PGL_SPHEROID_A ) )
    1.42 +#define PGL_SUBEPS2    (1.0-PGL_EPS2)
    1.43 +#define PGL_DIAMETER   ((4.0*PGL_SPHEROID_A + 2.0*PGL_SPHEROID_B) / 3.0)
    1.44 +#define PGL_SCALE      (PGL_SPHEROID_A / PGL_DIAMETER)  /* semi-major ref. */
    1.45 +#define PGL_FADELIMIT  (PGL_DIAMETER * M_PI / 6.0)      /* 1/6 circumference */
    1.46 +#define PGL_MAXDIST    (PGL_DIAMETER * M_PI / 2.0)      /* maximum distance */
    1.47 +
    1.48 +/* calculate distance between two points on earth (given in degrees) */
    1.49 +static inline double pgl_distance(
    1.50 +  double lat1, double lon1, double lat2, double lon2
    1.51 +) {
    1.52 +  float8 lat1cos, lat1sin, lat2cos, lat2sin, lon2cos, lon2sin;
    1.53 +  float8 nphi1, nphi2, x1, z1, x2, y2, z2, g, s, t;
    1.54 +  /* normalize delta longitude (lon2 > 0 && lon1 = 0) */
    1.55 +  /* lon1 = 0 (not used anymore) */
    1.56 +  lon2 = fabs(lon2-lon1);
    1.57 +  /* convert to radians (first divide, then multiply) */
    1.58 +  lat1 = (lat1 / 180.0) * M_PI;
    1.59 +  lat2 = (lat2 / 180.0) * M_PI;
    1.60 +  lon2 = (lon2 / 180.0) * M_PI;
    1.61 +  /* make lat2 >= lat1 to ensure reversal-symmetry despite floating point
    1.62 +     operations (lon2 >= lon1 is already ensured in a previous step) */
    1.63 +  if (lat2 < lat1) { float8 swap = lat1; lat1 = lat2; lat2 = swap; }
    1.64 +  /* calculate 3d coordinates on scaled ellipsoid which has an average diameter
    1.65 +     of 1.0 */
    1.66 +  lat1cos = cos(lat1); lat1sin = sin(lat1);
    1.67 +  lat2cos = cos(lat2); lat2sin = sin(lat2);
    1.68 +  lon2cos = cos(lon2); lon2sin = sin(lon2);
    1.69 +  nphi1 = PGL_SCALE / sqrt(1 - PGL_EPS2 * lat1sin * lat1sin);
    1.70 +  nphi2 = PGL_SCALE / sqrt(1 - PGL_EPS2 * lat2sin * lat2sin);
    1.71 +  x1 = nphi1 * lat1cos;
    1.72 +  z1 = nphi1 * PGL_SUBEPS2 * lat1sin;
    1.73 +  x2 = nphi2 * lat2cos * lon2cos;
    1.74 +  y2 = nphi2 * lat2cos * lon2sin;
    1.75 +  z2 = nphi2 * PGL_SUBEPS2 * lat2sin;
    1.76 +  /* calculate tunnel distance through scaled (diameter 1.0) ellipsoid */
    1.77 +  g = sqrt((x2-x1)*(x2-x1) + y2*y2 + (z2-z1)*(z2-z1));
    1.78 +  /* convert tunnel distance through scaled ellipsoid to approximated surface
    1.79 +     distance on original ellipsoid */
    1.80 +  if (g > 1.0) g = 1.0;
    1.81 +  s = PGL_DIAMETER * asin(g);
    1.82 +  /* return result only if small enough to be precise (less than 1/3 of
    1.83 +     maximum possible distance) */
    1.84 +  if (s <= PGL_FADELIMIT) return s;
    1.85 +  /* calculate tunnel distance to antipodal point through scaled ellipsoid */
    1.86 +  g = sqrt((x2+x1)*(x2+x1) + y2*y2 + (z2+z1)*(z2+z1));
    1.87 +  /* convert tunnel distance to antipodal point through scaled ellipsoid to
    1.88 +     approximated surface distance to antipodal point on original ellipsoid */
    1.89 +  if (g > 1.0) g = 1.0;
    1.90 +  t = PGL_DIAMETER * asin(g);
    1.91 +  /* surface distance between original points can now be approximated by
    1.92 +     substracting antipodal distance from maximum possible distance;
    1.93 +     return result only if small enough (less than 1/3 of maximum possible
    1.94 +     distance) */
    1.95 +  if (t <= PGL_FADELIMIT) return PGL_MAXDIST-t;
    1.96 +  /* otherwise crossfade direct and antipodal result to ensure monotonicity */
    1.97 +  return (
    1.98 +    (s * (t-PGL_FADELIMIT) + (PGL_MAXDIST-t) * (s-PGL_FADELIMIT)) /
    1.99 +    (s + t - 2*PGL_FADELIMIT)
   1.100 +  );
   1.101 +}
   1.102 +
   1.103 +/* finite distance that can not be reached on earth */
   1.104 +#define PGL_ULTRA_DISTANCE (3 * PGL_MAXDIST)
   1.105 +
   1.106 +
   1.107 +/*--------------------------------*
   1.108 + *  simple geographic data types  *
   1.109 + *--------------------------------*/
   1.110 +
   1.111 +/* point on earth given by latitude and longitude in degrees */
   1.112 +/* (type "epoint" in SQL) */
   1.113 +typedef struct {
   1.114 +  double lat;  /* between  -90 and  90 (both inclusive) */
   1.115 +  double lon;  /* between -180 and 180 (both inclusive) */
   1.116 +} pgl_point;
   1.117 +
   1.118 +/* box delimited by two parallels and two meridians (all in degrees) */
   1.119 +/* (type "ebox" in SQL) */
   1.120 +typedef struct {
   1.121 +  double lat_min;  /* between  -90 and  90 (both inclusive) */
   1.122 +  double lat_max;  /* between  -90 and  90 (both inclusive) */
   1.123 +  double lon_min;  /* between -180 and 180 (both inclusive) */
   1.124 +  double lon_max;  /* between -180 and 180 (both inclusive) */
   1.125 +  /* if lat_min > lat_max, then box is empty */
   1.126 +  /* if lon_min > lon_max, then 180th meridian is crossed */
   1.127 +} pgl_box;
   1.128 +
   1.129 +/* circle on earth surface (for radial searches with fixed radius) */
   1.130 +/* (type "ecircle" in SQL) */
   1.131 +typedef struct {
   1.132 +  pgl_point center;
   1.133 +  double radius; /* positive (including +0 but excluding -0), or -INFINITY */
   1.134 +  /* A negative radius (i.e. -INFINITY) denotes nothing (i.e. no point),
   1.135 +     zero radius (0) denotes a single point,
   1.136 +     a finite radius (0 < radius < INFINITY) denotes a filled circle, and
   1.137 +     a radius of INFINITY is valid and means complete coverage of earth. */
   1.138 +} pgl_circle;
   1.139 +
   1.140 +
   1.141 +/*----------------------------------*
   1.142 + *  geographic "cluster" data type  *
   1.143 + *----------------------------------*/
   1.144 +
   1.145 +/* A cluster is a collection of points, paths, outlines, and polygons. If two
   1.146 +   polygons in a cluster overlap, the area covered by both polygons does not
   1.147 +   belong to the cluster. This way, a cluster can be used to describe complex
   1.148 +   shapes like polygons with holes. Outlines are non-filled polygons. Paths are
   1.149 +   open by default (i.e. the last point in the list is not connected with the
   1.150 +   first point in the list). Note that each outline or polygon in a cluster
   1.151 +   must cover a longitude range of less than 180 degrees to avoid ambiguities.
   1.152 +   Areas which are larger may be split into multiple polygons. */
   1.153 +
   1.154 +/* maximum number of points in a cluster */
   1.155 +/* (limited to avoid integer overflows, e.g. when allocating memory) */
   1.156 +#define PGL_CLUSTER_MAXPOINTS 16777216
   1.157 +
   1.158 +/* types of cluster entries */
   1.159 +#define PGL_ENTRY_POINT   1  /* a point */
   1.160 +#define PGL_ENTRY_PATH    2  /* a path from first point to last point */
   1.161 +#define PGL_ENTRY_OUTLINE 3  /* a non-filled polygon with given vertices */
   1.162 +#define PGL_ENTRY_POLYGON 4  /* a filled polygon with given vertices */
   1.163 +
   1.164 +/* Entries of a cluster are described by two different structs: pgl_newentry
   1.165 +   and pgl_entry. The first is used only during construction of a cluster, the
   1.166 +   second is used in all other cases (e.g. when reading clusters from the
   1.167 +   database, performing operations, etc). */
   1.168 +
   1.169 +/* entry for new geographic cluster during construction of that cluster */
   1.170 +typedef struct {
   1.171 +  int32_t entrytype;
   1.172 +  int32_t npoints;
   1.173 +  pgl_point *points;  /* pointer to an array of points (pgl_point) */
   1.174 +} pgl_newentry;
   1.175 +
   1.176 +/* entry of geographic cluster */
   1.177 +typedef struct {
   1.178 +  int32_t entrytype;  /* type of entry: point, path, outline, polygon */
   1.179 +  int32_t npoints;    /* number of stored points (set to 1 for point entry) */
   1.180 +  int32_t offset;     /* offset of pgl_point array from cluster base address */
   1.181 +  /* use macro PGL_ENTRY_POINTS to obtain a pointer to the array of points */
   1.182 +} pgl_entry;
   1.183 +
   1.184 +/* geographic cluster which is a collection of points, (open) paths, polygons,
   1.185 +   and outlines (non-filled polygons) */
   1.186 +typedef struct {
   1.187 +  char header[VARHDRSZ];  /* PostgreSQL header for variable size data types */
   1.188 +  int32_t nentries;       /* number of stored points */
   1.189 +  pgl_circle bounding;    /* bounding circle */
   1.190 +  /* Note: bounding circle ensures alignment of pgl_cluster for points */
   1.191 +  pgl_entry entries[FLEXIBLE_ARRAY_MEMBER];  /* var-length data */
   1.192 +} pgl_cluster;
   1.193 +
   1.194 +/* macro to determine memory alignment of points */
   1.195 +/* (needed to store pgl_point array after entries in pgl_cluster) */
   1.196 +typedef struct { char dummy; pgl_point aligned; } pgl_point_alignment;
   1.197 +#define PGL_POINT_ALIGNMENT offsetof(pgl_point_alignment, aligned)
   1.198 +
   1.199 +/* macro to extract a pointer to the array of points of a cluster entry */
   1.200 +#define PGL_ENTRY_POINTS(cluster, idx) \
   1.201 +  ((pgl_point *)(((intptr_t)cluster)+(cluster)->entries[idx].offset))
   1.202 +
   1.203 +/* convert pgl_newentry array to pgl_cluster */
   1.204 +static pgl_cluster *pgl_new_cluster(int nentries, pgl_newentry *entries) {
   1.205 +  int i;              /* index of current entry */
   1.206 +  int npoints = 0;    /* number of points in whole cluster */
   1.207 +  int entry_npoints;  /* number of points in current entry */
   1.208 +  int points_offset = PGL_POINT_ALIGNMENT * (
   1.209 +    ( offsetof(pgl_cluster, entries) +
   1.210 +      nentries * sizeof(pgl_entry) +
   1.211 +      PGL_POINT_ALIGNMENT - 1
   1.212 +    ) / PGL_POINT_ALIGNMENT
   1.213 +  );  /* offset of pgl_point array from base address (considering alignment) */
   1.214 +  pgl_cluster *cluster;  /* new cluster to be returned */
   1.215 +  /* determine total number of points */
   1.216 +  for (i=0; i<nentries; i++) npoints += entries[i].npoints;
   1.217 +  /* allocate memory for cluster (including entries and points) */
   1.218 +  cluster = palloc(points_offset + npoints * sizeof(pgl_point));
   1.219 +  /* re-count total number of points to determine offset for each entry */
   1.220 +  npoints = 0;
   1.221 +  /* copy entries and points */
   1.222 +  for (i=0; i<nentries; i++) {
   1.223 +    /* determine number of points in entry */
   1.224 +    entry_npoints = entries[i].npoints;
   1.225 +    /* copy entry */
   1.226 +    cluster->entries[i].entrytype = entries[i].entrytype;
   1.227 +    cluster->entries[i].npoints = entry_npoints;
   1.228 +    /* calculate offset (in bytes) of pgl_point array */
   1.229 +    cluster->entries[i].offset = points_offset + npoints * sizeof(pgl_point);
   1.230 +    /* copy points */
   1.231 +    memcpy(
   1.232 +      PGL_ENTRY_POINTS(cluster, i),
   1.233 +      entries[i].points,
   1.234 +      entry_npoints * sizeof(pgl_point)
   1.235 +    );
   1.236 +    /* update total number of points processed */
   1.237 +    npoints += entry_npoints;
   1.238 +  }
   1.239 +  /* set number of entries in cluster */
   1.240 +  cluster->nentries = nentries;
   1.241 +  /* set PostgreSQL header for variable sized data */
   1.242 +  SET_VARSIZE(cluster, points_offset + npoints * sizeof(pgl_point));
   1.243 +  /* return newly created cluster */
   1.244 +  return cluster;
   1.245 +}
   1.246 +
   1.247 +
   1.248 +/*----------------------------------------*
   1.249 + *  C functions on geographic data types  *
   1.250 + *----------------------------------------*/
   1.251 +
   1.252 +/* round latitude or longitude to 12 digits after decimal point */
   1.253 +static inline double pgl_round(double val) {
   1.254 +  return round(val * 1e12) / 1e12;
   1.255 +}
   1.256 +
   1.257 +/* compare two points */
   1.258 +/* (equality when same point on earth is described, otherwise an arbitrary
   1.259 +   linear order) */
   1.260 +static int pgl_point_cmp(pgl_point *point1, pgl_point *point2) {
   1.261 +  double lon1, lon2;  /* modified longitudes for special cases */
   1.262 +  /* use latitude as first ordering criterion */
   1.263 +  if (point1->lat < point2->lat) return -1;
   1.264 +  if (point1->lat > point2->lat) return 1;
   1.265 +  /* determine modified longitudes (considering special case of poles and
   1.266 +     180th meridian which can be described as W180 or E180) */
   1.267 +  if (point1->lat == -90 || point1->lat == 90) lon1 = 0;
   1.268 +  else if (point1->lon == 180) lon1 = -180;
   1.269 +  else lon1 = point1->lon;
   1.270 +  if (point2->lat == -90 || point2->lat == 90) lon2 = 0;
   1.271 +  else if (point2->lon == 180) lon2 = -180;
   1.272 +  else lon2 = point2->lon;
   1.273 +  /* use (modified) longitude as secondary ordering criterion */
   1.274 +  if (lon1 < lon2) return -1;
   1.275 +  if (lon1 > lon2) return 1;
   1.276 +  /* no difference found, points are equal */
   1.277 +  return 0;
   1.278 +}
   1.279 +
   1.280 +/* compare two boxes */
   1.281 +/* (equality when same box on earth is described, otherwise an arbitrary linear
   1.282 +   order) */
   1.283 +static int pgl_box_cmp(pgl_box *box1, pgl_box *box2) {
   1.284 +  /* two empty boxes are equal, and an empty box is always considered "less
   1.285 +     than" a non-empty box */
   1.286 +  if (box1->lat_min> box1->lat_max && box2->lat_min<=box2->lat_max) return -1;
   1.287 +  if (box1->lat_min> box1->lat_max && box2->lat_min> box2->lat_max) return 0;
   1.288 +  if (box1->lat_min<=box1->lat_max && box2->lat_min> box2->lat_max) return 1;
   1.289 +  /* use southern border as first ordering criterion */
   1.290 +  if (box1->lat_min < box2->lat_min) return -1;
   1.291 +  if (box1->lat_min > box2->lat_min) return 1;
   1.292 +  /* use northern border as second ordering criterion */
   1.293 +  if (box1->lat_max < box2->lat_max) return -1;
   1.294 +  if (box1->lat_max > box2->lat_max) return 1;
   1.295 +  /* use western border as third ordering criterion */
   1.296 +  if (box1->lon_min < box2->lon_min) return -1;
   1.297 +  if (box1->lon_min > box2->lon_min) return 1;
   1.298 +  /* use eastern border as fourth ordering criterion */
   1.299 +  if (box1->lon_max < box2->lon_max) return -1;
   1.300 +  if (box1->lon_max > box2->lon_max) return 1;
   1.301 +  /* no difference found, boxes are equal */
   1.302 +  return 0;
   1.303 +}
   1.304 +
   1.305 +/* compare two circles */
   1.306 +/* (equality when same circle on earth is described, otherwise an arbitrary
   1.307 +   linear order) */
   1.308 +static int pgl_circle_cmp(pgl_circle *circle1, pgl_circle *circle2) {
   1.309 +  /* two circles with same infinite radius (positive or negative infinity) are
   1.310 +     considered equal independently of center point */
   1.311 +  if (
   1.312 +    !isfinite(circle1->radius) && !isfinite(circle2->radius) &&
   1.313 +    circle1->radius == circle2->radius
   1.314 +  ) return 0;
   1.315 +  /* use radius as first ordering criterion */
   1.316 +  if (circle1->radius < circle2->radius) return -1;
   1.317 +  if (circle1->radius > circle2->radius) return 1;
   1.318 +  /* use center point as secondary ordering criterion */
   1.319 +  return pgl_point_cmp(&(circle1->center), &(circle2->center));
   1.320 +}
   1.321 +
   1.322 +/* set box to empty box*/
   1.323 +static void pgl_box_set_empty(pgl_box *box) {
   1.324 +  box->lat_min = INFINITY;
   1.325 +  box->lat_max = -INFINITY;
   1.326 +  box->lon_min = 0;
   1.327 +  box->lon_max = 0;
   1.328 +}
   1.329 +
   1.330 +/* check if point is inside a box */
   1.331 +static bool pgl_point_in_box(pgl_point *point, pgl_box *box) {
   1.332 +  return (
   1.333 +    point->lat >= box->lat_min && point->lat <= box->lat_max && (
   1.334 +      (box->lon_min > box->lon_max) ? (
   1.335 +        /* box crosses 180th meridian */
   1.336 +        point->lon >= box->lon_min || point->lon <= box->lon_max
   1.337 +      ) : (
   1.338 +        /* box does not cross the 180th meridian */
   1.339 +        point->lon >= box->lon_min && point->lon <= box->lon_max
   1.340 +      )
   1.341 +    )
   1.342 +  );
   1.343 +}
   1.344 +
   1.345 +/* check if two boxes overlap */
   1.346 +static bool pgl_boxes_overlap(pgl_box *box1, pgl_box *box2) {
   1.347 +  return (
   1.348 +    box2->lat_max >= box2->lat_min &&  /* ensure box2 is not empty */
   1.349 +    ( box2->lat_min >= box1->lat_min || box2->lat_max >= box1->lat_min ) &&
   1.350 +    ( box2->lat_min <= box1->lat_max || box2->lat_max <= box1->lat_max ) && (
   1.351 +      (
   1.352 +        /* check if one and only one box crosses the 180th meridian */
   1.353 +        ((box1->lon_min > box1->lon_max) ? 1 : 0) ^
   1.354 +        ((box2->lon_min > box2->lon_max) ? 1 : 0)
   1.355 +      ) ? (
   1.356 +        /* exactly one box crosses the 180th meridian */
   1.357 +        box2->lon_min >= box1->lon_min || box2->lon_max >= box1->lon_min ||
   1.358 +        box2->lon_min <= box1->lon_max || box2->lon_max <= box1->lon_max
   1.359 +      ) : (
   1.360 +        /* no box or both boxes cross the 180th meridian */
   1.361 +        (
   1.362 +          (box2->lon_min >= box1->lon_min || box2->lon_max >= box1->lon_min) &&
   1.363 +          (box2->lon_min <= box1->lon_max || box2->lon_max <= box1->lon_max)
   1.364 +        ) ||
   1.365 +        /* handle W180 == E180 */
   1.366 +        ( box1->lon_min == -180 && box2->lon_max == 180 ) ||
   1.367 +        ( box2->lon_min == -180 && box1->lon_max == 180 )
   1.368 +      )
   1.369 +    )
   1.370 +  );
   1.371 +}
   1.372 +
   1.373 +/* check unambiguousness of east/west orientation of cluster entries and set
   1.374 +   bounding circle of cluster */
   1.375 +static bool pgl_finalize_cluster(pgl_cluster *cluster) {
   1.376 +  int i, j;                 /* i: index of entry, j: index of point in entry */
   1.377 +  int npoints;              /* number of points in entry */
   1.378 +  int total_npoints = 0;    /* total number of points in cluster */
   1.379 +  pgl_point *points;        /* points in entry */
   1.380 +  int lon_dir;              /* first point of entry west (-1) or east (+1) */
   1.381 +  double lon_break = 0;     /* antipodal longitude of first point in entry */
   1.382 +  double lon_min, lon_max;  /* covered longitude range of entry */
   1.383 +  double value;             /* temporary variable */
   1.384 +  /* reset bounding circle center to empty circle at 0/0 coordinates */
   1.385 +  cluster->bounding.center.lat = 0;
   1.386 +  cluster->bounding.center.lon = 0;
   1.387 +  cluster->bounding.radius = -INFINITY;
   1.388 +  /* if cluster is not empty */
   1.389 +  if (cluster->nentries != 0) {
   1.390 +    /* iterate over all cluster entries and ensure they each cover a longitude
   1.391 +       range less than 180 degrees */
   1.392 +    for (i=0; i<cluster->nentries; i++) {
   1.393 +      /* get properties of entry */
   1.394 +      npoints = cluster->entries[i].npoints;
   1.395 +      points = PGL_ENTRY_POINTS(cluster, i);
   1.396 +      /* get longitude of first point of entry */
   1.397 +      value = points[0].lon;
   1.398 +      /* initialize lon_min and lon_max with longitude of first point */
   1.399 +      lon_min = value;
   1.400 +      lon_max = value;
   1.401 +      /* determine east/west orientation of first point and calculate antipodal
   1.402 +         longitude (Note: rounding required here) */
   1.403 +      if      (value < 0) { lon_dir = -1; lon_break = pgl_round(value + 180); }
   1.404 +      else if (value > 0) { lon_dir =  1; lon_break = pgl_round(value - 180); }
   1.405 +      else lon_dir = 0;
   1.406 +      /* iterate over all other points in entry */
   1.407 +      for (j=1; j<npoints; j++) {
   1.408 +        /* consider longitude wrap-around */
   1.409 +        value = points[j].lon;
   1.410 +        if      (lon_dir<0 && value>lon_break) value = pgl_round(value - 360);
   1.411 +        else if (lon_dir>0 && value<lon_break) value = pgl_round(value + 360);
   1.412 +        /* update lon_min and lon_max */
   1.413 +        if      (value < lon_min) lon_min = value;
   1.414 +        else if (value > lon_max) lon_max = value;
   1.415 +        /* return false if 180 degrees or more are covered */
   1.416 +        if (lon_max - lon_min >= 180) return false;
   1.417 +      }
   1.418 +    }
   1.419 +    /* iterate over all points of all entries and calculate arbitrary center
   1.420 +       point for bounding circle (best if center point minimizes the radius,
   1.421 +       but some error is allowed here) */
   1.422 +    for (i=0; i<cluster->nentries; i++) {
   1.423 +      /* get properties of entry */
   1.424 +      npoints = cluster->entries[i].npoints;
   1.425 +      points = PGL_ENTRY_POINTS(cluster, i);
   1.426 +      /* check if first entry */
   1.427 +      if (i==0) {
   1.428 +        /* get longitude of first point of first entry in whole cluster */
   1.429 +        value = points[0].lon;
   1.430 +        /* initialize lon_min and lon_max with longitude of first point of
   1.431 +           first entry in whole cluster (used to determine if whole cluster
   1.432 +           covers a longitude range of 180 degrees or more) */
   1.433 +        lon_min = value;
   1.434 +        lon_max = value;
   1.435 +        /* determine east/west orientation of first point and calculate
   1.436 +           antipodal longitude (Note: rounding not necessary here) */
   1.437 +        if      (value < 0) { lon_dir = -1; lon_break = value + 180; }
   1.438 +        else if (value > 0) { lon_dir =  1; lon_break = value - 180; }
   1.439 +        else lon_dir = 0;
   1.440 +      }
   1.441 +      /* iterate over all points in entry */
   1.442 +      for (j=0; j<npoints; j++) {
   1.443 +        /* longitude wrap-around (Note: rounding not necessary here) */
   1.444 +        value = points[j].lon;
   1.445 +        if      (lon_dir < 0 && value > lon_break) value -= 360;
   1.446 +        else if (lon_dir > 0 && value < lon_break) value += 360;
   1.447 +        if      (value < lon_min) lon_min = value;
   1.448 +        else if (value > lon_max) lon_max = value;
   1.449 +        /* set bounding circle to cover whole earth if more than 180 degrees
   1.450 +           are covered */
   1.451 +        if (lon_max - lon_min >= 180) {
   1.452 +          cluster->bounding.center.lat = 0;
   1.453 +          cluster->bounding.center.lon = 0;
   1.454 +          cluster->bounding.radius = INFINITY;
   1.455 +          return true;
   1.456 +        }
   1.457 +        /* add point to bounding circle center (for average calculation) */
   1.458 +        cluster->bounding.center.lat += points[j].lat;
   1.459 +        cluster->bounding.center.lon += value;
   1.460 +      }
   1.461 +      /* count total number of points */
   1.462 +      total_npoints += npoints;
   1.463 +    }
   1.464 +    /* determine average latitude and longitude of cluster */
   1.465 +    cluster->bounding.center.lat /= total_npoints;
   1.466 +    cluster->bounding.center.lon /= total_npoints;
   1.467 +    /* normalize longitude of center of cluster bounding circle */
   1.468 +    if (cluster->bounding.center.lon < -180) {
   1.469 +      cluster->bounding.center.lon += 360;
   1.470 +    }
   1.471 +    else if (cluster->bounding.center.lon > 180) {
   1.472 +      cluster->bounding.center.lon -= 360;
   1.473 +    }
   1.474 +    /* round bounding circle center (useful if it is used by other functions) */
   1.475 +    cluster->bounding.center.lat = pgl_round(cluster->bounding.center.lat);
   1.476 +    cluster->bounding.center.lon = pgl_round(cluster->bounding.center.lon);
   1.477 +    /* calculate radius of bounding circle */
   1.478 +    for (i=0; i<cluster->nentries; i++) {
   1.479 +      npoints = cluster->entries[i].npoints;
   1.480 +      points = PGL_ENTRY_POINTS(cluster, i);
   1.481 +      for (j=0; j<npoints; j++) {
   1.482 +        value = pgl_distance(
   1.483 +          cluster->bounding.center.lat, cluster->bounding.center.lon,
   1.484 +          points[j].lat, points[j].lon
   1.485 +        );
   1.486 +        if (value > cluster->bounding.radius) cluster->bounding.radius = value;
   1.487 +      }
   1.488 +    }
   1.489 +  }
   1.490 +  /* return true (east/west orientation is unambiguous) */
   1.491 +  return true;
   1.492 +}
   1.493 +
   1.494 +/* check if point is inside cluster */
   1.495 +/* (if point is on perimeter, then true is returned if and only if
   1.496 +   strict == false) */
   1.497 +static bool pgl_point_in_cluster(
   1.498 +  pgl_point *point,
   1.499 +  pgl_cluster *cluster,
   1.500 +  bool strict
   1.501 +) {
   1.502 +  int i, j, k;  /* i: entry, j: point in entry, k: next point in entry */
   1.503 +  int entrytype;         /* type of entry */
   1.504 +  int npoints;           /* number of points in entry */
   1.505 +  pgl_point *points;     /* array of points in entry */
   1.506 +  int lon_dir = 0;       /* first vertex west (-1) or east (+1) */
   1.507 +  double lon_break = 0;  /* antipodal longitude of first vertex */
   1.508 +  double lat0 = point->lat;  /* latitude of point */
   1.509 +  double lon0;           /* (adjusted) longitude of point */
   1.510 +  double lat1, lon1;     /* latitude and (adjusted) longitude of vertex */
   1.511 +  double lat2, lon2;     /* latitude and (adjusted) longitude of next vertex */
   1.512 +  double lon;            /* longitude of intersection */
   1.513 +  int counter = 0;       /* counter for intersections east of point */
   1.514 +  /* iterate over all entries */
   1.515 +  for (i=0; i<cluster->nentries; i++) {
   1.516 +    /* get type of entry */
   1.517 +    entrytype = cluster->entries[i].entrytype;
   1.518 +    /* skip all entries but polygons if perimeters are excluded */
   1.519 +    if (strict && entrytype != PGL_ENTRY_POLYGON) continue;
   1.520 +    /* get points of entry */
   1.521 +    npoints = cluster->entries[i].npoints;
   1.522 +    points = PGL_ENTRY_POINTS(cluster, i);
   1.523 +    /* determine east/west orientation of first point of entry and calculate
   1.524 +       antipodal longitude */
   1.525 +    lon_break = points[0].lon;
   1.526 +    if      (lon_break < 0) { lon_dir = -1; lon_break += 180; }
   1.527 +    else if (lon_break > 0) { lon_dir =  1; lon_break -= 180; }
   1.528 +    else lon_dir = 0;
   1.529 +    /* get longitude of point */
   1.530 +    lon0 = point->lon;
   1.531 +    /* consider longitude wrap-around for point */
   1.532 +    if      (lon_dir < 0 && lon0 > lon_break) lon0 = pgl_round(lon0 - 360);
   1.533 +    else if (lon_dir > 0 && lon0 < lon_break) lon0 = pgl_round(lon0 + 360);
   1.534 +    /* iterate over all edges and vertices */
   1.535 +    for (j=0; j<npoints; j++) {
   1.536 +      /* return if point is on vertex of polygon */
   1.537 +      if (pgl_point_cmp(point, &(points[j])) == 0) return !strict;
   1.538 +      /* calculate index of next vertex */
   1.539 +      k = (j+1) % npoints;
   1.540 +      /* skip last edge unless entry is (closed) outline or polygon */
   1.541 +      if (
   1.542 +        k == 0 &&
   1.543 +        entrytype != PGL_ENTRY_OUTLINE &&
   1.544 +        entrytype != PGL_ENTRY_POLYGON
   1.545 +      ) continue;
   1.546 +      /* use previously calculated values for lat1 and lon1 if possible */
   1.547 +      if (j) {
   1.548 +        lat1 = lat2;
   1.549 +        lon1 = lon2;
   1.550 +      } else {
   1.551 +        /* otherwise get latitude and longitude values of first vertex */
   1.552 +        lat1 = points[0].lat;
   1.553 +        lon1 = points[0].lon;
   1.554 +        /* and consider longitude wrap-around for first vertex */
   1.555 +        if      (lon_dir < 0 && lon1 > lon_break) lon1 = pgl_round(lon1 - 360);
   1.556 +        else if (lon_dir > 0 && lon1 < lon_break) lon1 = pgl_round(lon1 + 360);
   1.557 +      }
   1.558 +      /* get latitude and longitude of next vertex */
   1.559 +      lat2 = points[k].lat;
   1.560 +      lon2 = points[k].lon;
   1.561 +      /* consider longitude wrap-around for next vertex */
   1.562 +      if      (lon_dir < 0 && lon2 > lon_break) lon2 = pgl_round(lon2 - 360);
   1.563 +      else if (lon_dir > 0 && lon2 < lon_break) lon2 = pgl_round(lon2 + 360);
   1.564 +      /* return if point is on horizontal (west to east) edge of polygon */
   1.565 +      if (
   1.566 +        lat0 == lat1 && lat0 == lat2 &&
   1.567 +        ( (lon0 >= lon1 && lon0 <= lon2) || (lon0 >= lon2 && lon0 <= lon1) )
   1.568 +      ) return !strict;
   1.569 +      /* check if edge crosses east/west line of point */
   1.570 +      if ((lat1 < lat0 && lat2 >= lat0) || (lat2 < lat0 && lat1 >= lat0)) {
   1.571 +        /* calculate longitude of intersection */
   1.572 +        lon = (lon1 * (lat2-lat0) + lon2 * (lat0-lat1)) / (lat2-lat1);
   1.573 +        /* return if intersection goes (approximately) through point */
   1.574 +        if (pgl_round(lon) == lon0) return !strict;
   1.575 +        /* count intersection if east of point and entry is polygon*/
   1.576 +        if (entrytype == PGL_ENTRY_POLYGON && lon > lon0) counter++;
   1.577 +      }
   1.578 +    }
   1.579 +  }
   1.580 +  /* return true if number of intersections is odd */
   1.581 +  return counter & 1;
   1.582 +}
   1.583 +
   1.584 +/* check if all points of the second cluster are strictly inside the first
   1.585 +   cluster */
   1.586 +static inline bool pgl_all_cluster_points_strictly_in_cluster(
   1.587 +  pgl_cluster *outer, pgl_cluster *inner
   1.588 +) {
   1.589 +  int i, j;           /* i: entry, j: point in entry */
   1.590 +  int npoints;        /* number of points in entry */
   1.591 +  pgl_point *points;  /* array of points in entry */
   1.592 +  /* iterate over all entries of "inner" cluster */
   1.593 +  for (i=0; i<inner->nentries; i++) {
   1.594 +    /* get properties of entry */
   1.595 +    npoints = inner->entries[i].npoints;
   1.596 +    points = PGL_ENTRY_POINTS(inner, i);
   1.597 +    /* iterate over all points in entry of "inner" cluster */
   1.598 +    for (j=0; j<npoints; j++) {
   1.599 +      /* return false if one point of inner cluster is not in outer cluster */
   1.600 +      if (!pgl_point_in_cluster(points+j, outer, true)) return false;
   1.601 +    }
   1.602 +  }
   1.603 +  /* otherwise return true */
   1.604 +  return true;
   1.605 +}
   1.606 +
   1.607 +/* check if any point the second cluster is inside the first cluster */
   1.608 +static inline bool pgl_any_cluster_points_in_cluster(
   1.609 +  pgl_cluster *outer, pgl_cluster *inner
   1.610 +) {
   1.611 +  int i, j;           /* i: entry, j: point in entry */
   1.612 +  int npoints;        /* number of points in entry */
   1.613 +  pgl_point *points;  /* array of points in entry */
   1.614 +  /* iterate over all entries of "inner" cluster */
   1.615 +  for (i=0; i<inner->nentries; i++) {
   1.616 +    /* get properties of entry */
   1.617 +    npoints = inner->entries[i].npoints;
   1.618 +    points = PGL_ENTRY_POINTS(inner, i);
   1.619 +    /* iterate over all points in entry of "inner" cluster */
   1.620 +    for (j=0; j<npoints; j++) {
   1.621 +      /* return true if one point of inner cluster is in outer cluster */
   1.622 +      if (pgl_point_in_cluster(points+j, outer, false)) return true;
   1.623 +    }
   1.624 +  }
   1.625 +  /* otherwise return false */
   1.626 +  return false;
   1.627 +}
   1.628 +
   1.629 +/* check if line segment strictly crosses line (not just touching) */
   1.630 +static inline bool pgl_lseg_crosses_line(
   1.631 +  double seg_x1,  double seg_y1,  double seg_x2,  double seg_y2,
   1.632 +  double line_x1, double line_y1, double line_x2, double line_y2
   1.633 +) {
   1.634 +  return (
   1.635 +    (
   1.636 +      (seg_x1-line_x1) * (line_y2-line_y1) -
   1.637 +      (seg_y1-line_y1) * (line_x2-line_x1)
   1.638 +    ) * (
   1.639 +      (seg_x2-line_x1) * (line_y2-line_y1) -
   1.640 +      (seg_y2-line_y1) * (line_x2-line_x1)
   1.641 +    )
   1.642 +  ) < 0;
   1.643 +}
   1.644 +
   1.645 +/* check if paths and outlines of two clusters strictly overlap (not just
   1.646 +   touching) */
   1.647 +static bool pgl_outlines_overlap(
   1.648 +  pgl_cluster *cluster1, pgl_cluster *cluster2
   1.649 +) {
   1.650 +  int i1, j1, k1;  /* i: entry, j: point in entry, k: next point in entry */
   1.651 +  int i2, j2, k2;
   1.652 +  int entrytype1, entrytype2;     /* type of entry */
   1.653 +  int npoints1, npoints2;         /* number of points in entry */
   1.654 +  pgl_point *points1;             /* array of points in entry of cluster1 */
   1.655 +  pgl_point *points2;             /* array of points in entry of cluster2 */
   1.656 +  int lon_dir1, lon_dir2;         /* first vertex west (-1) or east (+1) */
   1.657 +  double lon_break1, lon_break2;  /* antipodal longitude of first vertex */
   1.658 +  double lat11, lon11;  /* latitude and (adjusted) longitude of vertex */
   1.659 +  double lat12, lon12;  /* latitude and (adjusted) longitude of next vertex */
   1.660 +  double lat21, lon21;  /* latitude and (adjusted) longitudes for cluster2 */
   1.661 +  double lat22, lon22;
   1.662 +  double wrapvalue;     /* temporary helper value to adjust wrap-around */  
   1.663 +  /* iterate over all entries of cluster1 */
   1.664 +  for (i1=0; i1<cluster1->nentries; i1++) {
   1.665 +    /* get properties of entry in cluster1 and skip points */
   1.666 +    npoints1 = cluster1->entries[i1].npoints;
   1.667 +    if (npoints1 < 2) continue;
   1.668 +    entrytype1 = cluster1->entries[i1].entrytype;
   1.669 +    points1 = PGL_ENTRY_POINTS(cluster1, i1);
   1.670 +    /* determine east/west orientation of first point and calculate antipodal
   1.671 +       longitude */
   1.672 +    lon_break1 = points1[0].lon;
   1.673 +    if (lon_break1 < 0) {
   1.674 +      lon_dir1   = -1;
   1.675 +      lon_break1 = pgl_round(lon_break1 + 180);
   1.676 +    } else if (lon_break1 > 0) {
   1.677 +      lon_dir1   = 1;
   1.678 +      lon_break1 = pgl_round(lon_break1 - 180);
   1.679 +    } else lon_dir1 = 0;
   1.680 +    /* iterate over all edges and vertices in cluster1 */
   1.681 +    for (j1=0; j1<npoints1; j1++) {
   1.682 +      /* calculate index of next vertex */
   1.683 +      k1 = (j1+1) % npoints1;
   1.684 +      /* skip last edge unless entry is (closed) outline or polygon */
   1.685 +      if (
   1.686 +        k1 == 0 &&
   1.687 +        entrytype1 != PGL_ENTRY_OUTLINE &&
   1.688 +        entrytype1 != PGL_ENTRY_POLYGON
   1.689 +      ) continue;
   1.690 +      /* use previously calculated values for lat1 and lon1 if possible */
   1.691 +      if (j1) {
   1.692 +        lat11 = lat12;
   1.693 +        lon11 = lon12;
   1.694 +      } else {
   1.695 +        /* otherwise get latitude and longitude values of first vertex */
   1.696 +        lat11 = points1[0].lat;
   1.697 +        lon11 = points1[0].lon;
   1.698 +        /* and consider longitude wrap-around for first vertex */
   1.699 +        if      (lon_dir1<0 && lon11>lon_break1) lon11 = pgl_round(lon11-360);
   1.700 +        else if (lon_dir1>0 && lon11<lon_break1) lon11 = pgl_round(lon11+360);
   1.701 +      }
   1.702 +      /* get latitude and longitude of next vertex */
   1.703 +      lat12 = points1[k1].lat;
   1.704 +      lon12 = points1[k1].lon;
   1.705 +      /* consider longitude wrap-around for next vertex */
   1.706 +      if      (lon_dir1<0 && lon12>lon_break1) lon12 = pgl_round(lon12-360);
   1.707 +      else if (lon_dir1>0 && lon12<lon_break1) lon12 = pgl_round(lon12+360);
   1.708 +      /* skip degenerated edges */
   1.709 +      if (lat11 == lat12 && lon11 == lon12) continue;
   1.710 +      /* iterate over all entries of cluster2 */
   1.711 +      for (i2=0; i2<cluster2->nentries; i2++) {
   1.712 +        /* get points and number of points of entry in cluster2 */
   1.713 +        npoints2 = cluster2->entries[i2].npoints;
   1.714 +        if (npoints2 < 2) continue;
   1.715 +        entrytype2 = cluster2->entries[i2].entrytype;
   1.716 +        points2 = PGL_ENTRY_POINTS(cluster2, i2);
   1.717 +        /* determine east/west orientation of first point and calculate antipodal
   1.718 +           longitude */
   1.719 +        lon_break2 = points2[0].lon;
   1.720 +        if (lon_break2 < 0) {
   1.721 +          lon_dir2   = -1;
   1.722 +          lon_break2 = pgl_round(lon_break2 + 180);
   1.723 +        } else if (lon_break2 > 0) {
   1.724 +          lon_dir2   = 1;
   1.725 +          lon_break2 = pgl_round(lon_break2 - 180);
   1.726 +        } else lon_dir2 = 0;
   1.727 +        /* iterate over all edges and vertices in cluster2 */
   1.728 +        for (j2=0; j2<npoints2; j2++) {
   1.729 +          /* calculate index of next vertex */
   1.730 +          k2 = (j2+1) % npoints2;
   1.731 +          /* skip last edge unless entry is (closed) outline or polygon */
   1.732 +          if (
   1.733 +            k2 == 0 &&
   1.734 +            entrytype2 != PGL_ENTRY_OUTLINE &&
   1.735 +            entrytype2 != PGL_ENTRY_POLYGON
   1.736 +          ) continue;
   1.737 +          /* use previously calculated values for lat1 and lon1 if possible */
   1.738 +          if (j2) {
   1.739 +            lat21 = lat22;
   1.740 +            lon21 = lon22;
   1.741 +          } else {
   1.742 +            /* otherwise get latitude and longitude values of first vertex */
   1.743 +            lat21 = points2[0].lat;
   1.744 +            lon21 = points2[0].lon;
   1.745 +            /* and consider longitude wrap-around for first vertex */
   1.746 +            if      (lon_dir2<0 && lon21>lon_break2) lon21 = pgl_round(lon21-360);
   1.747 +            else if (lon_dir2>0 && lon21<lon_break2) lon21 = pgl_round(lon21+360);
   1.748 +          }
   1.749 +          /* get latitude and longitude of next vertex */
   1.750 +          lat22 = points2[k2].lat;
   1.751 +          lon22 = points2[k2].lon;
   1.752 +          /* consider longitude wrap-around for next vertex */
   1.753 +          if      (lon_dir2<0 && lon22>lon_break2) lon22 = pgl_round(lon22-360);
   1.754 +          else if (lon_dir2>0 && lon22<lon_break2) lon22 = pgl_round(lon22+360);
   1.755 +          /* skip degenerated edges */
   1.756 +          if (lat21 == lat22 && lon21 == lon22) continue;
   1.757 +          /* perform another wrap-around where necessary */
   1.758 +          /* TODO: improve performance of whole wrap-around mechanism */
   1.759 +          wrapvalue = (lon21 + lon22) - (lon11 + lon12);
   1.760 +          if (wrapvalue > 360) {
   1.761 +            lon21 = pgl_round(lon21 - 360);
   1.762 +            lon22 = pgl_round(lon22 - 360);
   1.763 +          } else if (wrapvalue < -360) {
   1.764 +            lon21 = pgl_round(lon21 + 360);
   1.765 +            lon22 = pgl_round(lon22 + 360);
   1.766 +          }
   1.767 +          /* return true if segments overlap */
   1.768 +          if (
   1.769 +            pgl_lseg_crosses_line(
   1.770 +              lat11, lon11, lat12, lon12,
   1.771 +              lat21, lon21, lat22, lon22
   1.772 +            ) && pgl_lseg_crosses_line(
   1.773 +              lat21, lon21, lat22, lon22,
   1.774 +              lat11, lon11, lat12, lon12
   1.775 +            )
   1.776 +          ) {
   1.777 +            return true;
   1.778 +          }
   1.779 +        }
   1.780 +      }
   1.781 +    }
   1.782 +  }
   1.783 +  /* otherwise return false */
   1.784 +  return false;
   1.785 +}
   1.786 +
   1.787 +/* check if second cluster is completely contained in first cluster */
   1.788 +static bool pgl_cluster_in_cluster(pgl_cluster *outer, pgl_cluster *inner) {
   1.789 +  if (!pgl_all_cluster_points_strictly_in_cluster(outer, inner)) return false;
   1.790 +  if (pgl_any_cluster_points_in_cluster(inner, outer)) return false;
   1.791 +  if (pgl_outlines_overlap(outer, inner)) return false;
   1.792 +  return true;
   1.793 +}
   1.794 +
   1.795 +/* check if two clusters overlap */
   1.796 +static bool pgl_clusters_overlap(
   1.797 +  pgl_cluster *cluster1, pgl_cluster *cluster2
   1.798 +) {
   1.799 +  if (pgl_any_cluster_points_in_cluster(cluster1, cluster2)) return true;
   1.800 +  if (pgl_any_cluster_points_in_cluster(cluster2, cluster1)) return true;
   1.801 +  if (pgl_outlines_overlap(cluster1, cluster2)) return true;
   1.802 +  return false;
   1.803 +}
   1.804 +
   1.805 +
   1.806 +/* calculate (approximate) distance between point and cluster */
   1.807 +static double pgl_point_cluster_distance(pgl_point *point, pgl_cluster *cluster) {
   1.808 +  double comp;           /* square of compression of meridians */
   1.809 +  int i, j, k;  /* i: entry, j: point in entry, k: next point in entry */
   1.810 +  int entrytype;         /* type of entry */
   1.811 +  int npoints;           /* number of points in entry */
   1.812 +  pgl_point *points;     /* array of points in entry */
   1.813 +  int lon_dir = 0;       /* first vertex west (-1) or east (+1) */
   1.814 +  double lon_break = 0;  /* antipodal longitude of first vertex */
   1.815 +  double lon_min = 0;    /* minimum (adjusted) longitude of entry vertices */
   1.816 +  double lon_max = 0;    /* maximum (adjusted) longitude of entry vertices */
   1.817 +  double lat0 = point->lat;  /* latitude of point */
   1.818 +  double lon0;           /* (adjusted) longitude of point */
   1.819 +  double lat1, lon1;     /* latitude and (adjusted) longitude of vertex */
   1.820 +  double lat2, lon2;     /* latitude and (adjusted) longitude of next vertex */
   1.821 +  double s;              /* scalar for vector calculations */
   1.822 +  double dist;           /* distance calculated in one step */
   1.823 +  double min_dist = INFINITY;   /* minimum distance */
   1.824 +  /* distance is zero if point is contained in cluster */
   1.825 +  if (pgl_point_in_cluster(point, cluster, false)) return 0;
   1.826 +  /* calculate (approximate) square compression of meridians */
   1.827 +  /* TODO: use more exact formula based on WGS-84 */
   1.828 +  comp = cos((lat0 / 180.0) * M_PI);
   1.829 +  comp *= comp;
   1.830 +  /* iterate over all entries */
   1.831 +  for (i=0; i<cluster->nentries; i++) {
   1.832 +    /* get properties of entry */
   1.833 +    entrytype = cluster->entries[i].entrytype;
   1.834 +    npoints = cluster->entries[i].npoints;
   1.835 +    points = PGL_ENTRY_POINTS(cluster, i);
   1.836 +    /* determine east/west orientation of first point of entry and calculate
   1.837 +       antipodal longitude */
   1.838 +    lon_break = points[0].lon;
   1.839 +    if      (lon_break < 0) { lon_dir = -1; lon_break += 180; }
   1.840 +    else if (lon_break > 0) { lon_dir =  1; lon_break -= 180; }
   1.841 +    else lon_dir = 0;
   1.842 +    /* determine covered longitude range */
   1.843 +    for (j=0; j<npoints; j++) {
   1.844 +      /* get longitude of vertex */
   1.845 +      lon1 = points[j].lon;
   1.846 +      /* adjust longitude to fix potential wrap-around */
   1.847 +      if      (lon_dir < 0 && lon1 > lon_break) lon1 -= 360;
   1.848 +      else if (lon_dir > 0 && lon1 < lon_break) lon1 += 360;
   1.849 +      /* update minimum and maximum longitude of polygon */
   1.850 +      if (j == 0 || lon1 < lon_min) lon_min = lon1;
   1.851 +      if (j == 0 || lon1 > lon_max) lon_max = lon1;
   1.852 +    }
   1.853 +    /* adjust longitude wrap-around according to full longitude range */
   1.854 +    lon_break = (lon_max + lon_min) / 2;
   1.855 +    if      (lon_break < 0) { lon_dir = -1; lon_break += 180; }
   1.856 +    else if (lon_break > 0) { lon_dir =  1; lon_break -= 180; }
   1.857 +    /* get longitude of point */
   1.858 +    lon0 = point->lon;
   1.859 +    /* consider longitude wrap-around for point */
   1.860 +    if      (lon_dir < 0 && lon0 > lon_break) lon0 -= 360;
   1.861 +    else if (lon_dir > 0 && lon0 < lon_break) lon0 += 360;
   1.862 +    /* iterate over all edges and vertices */
   1.863 +    for (j=0; j<npoints; j++) {
   1.864 +      /* use previously calculated values for lat1 and lon1 if possible */
   1.865 +      if (j) {
   1.866 +        lat1 = lat2;
   1.867 +        lon1 = lon2;
   1.868 +      } else {
   1.869 +        /* otherwise get latitude and longitude values of first vertex */
   1.870 +        lat1 = points[0].lat;
   1.871 +        lon1 = points[0].lon;
   1.872 +        /* and consider longitude wrap-around for first vertex */
   1.873 +        if      (lon_dir < 0 && lon1 > lon_break) lon1 -= 360;
   1.874 +        else if (lon_dir > 0 && lon1 < lon_break) lon1 += 360;
   1.875 +      }
   1.876 +      /* calculate distance to vertex */
   1.877 +      dist = pgl_distance(lat0, lon0, lat1, lon1);
   1.878 +      /* store calculated distance if smallest */
   1.879 +      if (dist < min_dist) min_dist = dist;
   1.880 +      /* calculate index of next vertex */
   1.881 +      k = (j+1) % npoints;
   1.882 +      /* skip last edge unless entry is (closed) outline or polygon */
   1.883 +      if (
   1.884 +        k == 0 &&
   1.885 +        entrytype != PGL_ENTRY_OUTLINE &&
   1.886 +        entrytype != PGL_ENTRY_POLYGON
   1.887 +      ) continue;
   1.888 +      /* get latitude and longitude of next vertex */
   1.889 +      lat2 = points[k].lat;
   1.890 +      lon2 = points[k].lon;
   1.891 +      /* consider longitude wrap-around for next vertex */
   1.892 +      if      (lon_dir < 0 && lon2 > lon_break) lon2 -= 360;
   1.893 +      else if (lon_dir > 0 && lon2 < lon_break) lon2 += 360;
   1.894 +      /* go to next vertex and edge if edge is degenerated */
   1.895 +      if (lat1 == lat2 && lon1 == lon2) continue;
   1.896 +      /* otherwise test if point can be projected onto edge of polygon */
   1.897 +      s = (
   1.898 +        ((lat0-lat1) * (lat2-lat1) + comp * (lon0-lon1) * (lon2-lon1)) /
   1.899 +        ((lat2-lat1) * (lat2-lat1) + comp * (lon2-lon1) * (lon2-lon1))
   1.900 +      );
   1.901 +      /* go to next vertex and edge if point cannot be projected */
   1.902 +      if (!(s > 0 && s < 1)) continue;
   1.903 +      /* calculate distance from original point to projected point */
   1.904 +      dist = pgl_distance(
   1.905 +        lat0, lon0,
   1.906 +        lat1 + s * (lat2-lat1),
   1.907 +        lon1 + s * (lon2-lon1)
   1.908 +      );
   1.909 +      /* store calculated distance if smallest */
   1.910 +      if (dist < min_dist) min_dist = dist;
   1.911 +    }
   1.912 +  }
   1.913 +  /* return minimum distance */
   1.914 +  return min_dist;
   1.915 +}
   1.916 +
   1.917 +/* calculate (approximate) distance between two clusters */
   1.918 +static double pgl_cluster_distance(pgl_cluster *cluster1, pgl_cluster *cluster2) {
   1.919 +  int i, j;                    /* i: entry, j: point in entry */
   1.920 +  int npoints;                 /* number of points in entry */
   1.921 +  pgl_point *points;           /* array of points in entry */
   1.922 +  double dist;                 /* distance calculated in one step */
   1.923 +  double min_dist = INFINITY;  /* minimum distance */
   1.924 +  /* consider distance from each point in one cluster to the whole other */
   1.925 +  for (i=0; i<cluster1->nentries; i++) {
   1.926 +    npoints = cluster1->entries[i].npoints;
   1.927 +    points = PGL_ENTRY_POINTS(cluster1, i);
   1.928 +    for (j=0; j<npoints; j++) {
   1.929 +      dist = pgl_point_cluster_distance(points+j, cluster2);
   1.930 +      if (dist == 0) return dist;
   1.931 +      if (dist < min_dist) min_dist = dist;
   1.932 +    }
   1.933 +  }
   1.934 +  /* consider distance from each point in other cluster to the first cluster */
   1.935 +  for (i=0; i<cluster2->nentries; i++) {
   1.936 +    npoints = cluster2->entries[i].npoints;
   1.937 +    points = PGL_ENTRY_POINTS(cluster2, i);
   1.938 +    for (j=0; j<npoints; j++) {
   1.939 +      dist = pgl_point_cluster_distance(points+j, cluster1);
   1.940 +      if (dist == 0) return dist;
   1.941 +      if (dist < min_dist) min_dist = dist;
   1.942 +    }
   1.943 +  }
   1.944 +  return min_dist;
   1.945 +}
   1.946 +
   1.947 +/* estimator function for distance between box and point */
   1.948 +/* always returns a smaller value than actually correct or zero */
   1.949 +static double pgl_estimate_point_box_distance(pgl_point *point, pgl_box *box) {
   1.950 +  double dlon;      /* longitude range of box (delta longitude) */
   1.951 +  double distance;  /* return value */
   1.952 +  /* return infinity if box is empty */
   1.953 +  if (box->lat_min > box->lat_max) return INFINITY;
   1.954 +  /* return zero if point is inside box */
   1.955 +  if (pgl_point_in_box(point, box)) return 0;
   1.956 +  /* calculate delta longitude */
   1.957 +  dlon = box->lon_max - box->lon_min;
   1.958 +  if (dlon < 0) dlon += 360;  /* 180th meridian crossed */
   1.959 +  /* if delta longitude is greater than 150 degrees, perform safe fall-back */
   1.960 +  if (dlon > 150) return 0;
   1.961 +  /* calculate lower limit for distance (formula below requires dlon <= 150) */
   1.962 +  /* TODO: provide better estimation function to improve performance */
   1.963 +  distance = (
   1.964 +    (1.0-1e-14) * pgl_distance(
   1.965 +      point->lat,
   1.966 +      point->lon,
   1.967 +      (box->lat_min + box->lat_max) / 2,
   1.968 +      box->lon_min + dlon/2
   1.969 +    ) - pgl_distance(
   1.970 +      box->lat_min, box->lon_min,
   1.971 +      box->lat_max, box->lon_max
   1.972 +    )
   1.973 +  );
   1.974 +  /* truncate negative results to zero */
   1.975 +  if (distance <= 0) distance = 0;
   1.976 +  /* return result */
   1.977 +  return distance;
   1.978 +}
   1.979 +
   1.980 +
   1.981 +/*-------------------------------------------------*
   1.982 + *  geographic index based on space-filling curve  *
   1.983 + *-------------------------------------------------*/
   1.984 +
   1.985 +/* number of bytes used for geographic (center) position in keys */
   1.986 +#define PGL_KEY_LATLON_BYTELEN 7
   1.987 +
   1.988 +/* maximum reference value for logarithmic size of geographic objects */
   1.989 +#define PGL_AREAKEY_REFOBJSIZE (PGL_DIAMETER/3.0)  /* can be tweaked */
   1.990 +
   1.991 +/* pointer to index key (either pgl_pointkey or pgl_areakey) */
   1.992 +typedef unsigned char *pgl_keyptr;
   1.993 +
   1.994 +/* index key for points (objects with zero area) on the spheroid */
   1.995 +/* bit  0..55: interspersed bits of latitude and longitude,
   1.996 +   bit 56..57: always zero,
   1.997 +   bit 58..63: node depth in hypothetic (full) tree from 0 to 56 (incl.) */
   1.998 +typedef unsigned char pgl_pointkey[PGL_KEY_LATLON_BYTELEN+1];
   1.999 +
  1.1000 +/* index key for geographic objects on spheroid with area greater than zero */
  1.1001 +/* bit  0..55: interspersed bits of latitude and longitude of center point,
  1.1002 +   bit     56: always set to 1,
  1.1003 +   bit 57..63: node depth in hypothetic (full) tree from 0 to (2*56)+1 (incl.),
  1.1004 +   bit 64..71: logarithmic object size from 0 to 56+1 = 57 (incl.), but set to
  1.1005 +               PGL_KEY_OBJSIZE_EMPTY (with interspersed bits = 0 and node depth
  1.1006 +               = 113) for empty objects, and set to PGL_KEY_OBJSIZE_UNIVERSAL
  1.1007 +               (with interspersed bits = 0 and node depth = 0) for keys which
  1.1008 +               cover both empty and non-empty objects */
  1.1009 +
  1.1010 +typedef unsigned char pgl_areakey[PGL_KEY_LATLON_BYTELEN+2];
  1.1011 +
  1.1012 +/* helper macros for reading/writing index keys */
  1.1013 +#define PGL_KEY_NODEDEPTH_OFFSET  PGL_KEY_LATLON_BYTELEN
  1.1014 +#define PGL_KEY_OBJSIZE_OFFSET    (PGL_KEY_NODEDEPTH_OFFSET+1)
  1.1015 +#define PGL_POINTKEY_MAXDEPTH     (PGL_KEY_LATLON_BYTELEN*8)
  1.1016 +#define PGL_AREAKEY_MAXDEPTH      (2*PGL_POINTKEY_MAXDEPTH+1)
  1.1017 +#define PGL_AREAKEY_MAXOBJSIZE    (PGL_POINTKEY_MAXDEPTH+1)
  1.1018 +#define PGL_AREAKEY_TYPEMASK      0x80
  1.1019 +#define PGL_KEY_LATLONBIT(key, n) ((key)[(n)/8] & (0x80 >> ((n)%8)))
  1.1020 +#define PGL_KEY_LATLONBIT_DIFF(key1, key2, n) \
  1.1021 +                                  ( PGL_KEY_LATLONBIT(key1, n) ^ \
  1.1022 +                                    PGL_KEY_LATLONBIT(key2, n) )
  1.1023 +#define PGL_KEY_IS_AREAKEY(key)   ((key)[PGL_KEY_NODEDEPTH_OFFSET] & \
  1.1024 +                                    PGL_AREAKEY_TYPEMASK)
  1.1025 +#define PGL_KEY_NODEDEPTH(key)    ((key)[PGL_KEY_NODEDEPTH_OFFSET] & \
  1.1026 +                                    (PGL_AREAKEY_TYPEMASK-1))
  1.1027 +#define PGL_KEY_OBJSIZE(key)      ((key)[PGL_KEY_OBJSIZE_OFFSET])
  1.1028 +#define PGL_KEY_OBJSIZE_EMPTY     126
  1.1029 +#define PGL_KEY_OBJSIZE_UNIVERSAL 127
  1.1030 +#define PGL_KEY_IS_EMPTY(key)     ( PGL_KEY_IS_AREAKEY(key) && \
  1.1031 +                                    (key)[PGL_KEY_OBJSIZE_OFFSET] == \
  1.1032 +                                    PGL_KEY_OBJSIZE_EMPTY )
  1.1033 +#define PGL_KEY_IS_UNIVERSAL(key) ( PGL_KEY_IS_AREAKEY(key) && \
  1.1034 +                                    (key)[PGL_KEY_OBJSIZE_OFFSET] == \
  1.1035 +                                    PGL_KEY_OBJSIZE_UNIVERSAL )
  1.1036 +
  1.1037 +/* set area key to match empty objects only */
  1.1038 +static void pgl_key_set_empty(pgl_keyptr key) {
  1.1039 +  memset(key, 0, sizeof(pgl_areakey));
  1.1040 +  /* Note: setting node depth to maximum is required for picksplit function */
  1.1041 +  key[PGL_KEY_NODEDEPTH_OFFSET] = PGL_AREAKEY_TYPEMASK | PGL_AREAKEY_MAXDEPTH;
  1.1042 +  key[PGL_KEY_OBJSIZE_OFFSET] = PGL_KEY_OBJSIZE_EMPTY;
  1.1043 +}
  1.1044 +
  1.1045 +/* set area key to match any object (including empty objects) */
  1.1046 +static void pgl_key_set_universal(pgl_keyptr key) {
  1.1047 +  memset(key, 0, sizeof(pgl_areakey));
  1.1048 +  key[PGL_KEY_NODEDEPTH_OFFSET] = PGL_AREAKEY_TYPEMASK;
  1.1049 +  key[PGL_KEY_OBJSIZE_OFFSET] = PGL_KEY_OBJSIZE_UNIVERSAL;
  1.1050 +}
  1.1051 +
  1.1052 +/* convert a point on earth into a max-depth key to be used in index */
  1.1053 +static void pgl_point_to_key(pgl_point *point, pgl_keyptr key) {
  1.1054 +  double lat = point->lat;
  1.1055 +  double lon = point->lon;
  1.1056 +  int i;
  1.1057 +  /* clear latitude and longitude bits */
  1.1058 +  memset(key, 0, PGL_KEY_LATLON_BYTELEN);
  1.1059 +  /* set node depth to maximum and type bit to zero */
  1.1060 +  key[PGL_KEY_NODEDEPTH_OFFSET] = PGL_POINTKEY_MAXDEPTH;
  1.1061 +  /* iterate over all latitude/longitude bit pairs */
  1.1062 +  for (i=0; i<PGL_POINTKEY_MAXDEPTH/2; i++) {
  1.1063 +    /* determine latitude bit */
  1.1064 +    if (lat >= 0) {
  1.1065 +      key[i/4] |= 0x80 >> (2*(i%4));
  1.1066 +      lat *= 2; lat -= 90;
  1.1067 +    } else {
  1.1068 +      lat *= 2; lat += 90;
  1.1069 +    }
  1.1070 +    /* determine longitude bit */
  1.1071 +    if (lon >= 0) {
  1.1072 +      key[i/4] |= 0x80 >> (2*(i%4)+1);
  1.1073 +      lon *= 2; lon -= 180;
  1.1074 +    } else {
  1.1075 +      lon *= 2; lon += 180;
  1.1076 +    }
  1.1077 +  }
  1.1078 +}
  1.1079 +
  1.1080 +/* convert a circle on earth into a max-depth key to be used in an index */
  1.1081 +static void pgl_circle_to_key(pgl_circle *circle, pgl_keyptr key) {
  1.1082 +  /* handle special case of empty circle */
  1.1083 +  if (circle->radius < 0) {
  1.1084 +    pgl_key_set_empty(key);
  1.1085 +    return;
  1.1086 +  }
  1.1087 +  /* perform same action as for point keys */
  1.1088 +  pgl_point_to_key(&(circle->center), key);
  1.1089 +  /* but overwrite type and node depth to fit area index key */
  1.1090 +  key[PGL_KEY_NODEDEPTH_OFFSET] = PGL_AREAKEY_TYPEMASK | PGL_AREAKEY_MAXDEPTH;
  1.1091 +  /* check if radius is greater than (or equal to) reference size */
  1.1092 +  /* (treat equal values as greater values for numerical safety) */
  1.1093 +  if (circle->radius >= PGL_AREAKEY_REFOBJSIZE) {
  1.1094 +    /* if yes, set logarithmic size to zero */
  1.1095 +    key[PGL_KEY_OBJSIZE_OFFSET] = 0;
  1.1096 +  } else {
  1.1097 +    /* otherwise, determine logarithmic size iteratively */
  1.1098 +    /* (one step is equivalent to a factor of sqrt(2)) */
  1.1099 +    double reference = PGL_AREAKEY_REFOBJSIZE / M_SQRT2;
  1.1100 +    int objsize = 1;
  1.1101 +    while (objsize < PGL_AREAKEY_MAXOBJSIZE) {
  1.1102 +      /* stop when radius is greater than (or equal to) adjusted reference */
  1.1103 +      /* (treat equal values as greater values for numerical safety) */
  1.1104 +      if (circle->radius >= reference) break;
  1.1105 +      reference /= M_SQRT2;
  1.1106 +      objsize++;
  1.1107 +    }
  1.1108 +    /* set logarithmic size to determined value */
  1.1109 +    key[PGL_KEY_OBJSIZE_OFFSET] = objsize;
  1.1110 +  }
  1.1111 +}
  1.1112 +
  1.1113 +/* check if one key is subkey of another key or vice versa */
  1.1114 +static bool pgl_keys_overlap(pgl_keyptr key1, pgl_keyptr key2) {
  1.1115 +  int i;  /* key bit offset (includes both lat/lon and log. obj. size bits) */
  1.1116 +  /* determine smallest depth */
  1.1117 +  int depth1 = PGL_KEY_NODEDEPTH(key1);
  1.1118 +  int depth2 = PGL_KEY_NODEDEPTH(key2);
  1.1119 +  int depth = (depth1 < depth2) ? depth1 : depth2;
  1.1120 +  /* check if keys are area keys (assuming that both keys have same type) */
  1.1121 +  if (PGL_KEY_IS_AREAKEY(key1)) {
  1.1122 +    int j = 0;  /* bit offset for logarithmic object size bits */
  1.1123 +    int k = 0;  /* bit offset for latitude and longitude */
  1.1124 +    /* fetch logarithmic object size information */
  1.1125 +    int objsize1 = PGL_KEY_OBJSIZE(key1);
  1.1126 +    int objsize2 = PGL_KEY_OBJSIZE(key2);
  1.1127 +    /* handle special cases for empty objects (universal and empty keys) */
  1.1128 +    if (
  1.1129 +      objsize1 == PGL_KEY_OBJSIZE_UNIVERSAL ||
  1.1130 +      objsize2 == PGL_KEY_OBJSIZE_UNIVERSAL
  1.1131 +    ) return true;
  1.1132 +    if (
  1.1133 +      objsize1 == PGL_KEY_OBJSIZE_EMPTY ||
  1.1134 +      objsize2 == PGL_KEY_OBJSIZE_EMPTY
  1.1135 +    ) return objsize1 == objsize2;
  1.1136 +    /* iterate through key bits */
  1.1137 +    for (i=0; i<depth; i++) {
  1.1138 +      /* every second bit is a bit describing the object size */
  1.1139 +      if (i%2 == 0) {
  1.1140 +        /* check if object size bit is different in both keys (objsize1 and
  1.1141 +           objsize2 describe the minimum index when object size bit is set) */
  1.1142 +        if (
  1.1143 +          (objsize1 <= j && objsize2 > j) ||
  1.1144 +          (objsize2 <= j && objsize1 > j)
  1.1145 +        ) {
  1.1146 +          /* bit differs, therefore keys are in separate branches */
  1.1147 +          return false;
  1.1148 +        }
  1.1149 +        /* increase bit counter for object size bits */
  1.1150 +        j++;
  1.1151 +      }
  1.1152 +      /* all other bits describe latitude and longitude */
  1.1153 +      else {
  1.1154 +        /* check if bit differs in both keys */
  1.1155 +        if (PGL_KEY_LATLONBIT_DIFF(key1, key2, k)) {
  1.1156 +          /* bit differs, therefore keys are in separate branches */
  1.1157 +          return false;
  1.1158 +        }
  1.1159 +        /* increase bit counter for latitude/longitude bits */
  1.1160 +        k++;
  1.1161 +      }
  1.1162 +    }
  1.1163 +  }
  1.1164 +  /* if not, keys are point keys */
  1.1165 +  else {
  1.1166 +    /* iterate through key bits */
  1.1167 +    for (i=0; i<depth; i++) {
  1.1168 +      /* check if bit differs in both keys */
  1.1169 +      if (PGL_KEY_LATLONBIT_DIFF(key1, key2, i)) {
  1.1170 +        /* bit differs, therefore keys are in separate branches */
  1.1171 +        return false;
  1.1172 +      }
  1.1173 +    }
  1.1174 +  }
  1.1175 +  /* return true because keys are in the same branch */
  1.1176 +  return true;
  1.1177 +}
  1.1178 +
  1.1179 +/* combine two keys into new key which covers both original keys */
  1.1180 +/* (result stored in first argument) */
  1.1181 +static void pgl_unite_keys(pgl_keyptr dst, pgl_keyptr src) {
  1.1182 +  int i;  /* key bit offset (includes both lat/lon and log. obj. size bits) */
  1.1183 +  /* determine smallest depth */
  1.1184 +  int depth1 = PGL_KEY_NODEDEPTH(dst);
  1.1185 +  int depth2 = PGL_KEY_NODEDEPTH(src);
  1.1186 +  int depth = (depth1 < depth2) ? depth1 : depth2;
  1.1187 +  /* check if keys are area keys (assuming that both keys have same type) */
  1.1188 +  if (PGL_KEY_IS_AREAKEY(dst)) {
  1.1189 +    pgl_areakey dstbuf = { 0, };  /* destination buffer (cleared) */
  1.1190 +    int j = 0;  /* bit offset for logarithmic object size bits */
  1.1191 +    int k = 0;  /* bit offset for latitude and longitude */
  1.1192 +    /* fetch logarithmic object size information */
  1.1193 +    int objsize1 = PGL_KEY_OBJSIZE(dst);
  1.1194 +    int objsize2 = PGL_KEY_OBJSIZE(src);
  1.1195 +    /* handle special cases for empty objects (universal and empty keys) */
  1.1196 +    if (
  1.1197 +      objsize1 > PGL_AREAKEY_MAXOBJSIZE ||
  1.1198 +      objsize2 > PGL_AREAKEY_MAXOBJSIZE
  1.1199 +    ) {
  1.1200 +      if (
  1.1201 +        objsize1 == PGL_KEY_OBJSIZE_EMPTY &&
  1.1202 +        objsize2 == PGL_KEY_OBJSIZE_EMPTY
  1.1203 +      ) pgl_key_set_empty(dst);
  1.1204 +      else pgl_key_set_universal(dst);
  1.1205 +      return;
  1.1206 +    }
  1.1207 +    /* iterate through key bits */
  1.1208 +    for (i=0; i<depth; i++) {
  1.1209 +      /* every second bit is a bit describing the object size */
  1.1210 +      if (i%2 == 0) {
  1.1211 +        /* increase bit counter for object size bits first */
  1.1212 +        /* (handy when setting objsize variable) */
  1.1213 +        j++;
  1.1214 +        /* check if object size bit is set in neither key */
  1.1215 +        if (objsize1 >= j && objsize2 >= j) {
  1.1216 +          /* set objsize in destination buffer to indicate that size bit is
  1.1217 +             unset in destination buffer at the current bit position */
  1.1218 +          dstbuf[PGL_KEY_OBJSIZE_OFFSET] = j;
  1.1219 +        }
  1.1220 +        /* break if object size bit is set in one key only */
  1.1221 +        else if (objsize1 >= j || objsize2 >= j) break;
  1.1222 +      }
  1.1223 +      /* all other bits describe latitude and longitude */
  1.1224 +      else {
  1.1225 +        /* break if bit differs in both keys */
  1.1226 +        if (PGL_KEY_LATLONBIT(dst, k)) {
  1.1227 +          if (!PGL_KEY_LATLONBIT(src, k)) break;
  1.1228 +          /* but set bit in destination buffer if bit is set in both keys */
  1.1229 +          dstbuf[k/8] |= 0x80 >> (k%8);
  1.1230 +        } else if (PGL_KEY_LATLONBIT(src, k)) break;
  1.1231 +        /* increase bit counter for latitude/longitude bits */
  1.1232 +        k++;
  1.1233 +      }
  1.1234 +    }
  1.1235 +    /* set common node depth and type bit (type bit = 1) */
  1.1236 +    dstbuf[PGL_KEY_NODEDEPTH_OFFSET] = PGL_AREAKEY_TYPEMASK | i;
  1.1237 +    /* copy contents of destination buffer to first key */
  1.1238 +    memcpy(dst, dstbuf, sizeof(pgl_areakey));
  1.1239 +  }
  1.1240 +  /* if not, keys are point keys */
  1.1241 +  else {
  1.1242 +    pgl_pointkey dstbuf = { 0, };  /* destination buffer (cleared) */
  1.1243 +    /* iterate through key bits */
  1.1244 +    for (i=0; i<depth; i++) {
  1.1245 +      /* break if bit differs in both keys */
  1.1246 +      if (PGL_KEY_LATLONBIT(dst, i)) {
  1.1247 +        if (!PGL_KEY_LATLONBIT(src, i)) break;
  1.1248 +        /* but set bit in destination buffer if bit is set in both keys */
  1.1249 +        dstbuf[i/8] |= 0x80 >> (i%8);
  1.1250 +      } else if (PGL_KEY_LATLONBIT(src, i)) break;
  1.1251 +    }
  1.1252 +    /* set common node depth (type bit = 0) */
  1.1253 +    dstbuf[PGL_KEY_NODEDEPTH_OFFSET] = i;
  1.1254 +    /* copy contents of destination buffer to first key */
  1.1255 +    memcpy(dst, dstbuf, sizeof(pgl_pointkey));
  1.1256 +  }
  1.1257 +}
  1.1258 +
  1.1259 +/* determine center(!) boundaries and radius estimation of index key */
  1.1260 +static double pgl_key_to_box(pgl_keyptr key, pgl_box *box) {
  1.1261 +  int i;
  1.1262 +  /* determine node depth */
  1.1263 +  int depth = PGL_KEY_NODEDEPTH(key);
  1.1264 +  /* center point of possible result */
  1.1265 +  double lat = 0;
  1.1266 +  double lon = 0;
  1.1267 +  /* maximum distance of real center point from key center */
  1.1268 +  double dlat = 90;
  1.1269 +  double dlon = 180;
  1.1270 +  /* maximum radius of contained objects */
  1.1271 +  double radius = 0;  /* always return zero for point index keys */
  1.1272 +  /* check if key is area key */
  1.1273 +  if (PGL_KEY_IS_AREAKEY(key)) {
  1.1274 +    /* get logarithmic object size */
  1.1275 +    int objsize = PGL_KEY_OBJSIZE(key);
  1.1276 +    /* handle special cases for empty objects (universal and empty keys) */
  1.1277 +    if (objsize == PGL_KEY_OBJSIZE_EMPTY) {
  1.1278 +      pgl_box_set_empty(box);
  1.1279 +      return 0;
  1.1280 +    } else if (objsize == PGL_KEY_OBJSIZE_UNIVERSAL) {
  1.1281 +      box->lat_min = -90;
  1.1282 +      box->lat_max =  90;
  1.1283 +      box->lon_min = -180;
  1.1284 +      box->lon_max =  180;
  1.1285 +      return 0;  /* any value >= 0 would do */
  1.1286 +    }
  1.1287 +    /* calculate maximum possible radius of objects covered by the given key */
  1.1288 +    if (objsize == 0) radius = INFINITY;
  1.1289 +    else {
  1.1290 +      radius = PGL_AREAKEY_REFOBJSIZE;
  1.1291 +      while (--objsize) radius /= M_SQRT2;
  1.1292 +    }
  1.1293 +    /* iterate over latitude and longitude bits in key */
  1.1294 +    /* (every second bit is a latitude or longitude bit) */
  1.1295 +    for (i=0; i<depth/2; i++) {
  1.1296 +      /* check if latitude bit */
  1.1297 +      if (i%2 == 0) {
  1.1298 +        /* cut latitude dimension in half */
  1.1299 +        dlat /= 2;
  1.1300 +        /* increase center latitude if bit is 1, otherwise decrease */
  1.1301 +        if (PGL_KEY_LATLONBIT(key, i)) lat += dlat;
  1.1302 +        else lat -= dlat;
  1.1303 +      }
  1.1304 +      /* otherwise longitude bit */
  1.1305 +      else {
  1.1306 +        /* cut longitude dimension in half */
  1.1307 +        dlon /= 2;
  1.1308 +        /* increase center longitude if bit is 1, otherwise decrease */
  1.1309 +        if (PGL_KEY_LATLONBIT(key, i)) lon += dlon;
  1.1310 +        else lon -= dlon;
  1.1311 +      }
  1.1312 +    }
  1.1313 +  }
  1.1314 +  /* if not, keys are point keys */
  1.1315 +  else {
  1.1316 +    /* iterate over all bits in key */
  1.1317 +    for (i=0; i<depth; i++) {
  1.1318 +      /* check if latitude bit */
  1.1319 +      if (i%2 == 0) {
  1.1320 +        /* cut latitude dimension in half */
  1.1321 +        dlat /= 2;
  1.1322 +        /* increase center latitude if bit is 1, otherwise decrease */
  1.1323 +        if (PGL_KEY_LATLONBIT(key, i)) lat += dlat;
  1.1324 +        else lat -= dlat;
  1.1325 +      }
  1.1326 +      /* otherwise longitude bit */
  1.1327 +      else {
  1.1328 +        /* cut longitude dimension in half */
  1.1329 +        dlon /= 2;
  1.1330 +        /* increase center longitude if bit is 1, otherwise decrease */
  1.1331 +        if (PGL_KEY_LATLONBIT(key, i)) lon += dlon;
  1.1332 +        else lon -= dlon;
  1.1333 +      }
  1.1334 +    }
  1.1335 +  }
  1.1336 +  /* calculate boundaries from center point and remaining dlat and dlon */
  1.1337 +  /* (return values through pointer to box) */
  1.1338 +  box->lat_min = lat - dlat;
  1.1339 +  box->lat_max = lat + dlat;
  1.1340 +  box->lon_min = lon - dlon;
  1.1341 +  box->lon_max = lon + dlon;
  1.1342 +  /* return radius (as a function return value) */
  1.1343 +  return radius;
  1.1344 +}
  1.1345 +
  1.1346 +/* estimator function for distance between point and index key */
  1.1347 +/* always returns a smaller value than actually correct or zero */
  1.1348 +static double pgl_estimate_key_distance(pgl_keyptr key, pgl_point *point) {
  1.1349 +  pgl_box box;  /* center(!) bounding box of area index key */
  1.1350 +  /* calculate center(!) bounding box and maximum radius of objects covered
  1.1351 +     by area index key (radius is zero for point index keys) */
  1.1352 +  double distance = pgl_key_to_box(key, &box);
  1.1353 +  /* calculate estimated distance between bounding box of center point of
  1.1354 +     indexed object and point passed as second argument, then substract maximum
  1.1355 +     radius of objects covered by index key */
  1.1356 +  distance = pgl_estimate_point_box_distance(point, &box) - distance;
  1.1357 +  /* truncate negative results to zero */
  1.1358 +  if (distance <= 0) distance = 0;
  1.1359 +  /* return result */
  1.1360 +  return distance;
  1.1361 +}
  1.1362 +
  1.1363 +
  1.1364 +/*---------------------------------*
  1.1365 + *  helper functions for text I/O  *
  1.1366 + *---------------------------------*/
  1.1367 +
  1.1368 +#define PGL_NUMBUFLEN 64  /* buffer size for number to string conversion */
  1.1369 +
  1.1370 +/* convert floating point number to string (round-trip safe) */
  1.1371 +static void pgl_print_float(char *buf, double flt) {
  1.1372 +  /* check if number is integral */
  1.1373 +  if (trunc(flt) == flt) {
  1.1374 +    /* for integral floats use maximum precision */
  1.1375 +    snprintf(buf, PGL_NUMBUFLEN, "%.17g", flt);
  1.1376 +  } else {
  1.1377 +    /* otherwise check if 15, 16, or 17 digits needed (round-trip safety) */
  1.1378 +    snprintf(buf, PGL_NUMBUFLEN, "%.15g", flt);
  1.1379 +    if (strtod(buf, NULL) != flt) snprintf(buf, PGL_NUMBUFLEN, "%.16g", flt);
  1.1380 +    if (strtod(buf, NULL) != flt) snprintf(buf, PGL_NUMBUFLEN, "%.17g", flt);
  1.1381 +  }
  1.1382 +}
  1.1383 +
  1.1384 +/* convert latitude floating point number (in degrees) to string */
  1.1385 +static void pgl_print_lat(char *buf, double lat) {
  1.1386 +  if (signbit(lat)) {
  1.1387 +    /* treat negative latitudes (including -0) as south */
  1.1388 +    snprintf(buf, PGL_NUMBUFLEN, "S%015.12f", -lat);
  1.1389 +  } else {
  1.1390 +    /* treat positive latitudes (including +0) as north */
  1.1391 +    snprintf(buf, PGL_NUMBUFLEN, "N%015.12f", lat);
  1.1392 +  }
  1.1393 +}
  1.1394 +
  1.1395 +/* convert longitude floating point number (in degrees) to string */
  1.1396 +static void pgl_print_lon(char *buf, double lon) {
  1.1397 +  if (signbit(lon)) {
  1.1398 +    /* treat negative longitudes (including -0) as west */
  1.1399 +    snprintf(buf, PGL_NUMBUFLEN, "W%016.12f", -lon);
  1.1400 +  } else {
  1.1401 +    /* treat positive longitudes (including +0) as east */
  1.1402 +    snprintf(buf, PGL_NUMBUFLEN, "E%016.12f", lon);
  1.1403 +  }
  1.1404 +}
  1.1405 +
  1.1406 +/* bit masks used as return value of pgl_scan() function */
  1.1407 +#define PGL_SCAN_NONE 0      /* no value has been parsed */
  1.1408 +#define PGL_SCAN_LAT (1<<0)  /* latitude has been parsed */
  1.1409 +#define PGL_SCAN_LON (1<<1)  /* longitude has been parsed */
  1.1410 +#define PGL_SCAN_LATLON (PGL_SCAN_LAT | PGL_SCAN_LON)  /* bitwise OR of both */
  1.1411 +
  1.1412 +/* parse a coordinate (can be latitude or longitude) */
  1.1413 +static int pgl_scan(char **str, double *lat, double *lon) {
  1.1414 +  double val;
  1.1415 +  int len;
  1.1416 +  if (
  1.1417 +    sscanf(*str, " N %lf %n", &val, &len) ||
  1.1418 +    sscanf(*str, " n %lf %n", &val, &len)
  1.1419 +  ) {
  1.1420 +    *str += len; *lat = val; return PGL_SCAN_LAT;
  1.1421 +  }
  1.1422 +  if (
  1.1423 +    sscanf(*str, " S %lf %n", &val, &len) ||
  1.1424 +    sscanf(*str, " s %lf %n", &val, &len)
  1.1425 +  ) {
  1.1426 +    *str += len; *lat = -val; return PGL_SCAN_LAT;
  1.1427 +  }
  1.1428 +  if (
  1.1429 +    sscanf(*str, " E %lf %n", &val, &len) ||
  1.1430 +    sscanf(*str, " e %lf %n", &val, &len)
  1.1431 +  ) {
  1.1432 +    *str += len; *lon = val; return PGL_SCAN_LON;
  1.1433 +  }
  1.1434 +  if (
  1.1435 +    sscanf(*str, " W %lf %n", &val, &len) ||
  1.1436 +    sscanf(*str, " w %lf %n", &val, &len)
  1.1437 +  ) {
  1.1438 +    *str += len; *lon = -val; return PGL_SCAN_LON;
  1.1439 +  }
  1.1440 +  return PGL_SCAN_NONE;
  1.1441 +}
  1.1442 +
  1.1443 +
  1.1444 +/*-----------------*
  1.1445 + *  SQL functions  *
  1.1446 + *-----------------*/
  1.1447 +
  1.1448 +/* Note: These function names use "epoint", "ebox", etc. notation here instead
  1.1449 +   of "point", "box", etc. in order to distinguish them from any previously
  1.1450 +   defined functions. */
  1.1451 +
  1.1452 +/* function needed for dummy types and/or not implemented features */
  1.1453 +PG_FUNCTION_INFO_V1(pgl_notimpl);
  1.1454 +Datum pgl_notimpl(PG_FUNCTION_ARGS) {
  1.1455 +  ereport(ERROR, (errmsg("not implemented by pgLatLon")));
  1.1456 +}
  1.1457 +
  1.1458 +/* set point to latitude and longitude (including checks) */
  1.1459 +static void pgl_epoint_set_latlon(pgl_point *point, double lat, double lon) {
  1.1460 +  /* reject infinite or NaN values */
  1.1461 +  if (!isfinite(lat) || !isfinite(lon)) {
  1.1462 +    ereport(ERROR, (
  1.1463 +      errcode(ERRCODE_DATA_EXCEPTION),
  1.1464 +      errmsg("epoint requires finite coordinates")
  1.1465 +    ));
  1.1466 +  }
  1.1467 +  /* check latitude bounds */
  1.1468 +  if (lat < -90) {
  1.1469 +    ereport(WARNING, (errmsg("latitude exceeds south pole")));
  1.1470 +    lat = -90;
  1.1471 +  } else if (lat > 90) {
  1.1472 +    ereport(WARNING, (errmsg("latitude exceeds north pole")));
  1.1473 +    lat = 90;
  1.1474 +  }
  1.1475 +  /* check longitude bounds */
  1.1476 +  if (lon < -180) {
  1.1477 +    ereport(NOTICE, (errmsg("longitude west of 180th meridian normalized")));
  1.1478 +    lon += 360 - trunc(lon / 360) * 360;
  1.1479 +  } else if (lon > 180) {
  1.1480 +    ereport(NOTICE, (errmsg("longitude east of 180th meridian normalized")));
  1.1481 +    lon -= 360 + trunc(lon / 360) * 360;
  1.1482 +  }
  1.1483 +  /* store rounded latitude/longitude values for round-trip safety */
  1.1484 +  point->lat = pgl_round(lat);
  1.1485 +  point->lon = pgl_round(lon);
  1.1486 +}
  1.1487 +
  1.1488 +/* create point ("epoint" in SQL) from latitude and longitude */
  1.1489 +PG_FUNCTION_INFO_V1(pgl_create_epoint);
  1.1490 +Datum pgl_create_epoint(PG_FUNCTION_ARGS) {
  1.1491 +  pgl_point *point = (pgl_point *)palloc(sizeof(pgl_point));
  1.1492 +  pgl_epoint_set_latlon(point, PG_GETARG_FLOAT8(0), PG_GETARG_FLOAT8(1));
  1.1493 +  PG_RETURN_POINTER(point);
  1.1494 +}
  1.1495 +
  1.1496 +/* parse point ("epoint" in SQL) */
  1.1497 +/* format: '[NS]<float> [EW]<float>' */
  1.1498 +PG_FUNCTION_INFO_V1(pgl_epoint_in);
  1.1499 +Datum pgl_epoint_in(PG_FUNCTION_ARGS) {
  1.1500 +  char *str = PG_GETARG_CSTRING(0);  /* input string */
  1.1501 +  char *strptr = str;  /* current position within string */
  1.1502 +  int done = 0;        /* bit mask storing if latitude or longitude was read */
  1.1503 +  double lat, lon;     /* parsed values as double precision floats */
  1.1504 +  pgl_point *point;    /* return value (to be palloc'ed) */
  1.1505 +  /* parse two floats (each latitude or longitude) separated by white-space */
  1.1506 +  done |= pgl_scan(&strptr, &lat, &lon);
  1.1507 +  if (strptr != str && isspace(strptr[-1])) {
  1.1508 +    done |= pgl_scan(&strptr, &lat, &lon);
  1.1509 +  }
  1.1510 +  /* require end of string, and latitude and longitude parsed successfully */
  1.1511 +  if (strptr[0] || done != PGL_SCAN_LATLON) {
  1.1512 +    ereport(ERROR, (
  1.1513 +      errcode(ERRCODE_INVALID_TEXT_REPRESENTATION),
  1.1514 +      errmsg("invalid input syntax for type epoint: \"%s\"", str)
  1.1515 +    ));
  1.1516 +  }
  1.1517 +  /* allocate memory for result */
  1.1518 +  point = (pgl_point *)palloc(sizeof(pgl_point));
  1.1519 +  /* set latitude and longitude (and perform checks) */
  1.1520 +  pgl_epoint_set_latlon(point, lat, lon);
  1.1521 +  /* return result */
  1.1522 +  PG_RETURN_POINTER(point);
  1.1523 +}
  1.1524 +
  1.1525 +/* create box ("ebox" in SQL) that is empty */
  1.1526 +PG_FUNCTION_INFO_V1(pgl_create_empty_ebox);
  1.1527 +Datum pgl_create_empty_ebox(PG_FUNCTION_ARGS) {
  1.1528 +  pgl_box *box = (pgl_box *)palloc(sizeof(pgl_box));
  1.1529 +  pgl_box_set_empty(box);
  1.1530 +  PG_RETURN_POINTER(box);
  1.1531 +}
  1.1532 +
  1.1533 +/* set box to given boundaries (including checks) */
  1.1534 +static void pgl_ebox_set_boundaries(
  1.1535 +  pgl_box *box,
  1.1536 +  double lat_min, double lat_max, double lon_min, double lon_max
  1.1537 +) {
  1.1538 +  /* if minimum latitude is greater than maximum latitude, return empty box */
  1.1539 +  if (lat_min > lat_max) {
  1.1540 +    pgl_box_set_empty(box);
  1.1541 +    return;
  1.1542 +  }
  1.1543 +  /* otherwise reject infinite or NaN values */
  1.1544 +  if (
  1.1545 +    !isfinite(lat_min) || !isfinite(lat_max) ||
  1.1546 +    !isfinite(lon_min) || !isfinite(lon_max)
  1.1547 +  ) {
  1.1548 +    ereport(ERROR, (
  1.1549 +      errcode(ERRCODE_DATA_EXCEPTION),
  1.1550 +      errmsg("ebox requires finite coordinates")
  1.1551 +    ));
  1.1552 +  }
  1.1553 +  /* check latitude bounds */
  1.1554 +  if (lat_max < -90) {
  1.1555 +    ereport(WARNING, (errmsg("northern latitude exceeds south pole")));
  1.1556 +    lat_max = -90;
  1.1557 +  } else if (lat_max > 90) {
  1.1558 +    ereport(WARNING, (errmsg("northern latitude exceeds north pole")));
  1.1559 +    lat_max = 90;
  1.1560 +  }
  1.1561 +  if (lat_min < -90) {
  1.1562 +    ereport(WARNING, (errmsg("southern latitude exceeds south pole")));
  1.1563 +    lat_min = -90;
  1.1564 +  } else if (lat_min > 90) {
  1.1565 +    ereport(WARNING, (errmsg("southern latitude exceeds north pole")));
  1.1566 +    lat_min = 90;
  1.1567 +  }
  1.1568 +  /* check if all longitudes are included */
  1.1569 +  if (lon_max - lon_min >= 360) {
  1.1570 +    if (lon_max - lon_min > 360) ereport(WARNING, (
  1.1571 +      errmsg("longitude coverage greater than 360 degrees")
  1.1572 +    ));
  1.1573 +    lon_min = -180;
  1.1574 +    lon_max = 180;
  1.1575 +  } else {
  1.1576 +    /* normalize longitude bounds */
  1.1577 +    if      (lon_min < -180) lon_min += 360 - trunc(lon_min / 360) * 360;
  1.1578 +    else if (lon_min >  180) lon_min -= 360 + trunc(lon_min / 360) * 360;
  1.1579 +    if      (lon_max < -180) lon_max += 360 - trunc(lon_max / 360) * 360;
  1.1580 +    else if (lon_max >  180) lon_max -= 360 + trunc(lon_max / 360) * 360;
  1.1581 +  }
  1.1582 +  /* store rounded latitude/longitude values for round-trip safety */
  1.1583 +  box->lat_min = pgl_round(lat_min);
  1.1584 +  box->lat_max = pgl_round(lat_max);
  1.1585 +  box->lon_min = pgl_round(lon_min);
  1.1586 +  box->lon_max = pgl_round(lon_max);
  1.1587 +  /* ensure that rounding does not change orientation */
  1.1588 +  if (lon_min > lon_max && box->lon_min == box->lon_max) {
  1.1589 +    box->lon_min = -180;
  1.1590 +    box->lon_max = 180;
  1.1591 +  }
  1.1592 +}
  1.1593 +
  1.1594 +/* create box ("ebox" in SQL) from min/max latitude and min/max longitude */
  1.1595 +PG_FUNCTION_INFO_V1(pgl_create_ebox);
  1.1596 +Datum pgl_create_ebox(PG_FUNCTION_ARGS) {
  1.1597 +  pgl_box *box = (pgl_box *)palloc(sizeof(pgl_box));
  1.1598 +  pgl_ebox_set_boundaries(
  1.1599 +    box,
  1.1600 +    PG_GETARG_FLOAT8(0), PG_GETARG_FLOAT8(1),
  1.1601 +    PG_GETARG_FLOAT8(2), PG_GETARG_FLOAT8(3)
  1.1602 +  );
  1.1603 +  PG_RETURN_POINTER(box);
  1.1604 +}
  1.1605 +
  1.1606 +/* create box ("ebox" in SQL) from two points ("epoint"s) */
  1.1607 +/* (can not be used to cover a longitude range of more than 120 degrees) */
  1.1608 +PG_FUNCTION_INFO_V1(pgl_create_ebox_from_epoints);
  1.1609 +Datum pgl_create_ebox_from_epoints(PG_FUNCTION_ARGS) {
  1.1610 +  pgl_point *point1 = (pgl_point *)PG_GETARG_POINTER(0);
  1.1611 +  pgl_point *point2 = (pgl_point *)PG_GETARG_POINTER(1);
  1.1612 +  pgl_box *box = (pgl_box *)palloc(sizeof(pgl_box));
  1.1613 +  double lat_min, lat_max, lon_min, lon_max;
  1.1614 +  double dlon;  /* longitude range (delta longitude) */
  1.1615 +  /* order latitude and longitude boundaries */
  1.1616 +  if (point2->lat < point1->lat) {
  1.1617 +    lat_min = point2->lat;
  1.1618 +    lat_max = point1->lat;
  1.1619 +  } else {
  1.1620 +    lat_min = point1->lat;
  1.1621 +    lat_max = point2->lat;
  1.1622 +  }
  1.1623 +  if (point2->lon < point1->lon) {
  1.1624 +    lon_min = point2->lon;
  1.1625 +    lon_max = point1->lon;
  1.1626 +  } else {
  1.1627 +    lon_min = point1->lon;
  1.1628 +    lon_max = point2->lon;
  1.1629 +  }
  1.1630 +  /* calculate longitude range (round to avoid floating point errors) */
  1.1631 +  dlon = pgl_round(lon_max - lon_min);
  1.1632 +  /* determine east-west direction */
  1.1633 +  if (dlon >= 240) {
  1.1634 +    /* assume that 180th meridian is crossed and swap min/max longitude */
  1.1635 +    double swap = lon_min; lon_min = lon_max; lon_max = swap;
  1.1636 +  } else if (dlon > 120) {
  1.1637 +    /* unclear orientation since delta longitude > 120 */
  1.1638 +    ereport(ERROR, (
  1.1639 +      errcode(ERRCODE_DATA_EXCEPTION),
  1.1640 +      errmsg("can not determine east/west orientation for ebox")
  1.1641 +    ));
  1.1642 +  }
  1.1643 +  /* use boundaries to setup box (and perform checks) */
  1.1644 +  pgl_ebox_set_boundaries(box, lat_min, lat_max, lon_min, lon_max);
  1.1645 +  /* return result */
  1.1646 +  PG_RETURN_POINTER(box);
  1.1647 +}
  1.1648 +
  1.1649 +/* parse box ("ebox" in SQL) */
  1.1650 +/* format: '[NS]<float> [EW]<float> [NS]<float> [EW]<float>'
  1.1651 +       or: '[NS]<float> [NS]<float> [EW]<float> [EW]<float>' */
  1.1652 +PG_FUNCTION_INFO_V1(pgl_ebox_in);
  1.1653 +Datum pgl_ebox_in(PG_FUNCTION_ARGS) {
  1.1654 +  char *str = PG_GETARG_CSTRING(0);  /* input string */
  1.1655 +  char *str_lower;     /* lower case version of input string */
  1.1656 +  char *strptr;        /* current position within string */
  1.1657 +  int valid;           /* number of valid chars */
  1.1658 +  int done;            /* specifies if latitude or longitude was read */
  1.1659 +  double val;          /* temporary variable */
  1.1660 +  int lat_count = 0;   /* count of latitude values parsed */
  1.1661 +  int lon_count = 0;   /* count of longitufde values parsed */
  1.1662 +  double lat_min, lat_max, lon_min, lon_max;  /* see pgl_box struct */
  1.1663 +  pgl_box *box;        /* return value (to be palloc'ed) */
  1.1664 +  /* lowercase input */
  1.1665 +  str_lower = psprintf("%s", str);
  1.1666 +  for (strptr=str_lower; *strptr; strptr++) {
  1.1667 +    if (*strptr >= 'A' && *strptr <= 'Z') *strptr += 'a' - 'A';
  1.1668 +  }
  1.1669 +  /* reset reading position to start of (lowercase) string */
  1.1670 +  strptr = str_lower;
  1.1671 +  /* check if empty box */
  1.1672 +  valid = 0;
  1.1673 +  sscanf(strptr, " empty %n", &valid);
  1.1674 +  if (valid && strptr[valid] == 0) {
  1.1675 +    /* allocate and return empty box */
  1.1676 +    box = (pgl_box *)palloc(sizeof(pgl_box));
  1.1677 +    pgl_box_set_empty(box);
  1.1678 +    PG_RETURN_POINTER(box);
  1.1679 +  }
  1.1680 +  /* demand four blocks separated by whitespace */
  1.1681 +  valid = 0;
  1.1682 +  sscanf(strptr, " %*s %*s %*s %*s %n", &valid);
  1.1683 +  /* if four blocks separated by whitespace exist, parse those blocks */
  1.1684 +  if (strptr[valid] == 0) while (strptr[0]) {
  1.1685 +    /* parse either latitude or longitude (whichever found in input string) */
  1.1686 +    done = pgl_scan(&strptr, &val, &val);
  1.1687 +    /* store latitude or longitude in lat_min, lat_max, lon_min, or lon_max */
  1.1688 +    if (done == PGL_SCAN_LAT) {
  1.1689 +      if (!lat_count) lat_min = val; else lat_max = val;
  1.1690 +      lat_count++;
  1.1691 +    } else if (done == PGL_SCAN_LON) {
  1.1692 +      if (!lon_count) lon_min = val; else lon_max = val;
  1.1693 +      lon_count++;
  1.1694 +    } else {
  1.1695 +      break;
  1.1696 +    }
  1.1697 +  }
  1.1698 +  /* require end of string, and two latitude and two longitude values */
  1.1699 +  if (strptr[0] || lat_count != 2 || lon_count != 2) {
  1.1700 +    ereport(ERROR, (
  1.1701 +      errcode(ERRCODE_INVALID_TEXT_REPRESENTATION),
  1.1702 +      errmsg("invalid input syntax for type ebox: \"%s\"", str)
  1.1703 +    ));
  1.1704 +  }
  1.1705 +  /* free lower case string */
  1.1706 +  pfree(str_lower);
  1.1707 +  /* order boundaries (maximum greater than minimum) */
  1.1708 +  if (lat_min > lat_max) { val = lat_min; lat_min = lat_max; lat_max = val; }
  1.1709 +  if (lon_min > lon_max) { val = lon_min; lon_min = lon_max; lon_max = val; }
  1.1710 +  /* allocate memory for result */
  1.1711 +  box = (pgl_box *)palloc(sizeof(pgl_box));
  1.1712 +  /* set boundaries (and perform checks) */
  1.1713 +  pgl_ebox_set_boundaries(box, lat_min, lat_max, lon_min, lon_max);
  1.1714 +  /* return result */
  1.1715 +  PG_RETURN_POINTER(box);
  1.1716 +}
  1.1717 +
  1.1718 +/* set circle to given latitude, longitude, and radius (including checks) */
  1.1719 +static void pgl_ecircle_set_latlon_radius(
  1.1720 +  pgl_circle *circle, double lat, double lon, double radius
  1.1721 +) {
  1.1722 +  /* set center point (including checks) */
  1.1723 +  pgl_epoint_set_latlon(&(circle->center), lat, lon);
  1.1724 +  /* handle non-positive radius */
  1.1725 +  if (isnan(radius)) {
  1.1726 +    ereport(ERROR, (
  1.1727 +      errcode(ERRCODE_DATA_EXCEPTION),
  1.1728 +      errmsg("invalid radius for ecircle")
  1.1729 +    ));
  1.1730 +  }
  1.1731 +  if (radius == 0) radius = 0;  /* avoids -0 */
  1.1732 +  else if (radius < 0) {
  1.1733 +    if (isfinite(radius)) {
  1.1734 +      ereport(NOTICE, (errmsg("negative radius converted to minus infinity")));
  1.1735 +    }
  1.1736 +    radius = -INFINITY;
  1.1737 +  }
  1.1738 +  /* store radius (round-trip safety is ensured by pgl_print_float) */
  1.1739 +  circle->radius = radius;
  1.1740 +}
  1.1741 +
  1.1742 +/* create circle ("ecircle" in SQL) from latitude, longitude, and radius */
  1.1743 +PG_FUNCTION_INFO_V1(pgl_create_ecircle);
  1.1744 +Datum pgl_create_ecircle(PG_FUNCTION_ARGS) {
  1.1745 +  pgl_circle *circle = (pgl_circle *)palloc(sizeof(pgl_circle));
  1.1746 +  pgl_ecircle_set_latlon_radius(
  1.1747 +    circle, PG_GETARG_FLOAT8(0), PG_GETARG_FLOAT8(1), PG_GETARG_FLOAT8(2)
  1.1748 +  );
  1.1749 +  PG_RETURN_POINTER(circle);
  1.1750 +}
  1.1751 +
  1.1752 +/* create circle ("ecircle" in SQL) from point ("epoint"), and radius */
  1.1753 +PG_FUNCTION_INFO_V1(pgl_create_ecircle_from_epoint);
  1.1754 +Datum pgl_create_ecircle_from_epoint(PG_FUNCTION_ARGS) {
  1.1755 +  pgl_point *point = (pgl_point *)PG_GETARG_POINTER(0);
  1.1756 +  double radius = PG_GETARG_FLOAT8(1);
  1.1757 +  pgl_circle *circle = (pgl_circle *)palloc(sizeof(pgl_circle));
  1.1758 +  /* set latitude, longitude, radius (and perform checks) */
  1.1759 +  pgl_ecircle_set_latlon_radius(circle, point->lat, point->lon, radius);
  1.1760 +  /* return result */
  1.1761 +  PG_RETURN_POINTER(circle);
  1.1762 +}
  1.1763 +
  1.1764 +/* parse circle ("ecircle" in SQL) */
  1.1765 +/* format: '[NS]<float> [EW]<float> <float>' */
  1.1766 +PG_FUNCTION_INFO_V1(pgl_ecircle_in);
  1.1767 +Datum pgl_ecircle_in(PG_FUNCTION_ARGS) {
  1.1768 +  char *str = PG_GETARG_CSTRING(0);  /* input string */
  1.1769 +  char *strptr = str;       /* current position within string */
  1.1770 +  double lat, lon, radius;  /* parsed values as double precision flaots */
  1.1771 +  int valid = 0;            /* number of valid chars */
  1.1772 +  int done = 0;             /* stores if latitude and/or longitude was read */
  1.1773 +  pgl_circle *circle;       /* return value (to be palloc'ed) */
  1.1774 +  /* demand three blocks separated by whitespace */
  1.1775 +  sscanf(strptr, " %*s %*s %*s %n", &valid);
  1.1776 +  /* if three blocks separated by whitespace exist, parse those blocks */
  1.1777 +  if (strptr[valid] == 0) {
  1.1778 +    /* parse latitude and longitude */
  1.1779 +    done |= pgl_scan(&strptr, &lat, &lon);
  1.1780 +    done |= pgl_scan(&strptr, &lat, &lon);
  1.1781 +    /* parse radius (while incrementing strptr by number of bytes parsed) */
  1.1782 +    valid = 0;
  1.1783 +    if (sscanf(strptr, " %lf %n", &radius, &valid) == 1) strptr += valid;
  1.1784 +  }
  1.1785 +  /* require end of string and both latitude and longitude being parsed */
  1.1786 +  if (strptr[0] || done != PGL_SCAN_LATLON) {
  1.1787 +    ereport(ERROR, (
  1.1788 +      errcode(ERRCODE_INVALID_TEXT_REPRESENTATION),
  1.1789 +      errmsg("invalid input syntax for type ecircle: \"%s\"", str)
  1.1790 +    ));
  1.1791 +  }
  1.1792 +  /* allocate memory for result */
  1.1793 +  circle = (pgl_circle *)palloc(sizeof(pgl_circle));
  1.1794 +  /* set latitude, longitude, radius (and perform checks) */
  1.1795 +  pgl_ecircle_set_latlon_radius(circle, lat, lon, radius);
  1.1796 +  /* return result */
  1.1797 +  PG_RETURN_POINTER(circle);
  1.1798 +}
  1.1799 +
  1.1800 +/* parse cluster ("ecluster" in SQL) */
  1.1801 +PG_FUNCTION_INFO_V1(pgl_ecluster_in);
  1.1802 +Datum pgl_ecluster_in(PG_FUNCTION_ARGS) {
  1.1803 +  int i;
  1.1804 +  char *str = PG_GETARG_CSTRING(0);  /* input string */
  1.1805 +  char *str_lower;         /* lower case version of input string */
  1.1806 +  char *strptr;            /* pointer to current reading position of input */
  1.1807 +  int npoints_total = 0;   /* total number of points in cluster */
  1.1808 +  int nentries = 0;        /* total number of entries */
  1.1809 +  pgl_newentry *entries;   /* array of pgl_newentry to create pgl_cluster */
  1.1810 +  int entries_buflen = 4;  /* maximum number of elements in entries array */
  1.1811 +  int valid;               /* number of valid chars processed */
  1.1812 +  double lat, lon;         /* latitude and longitude of parsed point */
  1.1813 +  int entrytype;           /* current entry type */
  1.1814 +  int npoints;             /* number of points in current entry */
  1.1815 +  pgl_point *points;       /* array of pgl_point for pgl_newentry */
  1.1816 +  int points_buflen;       /* maximum number of elements in points array */
  1.1817 +  int done;                /* return value of pgl_scan function */
  1.1818 +  pgl_cluster *cluster;    /* created cluster */
  1.1819 +  /* lowercase input */
  1.1820 +  str_lower = psprintf("%s", str);
  1.1821 +  for (strptr=str_lower; *strptr; strptr++) {
  1.1822 +    if (*strptr >= 'A' && *strptr <= 'Z') *strptr += 'a' - 'A';
  1.1823 +  }
  1.1824 +  /* reset reading position to start of (lowercase) string */
  1.1825 +  strptr = str_lower;
  1.1826 +  /* allocate initial buffer for entries */
  1.1827 +  entries = palloc(entries_buflen * sizeof(pgl_newentry));
  1.1828 +  /* parse until end of string */
  1.1829 +  while (strptr[0]) {
  1.1830 +    /* require previous white-space or closing parenthesis before next token */
  1.1831 +    if (strptr != str_lower && !isspace(strptr[-1]) && strptr[-1] != ')') {
  1.1832 +      goto pgl_ecluster_in_error;
  1.1833 +    }
  1.1834 +    /* ignore token "empty" */
  1.1835 +    valid = 0; sscanf(strptr, " empty %n", &valid);
  1.1836 +    if (valid) { strptr += valid; continue; }
  1.1837 +    /* test for "point" token */
  1.1838 +    valid = 0; sscanf(strptr, " point ( %n", &valid);
  1.1839 +    if (valid) {
  1.1840 +      strptr += valid;
  1.1841 +      entrytype = PGL_ENTRY_POINT;
  1.1842 +      goto pgl_ecluster_in_type_ok;
  1.1843 +    }
  1.1844 +    /* test for "path" token */
  1.1845 +    valid = 0; sscanf(strptr, " path ( %n", &valid);
  1.1846 +    if (valid) {
  1.1847 +      strptr += valid;
  1.1848 +      entrytype = PGL_ENTRY_PATH;
  1.1849 +      goto pgl_ecluster_in_type_ok;
  1.1850 +    }
  1.1851 +    /* test for "outline" token */
  1.1852 +    valid = 0; sscanf(strptr, " outline ( %n", &valid);
  1.1853 +    if (valid) {
  1.1854 +      strptr += valid;
  1.1855 +      entrytype = PGL_ENTRY_OUTLINE;
  1.1856 +      goto pgl_ecluster_in_type_ok;
  1.1857 +    }
  1.1858 +    /* test for "polygon" token */
  1.1859 +    valid = 0; sscanf(strptr, " polygon ( %n", &valid);
  1.1860 +    if (valid) {
  1.1861 +      strptr += valid;
  1.1862 +      entrytype = PGL_ENTRY_POLYGON;
  1.1863 +      goto pgl_ecluster_in_type_ok;
  1.1864 +    }
  1.1865 +    /* error if no valid token found */
  1.1866 +    goto pgl_ecluster_in_error;
  1.1867 +    pgl_ecluster_in_type_ok:
  1.1868 +    /* check if pgl_newentry array needs to grow */
  1.1869 +    if (nentries == entries_buflen) {
  1.1870 +      pgl_newentry *newbuf;
  1.1871 +      entries_buflen *= 2;
  1.1872 +      newbuf = palloc(entries_buflen * sizeof(pgl_newentry));
  1.1873 +      memcpy(newbuf, entries, nentries * sizeof(pgl_newentry));
  1.1874 +      pfree(entries);
  1.1875 +      entries = newbuf;
  1.1876 +    }
  1.1877 +    /* reset number of points for current entry */
  1.1878 +    npoints = 0;
  1.1879 +    /* allocate array for points */
  1.1880 +    points_buflen = 4;
  1.1881 +    points = palloc(points_buflen * sizeof(pgl_point));
  1.1882 +    /* parse until closing parenthesis */
  1.1883 +    while (strptr[0] != ')') {
  1.1884 +      /* error on unexpected end of string */
  1.1885 +      if (strptr[0] == 0) goto pgl_ecluster_in_error;
  1.1886 +      /* mark neither latitude nor longitude as read */
  1.1887 +      done = PGL_SCAN_NONE;
  1.1888 +      /* require white-space before second, third, etc. point */
  1.1889 +      if (npoints != 0 && !isspace(strptr[-1])) goto pgl_ecluster_in_error;
  1.1890 +      /* scan latitude (or longitude) */
  1.1891 +      done |= pgl_scan(&strptr, &lat, &lon);
  1.1892 +      /* require white-space before second coordinate */
  1.1893 +      if (strptr != str && !isspace(strptr[-1])) goto pgl_ecluster_in_error;
  1.1894 +      /* scan longitude (or latitude) */
  1.1895 +      done |= pgl_scan(&strptr, &lat, &lon);
  1.1896 +      /* error unless both latitude and longitude were parsed */
  1.1897 +      if (done != PGL_SCAN_LATLON) goto pgl_ecluster_in_error;
  1.1898 +      /* throw error if number of points is too high */
  1.1899 +      if (npoints_total == PGL_CLUSTER_MAXPOINTS) {
  1.1900 +        ereport(ERROR, (
  1.1901 +          errcode(ERRCODE_INVALID_TEXT_REPRESENTATION),
  1.1902 +          errmsg(
  1.1903 +            "too many points for ecluster entry (maximum %i)",
  1.1904 +            PGL_CLUSTER_MAXPOINTS
  1.1905 +          )
  1.1906 +        ));
  1.1907 +      }
  1.1908 +      /* check if pgl_point array needs to grow */
  1.1909 +      if (npoints == points_buflen) {
  1.1910 +        pgl_point *newbuf;
  1.1911 +        points_buflen *= 2;
  1.1912 +        newbuf = palloc(points_buflen * sizeof(pgl_point));
  1.1913 +        memcpy(newbuf, points, npoints * sizeof(pgl_point));
  1.1914 +        pfree(points);
  1.1915 +        points = newbuf;
  1.1916 +      }
  1.1917 +      /* append point to pgl_point array (includes checks) */
  1.1918 +      pgl_epoint_set_latlon(&(points[npoints++]), lat, lon);
  1.1919 +      /* increase total number of points */
  1.1920 +      npoints_total++;
  1.1921 +    }
  1.1922 +    /* error if entry has no points */
  1.1923 +    if (!npoints) goto pgl_ecluster_in_error;
  1.1924 +    /* entries with one point are automatically of type "point" */
  1.1925 +    if (npoints == 1) entrytype = PGL_ENTRY_POINT;
  1.1926 +    /* if entries have more than one point */
  1.1927 +    else {
  1.1928 +      /* throw error if entry type is "point" */
  1.1929 +      if (entrytype == PGL_ENTRY_POINT) {
  1.1930 +        ereport(ERROR, (
  1.1931 +          errcode(ERRCODE_INVALID_TEXT_REPRESENTATION),
  1.1932 +          errmsg("invalid input syntax for type ecluster (point entry with more than one point)")
  1.1933 +        ));
  1.1934 +      }
  1.1935 +      /* coerce outlines and polygons with more than 2 points to be a path */
  1.1936 +      if (npoints == 2) entrytype = PGL_ENTRY_PATH;
  1.1937 +    }
  1.1938 +    /* append entry to pgl_newentry array */
  1.1939 +    entries[nentries].entrytype = entrytype;
  1.1940 +    entries[nentries].npoints = npoints;
  1.1941 +    entries[nentries].points = points;
  1.1942 +    nentries++;
  1.1943 +    /* consume closing parenthesis */
  1.1944 +    strptr++;
  1.1945 +    /* consume white-space */
  1.1946 +    while (isspace(strptr[0])) strptr++;
  1.1947 +  }
  1.1948 +  /* free lower case string */
  1.1949 +  pfree(str_lower);
  1.1950 +  /* create cluster from pgl_newentry array */
  1.1951 +  cluster = pgl_new_cluster(nentries, entries);
  1.1952 +  /* free pgl_newentry array */
  1.1953 +  for (i=0; i<nentries; i++) pfree(entries[i].points);
  1.1954 +  pfree(entries);
  1.1955 +  /* set bounding circle of cluster and check east/west orientation */
  1.1956 +  if (!pgl_finalize_cluster(cluster)) {
  1.1957 +    ereport(ERROR, (
  1.1958 +      errcode(ERRCODE_DATA_EXCEPTION),
  1.1959 +      errmsg("can not determine east/west orientation for ecluster"),
  1.1960 +      errhint("Ensure that each entry has a longitude span of less than 180 degrees.")
  1.1961 +    ));
  1.1962 +  }
  1.1963 +  /* return cluster */
  1.1964 +  PG_RETURN_POINTER(cluster);
  1.1965 +  /* code to throw error */
  1.1966 +  pgl_ecluster_in_error:
  1.1967 +  ereport(ERROR, (
  1.1968 +    errcode(ERRCODE_INVALID_TEXT_REPRESENTATION),
  1.1969 +    errmsg("invalid input syntax for type ecluster: \"%s\"", str)
  1.1970 +  ));
  1.1971 +}
  1.1972 +
  1.1973 +/* convert point ("epoint") to string representation */
  1.1974 +PG_FUNCTION_INFO_V1(pgl_epoint_out);
  1.1975 +Datum pgl_epoint_out(PG_FUNCTION_ARGS) {
  1.1976 +  pgl_point *point = (pgl_point *)PG_GETARG_POINTER(0);
  1.1977 +  char latstr[PGL_NUMBUFLEN];
  1.1978 +  char lonstr[PGL_NUMBUFLEN];
  1.1979 +  pgl_print_lat(latstr, point->lat);
  1.1980 +  pgl_print_lon(lonstr, point->lon);
  1.1981 +  PG_RETURN_CSTRING(psprintf("%s %s", latstr, lonstr));
  1.1982 +}
  1.1983 +
  1.1984 +/* convert box ("ebox") to string representation */
  1.1985 +PG_FUNCTION_INFO_V1(pgl_ebox_out);
  1.1986 +Datum pgl_ebox_out(PG_FUNCTION_ARGS) {
  1.1987 +  pgl_box *box = (pgl_box *)PG_GETARG_POINTER(0);
  1.1988 +  double lon_min = box->lon_min;
  1.1989 +  double lon_max = box->lon_max;
  1.1990 +  char lat_min_str[PGL_NUMBUFLEN];
  1.1991 +  char lat_max_str[PGL_NUMBUFLEN];
  1.1992 +  char lon_min_str[PGL_NUMBUFLEN];
  1.1993 +  char lon_max_str[PGL_NUMBUFLEN];
  1.1994 +  /* return string "empty" if box is set to be empty */
  1.1995 +  if (box->lat_min > box->lat_max) PG_RETURN_CSTRING("empty");
  1.1996 +  /* use boundaries exceeding W180 or E180 if 180th meridian is enclosed */
  1.1997 +  /* (required since pgl_box_in orders the longitude boundaries) */
  1.1998 +  if (lon_min > lon_max) {
  1.1999 +    if (lon_min + lon_max >= 0) lon_min -= 360;
  1.2000 +    else lon_max += 360;
  1.2001 +  }
  1.2002 +  /* format and return result */
  1.2003 +  pgl_print_lat(lat_min_str, box->lat_min);
  1.2004 +  pgl_print_lat(lat_max_str, box->lat_max);
  1.2005 +  pgl_print_lon(lon_min_str, lon_min);
  1.2006 +  pgl_print_lon(lon_max_str, lon_max);
  1.2007 +  PG_RETURN_CSTRING(psprintf(
  1.2008 +    "%s %s %s %s",
  1.2009 +    lat_min_str, lon_min_str, lat_max_str, lon_max_str
  1.2010 +  ));
  1.2011 +}
  1.2012 +
  1.2013 +/* convert circle ("ecircle") to string representation */
  1.2014 +PG_FUNCTION_INFO_V1(pgl_ecircle_out);
  1.2015 +Datum pgl_ecircle_out(PG_FUNCTION_ARGS) {
  1.2016 +  pgl_circle *circle = (pgl_circle *)PG_GETARG_POINTER(0);
  1.2017 +  char latstr[PGL_NUMBUFLEN];
  1.2018 +  char lonstr[PGL_NUMBUFLEN];
  1.2019 +  char radstr[PGL_NUMBUFLEN];
  1.2020 +  pgl_print_lat(latstr, circle->center.lat);
  1.2021 +  pgl_print_lon(lonstr, circle->center.lon);
  1.2022 +  pgl_print_float(radstr, circle->radius);
  1.2023 +  PG_RETURN_CSTRING(psprintf("%s %s %s", latstr, lonstr, radstr));
  1.2024 +}
  1.2025 +
  1.2026 +/* convert cluster ("ecluster") to string representation */
  1.2027 +PG_FUNCTION_INFO_V1(pgl_ecluster_out);
  1.2028 +Datum pgl_ecluster_out(PG_FUNCTION_ARGS) {
  1.2029 +  pgl_cluster *cluster = (pgl_cluster *)PG_DETOAST_DATUM(PG_GETARG_DATUM(0));
  1.2030 +  char latstr[PGL_NUMBUFLEN];  /* string buffer for latitude */
  1.2031 +  char lonstr[PGL_NUMBUFLEN];  /* string buffer for longitude */
  1.2032 +  char ***strings;     /* array of array of strings */
  1.2033 +  char *string;        /* string of current token */
  1.2034 +  char *res, *resptr;  /* result and pointer to current write position */
  1.2035 +  size_t reslen = 1;   /* length of result (init with 1 for terminator) */
  1.2036 +  int npoints;         /* number of points of current entry */
  1.2037 +  int i, j;            /* i: entry, j: point in entry */
  1.2038 +  /* handle empty clusters */
  1.2039 +  if (cluster->nentries == 0) {
  1.2040 +    /* free detoasted cluster (if copy) */
  1.2041 +    PG_FREE_IF_COPY(cluster, 0);
  1.2042 +    /* return static result */
  1.2043 +    PG_RETURN_CSTRING("empty");
  1.2044 +  }
  1.2045 +  /* allocate array of array of strings */
  1.2046 +  strings = palloc(cluster->nentries * sizeof(char **));
  1.2047 +  /* iterate over all entries in cluster */
  1.2048 +  for (i=0; i<cluster->nentries; i++) {
  1.2049 +    /* get number of points in entry */
  1.2050 +    npoints = cluster->entries[i].npoints;
  1.2051 +    /* allocate array of strings (one string for each point plus two extra) */
  1.2052 +    strings[i] = palloc((2 + npoints) * sizeof(char *));
  1.2053 +    /* determine opening string */
  1.2054 +    switch (cluster->entries[i].entrytype) {
  1.2055 +      case PGL_ENTRY_POINT:   string = (i==0)?"point ("  :" point (";   break;
  1.2056 +      case PGL_ENTRY_PATH:    string = (i==0)?"path ("   :" path (";    break;
  1.2057 +      case PGL_ENTRY_OUTLINE: string = (i==0)?"outline (":" outline ("; break;
  1.2058 +      case PGL_ENTRY_POLYGON: string = (i==0)?"polygon (":" polygon ("; break;
  1.2059 +      default:                string = (i==0)?"unknown"  :" unknown";
  1.2060 +    }
  1.2061 +    /* use opening string as first string in array */
  1.2062 +    strings[i][0] = string;
  1.2063 +    /* update result length (for allocating result string later) */
  1.2064 +    reslen += strlen(string);
  1.2065 +    /* iterate over all points */
  1.2066 +    for (j=0; j<npoints; j++) {
  1.2067 +      /* create string representation of point */
  1.2068 +      pgl_print_lat(latstr, PGL_ENTRY_POINTS(cluster, i)[j].lat);
  1.2069 +      pgl_print_lon(lonstr, PGL_ENTRY_POINTS(cluster, i)[j].lon);
  1.2070 +      string = psprintf((j == 0) ? "%s %s" : " %s %s", latstr, lonstr);
  1.2071 +      /* copy string pointer to string array */
  1.2072 +      strings[i][j+1] = string;
  1.2073 +      /* update result length (for allocating result string later) */
  1.2074 +      reslen += strlen(string);
  1.2075 +    }
  1.2076 +    /* use closing parenthesis as last string in array */
  1.2077 +    strings[i][npoints+1] = ")";
  1.2078 +    /* update result length (for allocating result string later) */
  1.2079 +    reslen++;
  1.2080 +  }
  1.2081 +  /* allocate result string */
  1.2082 +  res = palloc(reslen);
  1.2083 +  /* set write pointer to begin of result string */
  1.2084 +  resptr = res;
  1.2085 +  /* copy strings into result string */
  1.2086 +  for (i=0; i<cluster->nentries; i++) {
  1.2087 +    npoints = cluster->entries[i].npoints;
  1.2088 +    for (j=0; j<npoints+2; j++) {
  1.2089 +      string = strings[i][j];
  1.2090 +      strcpy(resptr, string);
  1.2091 +      resptr += strlen(string);
  1.2092 +      /* free strings allocated by psprintf */
  1.2093 +      if (j != 0 && j != npoints+1) pfree(string);
  1.2094 +    }
  1.2095 +    /* free array of strings */
  1.2096 +    pfree(strings[i]);
  1.2097 +  }
  1.2098 +  /* free array of array of strings */
  1.2099 +  pfree(strings);
  1.2100 +  /* free detoasted cluster (if copy) */
  1.2101 +  PG_FREE_IF_COPY(cluster, 0);
  1.2102 +  /* return result */
  1.2103 +  PG_RETURN_CSTRING(res);
  1.2104 +}
  1.2105 +
  1.2106 +/* binary input function for point ("epoint") */
  1.2107 +PG_FUNCTION_INFO_V1(pgl_epoint_recv);
  1.2108 +Datum pgl_epoint_recv(PG_FUNCTION_ARGS) {
  1.2109 +  StringInfo buf = (StringInfo)PG_GETARG_POINTER(0);
  1.2110 +  pgl_point *point = (pgl_point *)palloc(sizeof(pgl_point));
  1.2111 +  point->lat = pq_getmsgfloat8(buf);
  1.2112 +  point->lon = pq_getmsgfloat8(buf);
  1.2113 +  PG_RETURN_POINTER(point);
  1.2114 +}
  1.2115 +
  1.2116 +/* binary input function for box ("ebox") */
  1.2117 +PG_FUNCTION_INFO_V1(pgl_ebox_recv);
  1.2118 +Datum pgl_ebox_recv(PG_FUNCTION_ARGS) {
  1.2119 +  StringInfo buf = (StringInfo)PG_GETARG_POINTER(0);
  1.2120 +  pgl_box *box = (pgl_box *)palloc(sizeof(pgl_box));
  1.2121 +  box->lat_min = pq_getmsgfloat8(buf);
  1.2122 +  box->lat_max = pq_getmsgfloat8(buf);
  1.2123 +  box->lon_min = pq_getmsgfloat8(buf);
  1.2124 +  box->lon_max = pq_getmsgfloat8(buf);
  1.2125 +  PG_RETURN_POINTER(box);
  1.2126 +}
  1.2127 +
  1.2128 +/* binary input function for circle ("ecircle") */
  1.2129 +PG_FUNCTION_INFO_V1(pgl_ecircle_recv);
  1.2130 +Datum pgl_ecircle_recv(PG_FUNCTION_ARGS) {
  1.2131 +  StringInfo buf = (StringInfo)PG_GETARG_POINTER(0);
  1.2132 +  pgl_circle *circle = (pgl_circle *)palloc(sizeof(pgl_circle));
  1.2133 +  circle->center.lat = pq_getmsgfloat8(buf);
  1.2134 +  circle->center.lon = pq_getmsgfloat8(buf);
  1.2135 +  circle->radius = pq_getmsgfloat8(buf);
  1.2136 +  PG_RETURN_POINTER(circle);
  1.2137 +}
  1.2138 +
  1.2139 +/* TODO: binary receive function for cluster */
  1.2140 +
  1.2141 +/* binary output function for point ("epoint") */
  1.2142 +PG_FUNCTION_INFO_V1(pgl_epoint_send);
  1.2143 +Datum pgl_epoint_send(PG_FUNCTION_ARGS) {
  1.2144 +  pgl_point *point = (pgl_point *)PG_GETARG_POINTER(0);
  1.2145 +  StringInfoData buf;
  1.2146 +  pq_begintypsend(&buf);
  1.2147 +  pq_sendfloat8(&buf, point->lat);
  1.2148 +  pq_sendfloat8(&buf, point->lon);
  1.2149 +  PG_RETURN_BYTEA_P(pq_endtypsend(&buf));
  1.2150 +}
  1.2151 +
  1.2152 +/* binary output function for box ("ebox") */
  1.2153 +PG_FUNCTION_INFO_V1(pgl_ebox_send);
  1.2154 +Datum pgl_ebox_send(PG_FUNCTION_ARGS) {
  1.2155 +  pgl_box *box = (pgl_box *)PG_GETARG_POINTER(0);
  1.2156 +  StringInfoData buf;
  1.2157 +  pq_begintypsend(&buf);
  1.2158 +  pq_sendfloat8(&buf, box->lat_min);
  1.2159 +  pq_sendfloat8(&buf, box->lat_max);
  1.2160 +  pq_sendfloat8(&buf, box->lon_min);
  1.2161 +  pq_sendfloat8(&buf, box->lon_max);
  1.2162 +  PG_RETURN_BYTEA_P(pq_endtypsend(&buf));
  1.2163 +}
  1.2164 +
  1.2165 +/* binary output function for circle ("ecircle") */
  1.2166 +PG_FUNCTION_INFO_V1(pgl_ecircle_send);
  1.2167 +Datum pgl_ecircle_send(PG_FUNCTION_ARGS) {
  1.2168 +  pgl_circle *circle = (pgl_circle *)PG_GETARG_POINTER(0);
  1.2169 +  StringInfoData buf;
  1.2170 +  pq_begintypsend(&buf);
  1.2171 +  pq_sendfloat8(&buf, circle->center.lat);
  1.2172 +  pq_sendfloat8(&buf, circle->center.lon);
  1.2173 +  pq_sendfloat8(&buf, circle->radius);
  1.2174 +  PG_RETURN_BYTEA_P(pq_endtypsend(&buf));
  1.2175 +}
  1.2176 +
  1.2177 +/* TODO: binary send functions for cluster */
  1.2178 +
  1.2179 +/* cast point ("epoint") to box ("ebox") */
  1.2180 +PG_FUNCTION_INFO_V1(pgl_epoint_to_ebox);
  1.2181 +Datum pgl_epoint_to_ebox(PG_FUNCTION_ARGS) {
  1.2182 +  pgl_point *point = (pgl_point *)PG_GETARG_POINTER(0);
  1.2183 +  pgl_box *box = palloc(sizeof(pgl_box));
  1.2184 +  box->lat_min = point->lat;
  1.2185 +  box->lat_max = point->lat;
  1.2186 +  box->lon_min = point->lon;
  1.2187 +  box->lon_max = point->lon;
  1.2188 +  PG_RETURN_POINTER(box);
  1.2189 +}
  1.2190 +
  1.2191 +/* cast point ("epoint") to circle ("ecircle") */
  1.2192 +PG_FUNCTION_INFO_V1(pgl_epoint_to_ecircle);
  1.2193 +Datum pgl_epoint_to_ecircle(PG_FUNCTION_ARGS) {
  1.2194 +  pgl_point *point = (pgl_point *)PG_GETARG_POINTER(0);
  1.2195 +  pgl_circle *circle = palloc(sizeof(pgl_box));
  1.2196 +  circle->center = *point;
  1.2197 +  circle->radius = 0;
  1.2198 +  PG_RETURN_POINTER(circle);
  1.2199 +}
  1.2200 +
  1.2201 +/* cast point ("epoint") to cluster ("ecluster") */
  1.2202 +PG_FUNCTION_INFO_V1(pgl_epoint_to_ecluster);
  1.2203 +Datum pgl_epoint_to_ecluster(PG_FUNCTION_ARGS) {
  1.2204 +  pgl_point *point = (pgl_point *)PG_GETARG_POINTER(0);
  1.2205 +  pgl_newentry entry;
  1.2206 +  entry.entrytype = PGL_ENTRY_POINT;
  1.2207 +  entry.npoints = 1;
  1.2208 +  entry.points = point;
  1.2209 +  PG_RETURN_POINTER(pgl_new_cluster(1, &entry));
  1.2210 +}
  1.2211 +
  1.2212 +/* cast box ("ebox") to cluster ("ecluster") */
  1.2213 +#define pgl_ebox_to_ecluster_macro(i, a, b) \
  1.2214 +  entries[i].entrytype = PGL_ENTRY_POLYGON; \
  1.2215 +  entries[i].npoints = 4; \
  1.2216 +  entries[i].points = points[i]; \
  1.2217 +  points[i][0].lat = box->lat_min; \
  1.2218 +  points[i][0].lon = (a); \
  1.2219 +  points[i][1].lat = box->lat_min; \
  1.2220 +  points[i][1].lon = (b); \
  1.2221 +  points[i][2].lat = box->lat_max; \
  1.2222 +  points[i][2].lon = (b); \
  1.2223 +  points[i][3].lat = box->lat_max; \
  1.2224 +  points[i][3].lon = (a);
  1.2225 +PG_FUNCTION_INFO_V1(pgl_ebox_to_ecluster);
  1.2226 +Datum pgl_ebox_to_ecluster(PG_FUNCTION_ARGS) {
  1.2227 +  pgl_box *box = (pgl_box *)PG_GETARG_POINTER(0);
  1.2228 +  double lon, dlon;
  1.2229 +  int nentries;
  1.2230 +  pgl_newentry entries[3];
  1.2231 +  pgl_point points[3][4];
  1.2232 +  if (box->lat_min > box->lat_max) {
  1.2233 +    nentries = 0;
  1.2234 +  } else if (box->lon_min > box->lon_max) {
  1.2235 +    if (box->lon_min < 0) {
  1.2236 +      lon = pgl_round((box->lon_min + 180) / 2.0);
  1.2237 +      nentries = 3;
  1.2238 +      pgl_ebox_to_ecluster_macro(0, box->lon_min, lon);
  1.2239 +      pgl_ebox_to_ecluster_macro(1, lon, 180);
  1.2240 +      pgl_ebox_to_ecluster_macro(2, -180, box->lon_max);
  1.2241 +    } else if (box->lon_max > 0) {
  1.2242 +      lon = pgl_round((box->lon_max - 180) / 2.0);
  1.2243 +      nentries = 3;
  1.2244 +      pgl_ebox_to_ecluster_macro(0, box->lon_min, 180);
  1.2245 +      pgl_ebox_to_ecluster_macro(1, -180, lon);
  1.2246 +      pgl_ebox_to_ecluster_macro(2, lon, box->lon_max);
  1.2247 +    } else {
  1.2248 +      nentries = 2;
  1.2249 +      pgl_ebox_to_ecluster_macro(0, box->lon_min, 180);
  1.2250 +      pgl_ebox_to_ecluster_macro(1, -180, box->lon_max);
  1.2251 +    }
  1.2252 +  } else {
  1.2253 +    dlon = pgl_round(box->lon_max - box->lon_min);
  1.2254 +    if (dlon < 180) {
  1.2255 +      nentries = 1;
  1.2256 +      pgl_ebox_to_ecluster_macro(0, box->lon_min, box->lon_max);
  1.2257 +    } else {
  1.2258 +      lon = pgl_round((box->lon_min + box->lon_max) / 2.0);
  1.2259 +      if (
  1.2260 +        pgl_round(lon - box->lon_min) < 180 &&
  1.2261 +        pgl_round(box->lon_max - lon) < 180
  1.2262 +      ) {
  1.2263 +        nentries = 2;
  1.2264 +        pgl_ebox_to_ecluster_macro(0, box->lon_min, lon);
  1.2265 +        pgl_ebox_to_ecluster_macro(1, lon, box->lon_max);
  1.2266 +      } else {
  1.2267 +        nentries = 3;
  1.2268 +        pgl_ebox_to_ecluster_macro(0, box->lon_min, -60);
  1.2269 +        pgl_ebox_to_ecluster_macro(1, -60, 60);
  1.2270 +        pgl_ebox_to_ecluster_macro(2, 60, box->lon_max);
  1.2271 +      }
  1.2272 +    }
  1.2273 +  }
  1.2274 +  PG_RETURN_POINTER(pgl_new_cluster(nentries, entries));
  1.2275 +}
  1.2276 +
  1.2277 +/* extract latitude from point ("epoint") */
  1.2278 +PG_FUNCTION_INFO_V1(pgl_epoint_lat);
  1.2279 +Datum pgl_epoint_lat(PG_FUNCTION_ARGS) {
  1.2280 +  PG_RETURN_FLOAT8(((pgl_point *)PG_GETARG_POINTER(0))->lat);
  1.2281 +}
  1.2282 +
  1.2283 +/* extract longitude from point ("epoint") */
  1.2284 +PG_FUNCTION_INFO_V1(pgl_epoint_lon);
  1.2285 +Datum pgl_epoint_lon(PG_FUNCTION_ARGS) {
  1.2286 +  PG_RETURN_FLOAT8(((pgl_point *)PG_GETARG_POINTER(0))->lon);
  1.2287 +}
  1.2288 +
  1.2289 +/* extract minimum latitude from box ("ebox") */
  1.2290 +PG_FUNCTION_INFO_V1(pgl_ebox_lat_min);
  1.2291 +Datum pgl_ebox_lat_min(PG_FUNCTION_ARGS) {
  1.2292 +  PG_RETURN_FLOAT8(((pgl_box *)PG_GETARG_POINTER(0))->lat_min);
  1.2293 +}
  1.2294 +
  1.2295 +/* extract maximum latitude from box ("ebox") */
  1.2296 +PG_FUNCTION_INFO_V1(pgl_ebox_lat_max);
  1.2297 +Datum pgl_ebox_lat_max(PG_FUNCTION_ARGS) {
  1.2298 +  PG_RETURN_FLOAT8(((pgl_box *)PG_GETARG_POINTER(0))->lat_max);
  1.2299 +}
  1.2300 +
  1.2301 +/* extract minimum longitude from box ("ebox") */
  1.2302 +PG_FUNCTION_INFO_V1(pgl_ebox_lon_min);
  1.2303 +Datum pgl_ebox_lon_min(PG_FUNCTION_ARGS) {
  1.2304 +  PG_RETURN_FLOAT8(((pgl_box *)PG_GETARG_POINTER(0))->lon_min);
  1.2305 +}
  1.2306 +
  1.2307 +/* extract maximum longitude from box ("ebox") */
  1.2308 +PG_FUNCTION_INFO_V1(pgl_ebox_lon_max);
  1.2309 +Datum pgl_ebox_lon_max(PG_FUNCTION_ARGS) {
  1.2310 +  PG_RETURN_FLOAT8(((pgl_box *)PG_GETARG_POINTER(0))->lon_max);
  1.2311 +}
  1.2312 +
  1.2313 +/* extract center point from circle ("ecircle") */
  1.2314 +PG_FUNCTION_INFO_V1(pgl_ecircle_center);
  1.2315 +Datum pgl_ecircle_center(PG_FUNCTION_ARGS) {
  1.2316 +  PG_RETURN_POINTER(&(((pgl_circle *)PG_GETARG_POINTER(0))->center));
  1.2317 +}
  1.2318 +
  1.2319 +/* extract radius from circle ("ecircle") */
  1.2320 +PG_FUNCTION_INFO_V1(pgl_ecircle_radius);
  1.2321 +Datum pgl_ecircle_radius(PG_FUNCTION_ARGS) {
  1.2322 +  PG_RETURN_FLOAT8(((pgl_circle *)PG_GETARG_POINTER(0))->radius);
  1.2323 +}
  1.2324 +
  1.2325 +/* check if point is inside box (overlap operator "&&") in SQL */
  1.2326 +PG_FUNCTION_INFO_V1(pgl_epoint_ebox_overlap);
  1.2327 +Datum pgl_epoint_ebox_overlap(PG_FUNCTION_ARGS) {
  1.2328 +  pgl_point *point = (pgl_point *)PG_GETARG_POINTER(0);
  1.2329 +  pgl_box *box = (pgl_box *)PG_GETARG_POINTER(1);
  1.2330 +  PG_RETURN_BOOL(pgl_point_in_box(point, box));
  1.2331 +}
  1.2332 +
  1.2333 +/* check if point is inside circle (overlap operator "&&") in SQL */
  1.2334 +PG_FUNCTION_INFO_V1(pgl_epoint_ecircle_overlap);
  1.2335 +Datum pgl_epoint_ecircle_overlap(PG_FUNCTION_ARGS) {
  1.2336 +  pgl_point *point = (pgl_point *)PG_GETARG_POINTER(0);
  1.2337 +  pgl_circle *circle = (pgl_circle *)PG_GETARG_POINTER(1);
  1.2338 +  PG_RETURN_BOOL(
  1.2339 +    pgl_distance(
  1.2340 +      point->lat, point->lon,
  1.2341 +      circle->center.lat, circle->center.lon
  1.2342 +    ) <= circle->radius
  1.2343 +  );
  1.2344 +}
  1.2345 +
  1.2346 +/* check if point is inside cluster (overlap operator "&&") in SQL */
  1.2347 +PG_FUNCTION_INFO_V1(pgl_epoint_ecluster_overlap);
  1.2348 +Datum pgl_epoint_ecluster_overlap(PG_FUNCTION_ARGS) {
  1.2349 +  pgl_point *point = (pgl_point *)PG_GETARG_POINTER(0);
  1.2350 +  pgl_cluster *cluster = (pgl_cluster *)PG_DETOAST_DATUM(PG_GETARG_DATUM(1));
  1.2351 +  bool retval;
  1.2352 +  /* points outside bounding circle are always assumed to be non-overlapping
  1.2353 +     (necessary for consistent table and index scans) */
  1.2354 +  if (
  1.2355 +    pgl_distance(
  1.2356 +      point->lat, point->lon,
  1.2357 +      cluster->bounding.center.lat, cluster->bounding.center.lon
  1.2358 +    ) > cluster->bounding.radius
  1.2359 +  ) retval = false;
  1.2360 +  else retval = pgl_point_in_cluster(point, cluster, false);
  1.2361 +  PG_FREE_IF_COPY(cluster, 1);
  1.2362 +  PG_RETURN_BOOL(retval);
  1.2363 +}
  1.2364 +
  1.2365 +/* check if point may be inside cluster (lossy overl. operator "&&+") in SQL */
  1.2366 +PG_FUNCTION_INFO_V1(pgl_epoint_ecluster_may_overlap);
  1.2367 +Datum pgl_epoint_ecluster_may_overlap(PG_FUNCTION_ARGS) {
  1.2368 +  pgl_point *point = (pgl_point *)PG_GETARG_POINTER(0);
  1.2369 +  pgl_cluster *cluster = (pgl_cluster *)PG_DETOAST_DATUM(PG_GETARG_DATUM(1));
  1.2370 +  bool retval = pgl_distance(
  1.2371 +    point->lat, point->lon,
  1.2372 +    cluster->bounding.center.lat, cluster->bounding.center.lon
  1.2373 +  ) <= cluster->bounding.radius;
  1.2374 +  PG_FREE_IF_COPY(cluster, 1);
  1.2375 +  PG_RETURN_BOOL(retval);
  1.2376 +}
  1.2377 +
  1.2378 +/* check if two boxes overlap (overlap operator "&&") in SQL */
  1.2379 +PG_FUNCTION_INFO_V1(pgl_ebox_overlap);
  1.2380 +Datum pgl_ebox_overlap(PG_FUNCTION_ARGS) {
  1.2381 +  pgl_box *box1 = (pgl_box *)PG_GETARG_POINTER(0);
  1.2382 +  pgl_box *box2 = (pgl_box *)PG_GETARG_POINTER(1);
  1.2383 +  PG_RETURN_BOOL(pgl_boxes_overlap(box1, box2));
  1.2384 +}
  1.2385 +
  1.2386 +/* check if box and circle may overlap (lossy overl. operator "&&+") in SQL */
  1.2387 +PG_FUNCTION_INFO_V1(pgl_ebox_ecircle_may_overlap);
  1.2388 +Datum pgl_ebox_ecircle_may_overlap(PG_FUNCTION_ARGS) {
  1.2389 +  pgl_box *box = (pgl_box *)PG_GETARG_POINTER(0);
  1.2390 +  pgl_circle *circle = (pgl_circle *)PG_GETARG_POINTER(1);
  1.2391 +  PG_RETURN_BOOL(
  1.2392 +    pgl_estimate_point_box_distance(&circle->center, box) <= circle->radius
  1.2393 +  );
  1.2394 +}
  1.2395 +
  1.2396 +/* check if box and cluster may overlap (lossy overl. operator "&&+") in SQL */
  1.2397 +PG_FUNCTION_INFO_V1(pgl_ebox_ecluster_may_overlap);
  1.2398 +Datum pgl_ebox_ecluster_may_overlap(PG_FUNCTION_ARGS) {
  1.2399 +  pgl_box *box = (pgl_box *)PG_GETARG_POINTER(0);
  1.2400 +  pgl_cluster *cluster = (pgl_cluster *)PG_DETOAST_DATUM(PG_GETARG_DATUM(1));
  1.2401 +  bool retval = pgl_estimate_point_box_distance(
  1.2402 +    &cluster->bounding.center,
  1.2403 +    box
  1.2404 +  ) <= cluster->bounding.radius;
  1.2405 +  PG_FREE_IF_COPY(cluster, 1);
  1.2406 +  PG_RETURN_BOOL(retval);
  1.2407 +}
  1.2408 +
  1.2409 +/* check if two circles overlap (overlap operator "&&") in SQL */
  1.2410 +PG_FUNCTION_INFO_V1(pgl_ecircle_overlap);
  1.2411 +Datum pgl_ecircle_overlap(PG_FUNCTION_ARGS) {
  1.2412 +  pgl_circle *circle1 = (pgl_circle *)PG_GETARG_POINTER(0);
  1.2413 +  pgl_circle *circle2 = (pgl_circle *)PG_GETARG_POINTER(1);
  1.2414 +  PG_RETURN_BOOL(
  1.2415 +    pgl_distance(
  1.2416 +      circle1->center.lat, circle1->center.lon,
  1.2417 +      circle2->center.lat, circle2->center.lon
  1.2418 +    ) <= circle1->radius + circle2->radius
  1.2419 +  );
  1.2420 +}
  1.2421 +
  1.2422 +/* check if circle and cluster overlap (overlap operator "&&") in SQL */
  1.2423 +PG_FUNCTION_INFO_V1(pgl_ecircle_ecluster_overlap);
  1.2424 +Datum pgl_ecircle_ecluster_overlap(PG_FUNCTION_ARGS) {
  1.2425 +  pgl_circle *circle = (pgl_circle *)PG_GETARG_POINTER(0);
  1.2426 +  pgl_cluster *cluster = (pgl_cluster *)PG_DETOAST_DATUM(PG_GETARG_DATUM(1));
  1.2427 +  bool retval = (
  1.2428 +    pgl_point_cluster_distance(&(circle->center), cluster) <= circle->radius
  1.2429 +  );
  1.2430 +  PG_FREE_IF_COPY(cluster, 1);
  1.2431 +  PG_RETURN_BOOL(retval);
  1.2432 +}
  1.2433 +
  1.2434 +/* check if circle and cluster may overlap (l. ov. operator "&&+") in SQL */
  1.2435 +PG_FUNCTION_INFO_V1(pgl_ecircle_ecluster_may_overlap);
  1.2436 +Datum pgl_ecircle_ecluster_may_overlap(PG_FUNCTION_ARGS) {
  1.2437 +  pgl_circle *circle = (pgl_circle *)PG_GETARG_POINTER(0);
  1.2438 +  pgl_cluster *cluster = (pgl_cluster *)PG_DETOAST_DATUM(PG_GETARG_DATUM(1));
  1.2439 +  bool retval = pgl_distance(
  1.2440 +    circle->center.lat, circle->center.lon,
  1.2441 +    cluster->bounding.center.lat, cluster->bounding.center.lon
  1.2442 +  ) <= circle->radius + cluster->bounding.radius;
  1.2443 +  PG_FREE_IF_COPY(cluster, 1);
  1.2444 +  PG_RETURN_BOOL(retval);
  1.2445 +}
  1.2446 +
  1.2447 +/* check if two clusters overlap (overlap operator "&&") in SQL */
  1.2448 +PG_FUNCTION_INFO_V1(pgl_ecluster_overlap);
  1.2449 +Datum pgl_ecluster_overlap(PG_FUNCTION_ARGS) {
  1.2450 +  pgl_cluster *cluster1 = (pgl_cluster *)PG_DETOAST_DATUM(PG_GETARG_DATUM(0));
  1.2451 +  pgl_cluster *cluster2 = (pgl_cluster *)PG_DETOAST_DATUM(PG_GETARG_DATUM(1));
  1.2452 +  bool retval;
  1.2453 +  /* clusters with non-touching bounding circles are always assumed to be
  1.2454 +     non-overlapping (improves performance and is necessary for consistent
  1.2455 +     table and index scans) */
  1.2456 +  if (
  1.2457 +    pgl_distance(
  1.2458 +      cluster1->bounding.center.lat, cluster1->bounding.center.lon,
  1.2459 +      cluster2->bounding.center.lat, cluster2->bounding.center.lon
  1.2460 +    ) > cluster1->bounding.radius + cluster2->bounding.radius
  1.2461 +  ) retval = false;
  1.2462 +  else retval = pgl_clusters_overlap(cluster1, cluster2);
  1.2463 +  PG_FREE_IF_COPY(cluster1, 0);
  1.2464 +  PG_FREE_IF_COPY(cluster2, 1);
  1.2465 +  PG_RETURN_BOOL(retval);
  1.2466 +}
  1.2467 +
  1.2468 +/* check if two clusters may overlap (lossy overlap operator "&&+") in SQL */
  1.2469 +PG_FUNCTION_INFO_V1(pgl_ecluster_may_overlap);
  1.2470 +Datum pgl_ecluster_may_overlap(PG_FUNCTION_ARGS) {
  1.2471 +  pgl_cluster *cluster1 = (pgl_cluster *)PG_DETOAST_DATUM(PG_GETARG_DATUM(0));
  1.2472 +  pgl_cluster *cluster2 = (pgl_cluster *)PG_DETOAST_DATUM(PG_GETARG_DATUM(1));
  1.2473 +  bool retval = pgl_distance(
  1.2474 +    cluster1->bounding.center.lat, cluster1->bounding.center.lon,
  1.2475 +    cluster2->bounding.center.lat, cluster2->bounding.center.lon
  1.2476 +  ) <= cluster1->bounding.radius + cluster2->bounding.radius;
  1.2477 +  PG_FREE_IF_COPY(cluster1, 0);
  1.2478 +  PG_FREE_IF_COPY(cluster2, 1);
  1.2479 +  PG_RETURN_BOOL(retval);
  1.2480 +}
  1.2481 +
  1.2482 +/* check if second cluster is in first cluster (cont. operator "@>) in SQL */
  1.2483 +PG_FUNCTION_INFO_V1(pgl_ecluster_contains);
  1.2484 +Datum pgl_ecluster_contains(PG_FUNCTION_ARGS) {
  1.2485 +  pgl_cluster *outer = (pgl_cluster *)PG_DETOAST_DATUM(PG_GETARG_DATUM(0));
  1.2486 +  pgl_cluster *inner = (pgl_cluster *)PG_DETOAST_DATUM(PG_GETARG_DATUM(1));
  1.2487 +  bool retval;
  1.2488 +  /* clusters with non-touching bounding circles are always assumed to be
  1.2489 +     non-overlapping (improves performance and is necessary for consistent
  1.2490 +     table and index scans) */
  1.2491 +  if (
  1.2492 +    pgl_distance(
  1.2493 +      outer->bounding.center.lat, outer->bounding.center.lon,
  1.2494 +      inner->bounding.center.lat, inner->bounding.center.lon
  1.2495 +    ) > outer->bounding.radius + inner->bounding.radius
  1.2496 +  ) retval = false;
  1.2497 +  else retval = pgl_cluster_in_cluster(outer, inner);
  1.2498 +  PG_FREE_IF_COPY(outer, 0);
  1.2499 +  PG_FREE_IF_COPY(inner, 1);
  1.2500 +  PG_RETURN_BOOL(retval);
  1.2501 +}
  1.2502 +
  1.2503 +/* calculate distance between two points ("<->" operator) in SQL */
  1.2504 +PG_FUNCTION_INFO_V1(pgl_epoint_distance);
  1.2505 +Datum pgl_epoint_distance(PG_FUNCTION_ARGS) {
  1.2506 +  pgl_point *point1 = (pgl_point *)PG_GETARG_POINTER(0);
  1.2507 +  pgl_point *point2 = (pgl_point *)PG_GETARG_POINTER(1);
  1.2508 +  PG_RETURN_FLOAT8(pgl_distance(
  1.2509 +    point1->lat, point1->lon, point2->lat, point2->lon
  1.2510 +  ));
  1.2511 +}
  1.2512 +
  1.2513 +/* calculate point to circle distance ("<->" operator) in SQL */
  1.2514 +PG_FUNCTION_INFO_V1(pgl_epoint_ecircle_distance);
  1.2515 +Datum pgl_epoint_ecircle_distance(PG_FUNCTION_ARGS) {
  1.2516 +  pgl_point *point = (pgl_point *)PG_GETARG_POINTER(0);
  1.2517 +  pgl_circle *circle = (pgl_circle *)PG_GETARG_POINTER(1);
  1.2518 +  double distance = pgl_distance(
  1.2519 +    point->lat, point->lon, circle->center.lat, circle->center.lon
  1.2520 +  ) - circle->radius;
  1.2521 +  PG_RETURN_FLOAT8((distance <= 0) ? 0 : distance);
  1.2522 +}
  1.2523 +
  1.2524 +/* calculate point to cluster distance ("<->" operator) in SQL */
  1.2525 +PG_FUNCTION_INFO_V1(pgl_epoint_ecluster_distance);
  1.2526 +Datum pgl_epoint_ecluster_distance(PG_FUNCTION_ARGS) {
  1.2527 +  pgl_point *point = (pgl_point *)PG_GETARG_POINTER(0);
  1.2528 +  pgl_cluster *cluster = (pgl_cluster *)PG_DETOAST_DATUM(PG_GETARG_DATUM(1));
  1.2529 +  double distance = pgl_point_cluster_distance(point, cluster);
  1.2530 +  PG_FREE_IF_COPY(cluster, 1);
  1.2531 +  PG_RETURN_FLOAT8(distance);
  1.2532 +}
  1.2533 +
  1.2534 +/* calculate distance between two circles ("<->" operator) in SQL */
  1.2535 +PG_FUNCTION_INFO_V1(pgl_ecircle_distance);
  1.2536 +Datum pgl_ecircle_distance(PG_FUNCTION_ARGS) {
  1.2537 +  pgl_circle *circle1 = (pgl_circle *)PG_GETARG_POINTER(0);
  1.2538 +  pgl_circle *circle2 = (pgl_circle *)PG_GETARG_POINTER(1);
  1.2539 +  double distance = pgl_distance(
  1.2540 +    circle1->center.lat, circle1->center.lon,
  1.2541 +    circle2->center.lat, circle2->center.lon
  1.2542 +  ) - (circle1->radius + circle2->radius);
  1.2543 +  PG_RETURN_FLOAT8((distance <= 0) ? 0 : distance);
  1.2544 +}
  1.2545 +
  1.2546 +/* calculate circle to cluster distance ("<->" operator) in SQL */
  1.2547 +PG_FUNCTION_INFO_V1(pgl_ecircle_ecluster_distance);
  1.2548 +Datum pgl_ecircle_ecluster_distance(PG_FUNCTION_ARGS) {
  1.2549 +  pgl_circle *circle = (pgl_circle *)PG_GETARG_POINTER(0);
  1.2550 +  pgl_cluster *cluster = (pgl_cluster *)PG_DETOAST_DATUM(PG_GETARG_DATUM(1));
  1.2551 +  double distance = (
  1.2552 +    pgl_point_cluster_distance(&(circle->center), cluster) - circle->radius
  1.2553 +  );
  1.2554 +  PG_FREE_IF_COPY(cluster, 1);
  1.2555 +  PG_RETURN_FLOAT8((distance <= 0) ? 0 : distance);
  1.2556 +}
  1.2557 +
  1.2558 +/* calculate distance between two clusters ("<->" operator) in SQL */
  1.2559 +PG_FUNCTION_INFO_V1(pgl_ecluster_distance);
  1.2560 +Datum pgl_ecluster_distance(PG_FUNCTION_ARGS) {
  1.2561 +  pgl_cluster *cluster1 = (pgl_cluster *)PG_DETOAST_DATUM(PG_GETARG_DATUM(0));
  1.2562 +  pgl_cluster *cluster2 = (pgl_cluster *)PG_DETOAST_DATUM(PG_GETARG_DATUM(1));
  1.2563 +  double retval = pgl_cluster_distance(cluster1, cluster2);
  1.2564 +  PG_FREE_IF_COPY(cluster1, 0);
  1.2565 +  PG_FREE_IF_COPY(cluster2, 1);
  1.2566 +  PG_RETURN_FLOAT8(retval);
  1.2567 +}
  1.2568 +
  1.2569 +
  1.2570 +/*-----------------------------------------------------------*
  1.2571 + *  B-tree comparison operators and index support functions  *
  1.2572 + *-----------------------------------------------------------*/
  1.2573 +
  1.2574 +/* macro for a B-tree operator (without detoasting) */
  1.2575 +#define PGL_BTREE_OPER(func, type, cmpfunc, oper) \
  1.2576 +  PG_FUNCTION_INFO_V1(func); \
  1.2577 +  Datum func(PG_FUNCTION_ARGS) { \
  1.2578 +    type *a = (type *)PG_GETARG_POINTER(0); \
  1.2579 +    type *b = (type *)PG_GETARG_POINTER(1); \
  1.2580 +    PG_RETURN_BOOL(cmpfunc(a, b) oper 0); \
  1.2581 +  }
  1.2582 +
  1.2583 +/* macro for a B-tree comparison function (without detoasting) */
  1.2584 +#define PGL_BTREE_CMP(func, type, cmpfunc) \
  1.2585 +  PG_FUNCTION_INFO_V1(func); \
  1.2586 +  Datum func(PG_FUNCTION_ARGS) { \
  1.2587 +    type *a = (type *)PG_GETARG_POINTER(0); \
  1.2588 +    type *b = (type *)PG_GETARG_POINTER(1); \
  1.2589 +    PG_RETURN_INT32(cmpfunc(a, b)); \
  1.2590 +  }
  1.2591 +
  1.2592 +/* macro for a B-tree operator (with detoasting) */
  1.2593 +#define PGL_BTREE_OPER_DETOAST(func, type, cmpfunc, oper) \
  1.2594 +  PG_FUNCTION_INFO_V1(func); \
  1.2595 +  Datum func(PG_FUNCTION_ARGS) { \
  1.2596 +    bool res; \
  1.2597 +    type *a = (type *)PG_DETOAST_DATUM(PG_GETARG_DATUM(0)); \
  1.2598 +    type *b = (type *)PG_DETOAST_DATUM(PG_GETARG_DATUM(1)); \
  1.2599 +    res = cmpfunc(a, b) oper 0; \
  1.2600 +    PG_FREE_IF_COPY(a, 0); \
  1.2601 +    PG_FREE_IF_COPY(b, 1); \
  1.2602 +    PG_RETURN_BOOL(res); \
  1.2603 +  }
  1.2604 +
  1.2605 +/* macro for a B-tree comparison function (with detoasting) */
  1.2606 +#define PGL_BTREE_CMP_DETOAST(func, type, cmpfunc) \
  1.2607 +  PG_FUNCTION_INFO_V1(func); \
  1.2608 +  Datum func(PG_FUNCTION_ARGS) { \
  1.2609 +    int32_t res; \
  1.2610 +    type *a = (type *)PG_DETOAST_DATUM(PG_GETARG_DATUM(0)); \
  1.2611 +    type *b = (type *)PG_DETOAST_DATUM(PG_GETARG_DATUM(1)); \
  1.2612 +    res = cmpfunc(a, b); \
  1.2613 +    PG_FREE_IF_COPY(a, 0); \
  1.2614 +    PG_FREE_IF_COPY(b, 1); \
  1.2615 +    PG_RETURN_INT32(res); \
  1.2616 +  }
  1.2617 +
  1.2618 +/* B-tree operators and comparison function for point */
  1.2619 +PGL_BTREE_OPER(pgl_btree_epoint_lt, pgl_point, pgl_point_cmp, <)
  1.2620 +PGL_BTREE_OPER(pgl_btree_epoint_le, pgl_point, pgl_point_cmp, <=)
  1.2621 +PGL_BTREE_OPER(pgl_btree_epoint_eq, pgl_point, pgl_point_cmp, ==)
  1.2622 +PGL_BTREE_OPER(pgl_btree_epoint_ne, pgl_point, pgl_point_cmp, !=)
  1.2623 +PGL_BTREE_OPER(pgl_btree_epoint_ge, pgl_point, pgl_point_cmp, >=)
  1.2624 +PGL_BTREE_OPER(pgl_btree_epoint_gt, pgl_point, pgl_point_cmp, >)
  1.2625 +PGL_BTREE_CMP(pgl_btree_epoint_cmp, pgl_point, pgl_point_cmp)
  1.2626 +
  1.2627 +/* B-tree operators and comparison function for box */
  1.2628 +PGL_BTREE_OPER(pgl_btree_ebox_lt, pgl_box, pgl_box_cmp, <)
  1.2629 +PGL_BTREE_OPER(pgl_btree_ebox_le, pgl_box, pgl_box_cmp, <=)
  1.2630 +PGL_BTREE_OPER(pgl_btree_ebox_eq, pgl_box, pgl_box_cmp, ==)
  1.2631 +PGL_BTREE_OPER(pgl_btree_ebox_ne, pgl_box, pgl_box_cmp, !=)
  1.2632 +PGL_BTREE_OPER(pgl_btree_ebox_ge, pgl_box, pgl_box_cmp, >=)
  1.2633 +PGL_BTREE_OPER(pgl_btree_ebox_gt, pgl_box, pgl_box_cmp, >)
  1.2634 +PGL_BTREE_CMP(pgl_btree_ebox_cmp, pgl_box, pgl_box_cmp)
  1.2635 +
  1.2636 +/* B-tree operators and comparison function for circle */
  1.2637 +PGL_BTREE_OPER(pgl_btree_ecircle_lt, pgl_circle, pgl_circle_cmp, <)
  1.2638 +PGL_BTREE_OPER(pgl_btree_ecircle_le, pgl_circle, pgl_circle_cmp, <=)
  1.2639 +PGL_BTREE_OPER(pgl_btree_ecircle_eq, pgl_circle, pgl_circle_cmp, ==)
  1.2640 +PGL_BTREE_OPER(pgl_btree_ecircle_ne, pgl_circle, pgl_circle_cmp, !=)
  1.2641 +PGL_BTREE_OPER(pgl_btree_ecircle_ge, pgl_circle, pgl_circle_cmp, >=)
  1.2642 +PGL_BTREE_OPER(pgl_btree_ecircle_gt, pgl_circle, pgl_circle_cmp, >)
  1.2643 +PGL_BTREE_CMP(pgl_btree_ecircle_cmp, pgl_circle, pgl_circle_cmp)
  1.2644 +
  1.2645 +
  1.2646 +/*--------------------------------*
  1.2647 + *  GiST index support functions  *
  1.2648 + *--------------------------------*/
  1.2649 +
  1.2650 +/* GiST "consistent" support function */
  1.2651 +PG_FUNCTION_INFO_V1(pgl_gist_consistent);
  1.2652 +Datum pgl_gist_consistent(PG_FUNCTION_ARGS) {
  1.2653 +  GISTENTRY *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
  1.2654 +  pgl_keyptr key = (pgl_keyptr)DatumGetPointer(entry->key);
  1.2655 +  StrategyNumber strategy = (StrategyNumber)PG_GETARG_UINT16(2);
  1.2656 +  bool *recheck = (bool *)PG_GETARG_POINTER(4);
  1.2657 +  /* demand recheck because index and query methods are lossy */
  1.2658 +  *recheck = true;
  1.2659 +  /* strategy number aliases for different operators using the same strategy */
  1.2660 +  strategy %= 100;
  1.2661 +  /* strategy number 11: equality of two points */
  1.2662 +  if (strategy == 11) {
  1.2663 +    /* query datum is another point */
  1.2664 +    pgl_point *query = (pgl_point *)PG_GETARG_POINTER(1);
  1.2665 +    /* convert other point to key */
  1.2666 +    pgl_pointkey querykey;
  1.2667 +    pgl_point_to_key(query, querykey);
  1.2668 +    /* return true if both keys overlap */
  1.2669 +    PG_RETURN_BOOL(pgl_keys_overlap(key, querykey));
  1.2670 +  }
  1.2671 +  /* strategy number 13: equality of two circles */
  1.2672 +  if (strategy == 13) {
  1.2673 +    /* query datum is another circle */
  1.2674 +    pgl_circle *query = (pgl_circle *)PG_GETARG_POINTER(1);
  1.2675 +    /* convert other circle to key */
  1.2676 +    pgl_areakey querykey;
  1.2677 +    pgl_circle_to_key(query, querykey);
  1.2678 +    /* return true if both keys overlap */
  1.2679 +    PG_RETURN_BOOL(pgl_keys_overlap(key, querykey));
  1.2680 +  }
  1.2681 +  /* for all remaining strategies, keys on empty objects produce no match */
  1.2682 +  /* (check necessary because query radius may be infinite) */
  1.2683 +  if (PGL_KEY_IS_EMPTY(key)) PG_RETURN_BOOL(false);
  1.2684 +  /* strategy number 21: overlapping with point */
  1.2685 +  if (strategy == 21) {
  1.2686 +    /* query datum is a point */
  1.2687 +    pgl_point *query = (pgl_point *)PG_GETARG_POINTER(1);
  1.2688 +    /* return true if estimated distance (allowed to be smaller than real
  1.2689 +       distance) between index key and point is zero */
  1.2690 +    PG_RETURN_BOOL(pgl_estimate_key_distance(key, query) == 0);
  1.2691 +  }
  1.2692 +  /* strategy number 22: (point) overlapping with box */
  1.2693 +  if (strategy == 22) {
  1.2694 +    /* query datum is a box */
  1.2695 +    pgl_box *query = (pgl_box *)PG_GETARG_POINTER(1);
  1.2696 +    /* determine bounding box of indexed key */
  1.2697 +    pgl_box keybox;
  1.2698 +    pgl_key_to_box(key, &keybox);
  1.2699 +    /* return true if query box overlaps with bounding box of indexed key */
  1.2700 +    PG_RETURN_BOOL(pgl_boxes_overlap(query, &keybox));
  1.2701 +  }
  1.2702 +  /* strategy number 23: overlapping with circle */
  1.2703 +  if (strategy == 23) {
  1.2704 +    /* query datum is a circle */
  1.2705 +    pgl_circle *query = (pgl_circle *)PG_GETARG_POINTER(1);
  1.2706 +    /* return true if estimated distance (allowed to be smaller than real
  1.2707 +       distance) between index key and circle center is smaller than radius */
  1.2708 +    PG_RETURN_BOOL(
  1.2709 +      pgl_estimate_key_distance(key, &(query->center)) <= query->radius
  1.2710 +    );
  1.2711 +  }
  1.2712 +  /* strategy number 24: overlapping with cluster */
  1.2713 +  if (strategy == 24) {
  1.2714 +    bool retval;  /* return value */
  1.2715 +    /* query datum is a cluster */
  1.2716 +    pgl_cluster *query = (pgl_cluster *)PG_DETOAST_DATUM(PG_GETARG_DATUM(1));
  1.2717 +    /* return true if estimated distance (allowed to be smaller than real
  1.2718 +       distance) between index key and circle center is smaller than radius */
  1.2719 +    retval = (
  1.2720 +      pgl_estimate_key_distance(key, &(query->bounding.center)) <=
  1.2721 +      query->bounding.radius
  1.2722 +    );
  1.2723 +    PG_FREE_IF_COPY(query, 1);  /* free detoasted cluster (if copy) */
  1.2724 +    PG_RETURN_BOOL(retval);
  1.2725 +  }
  1.2726 +  /* throw error for any unknown strategy number */
  1.2727 +  elog(ERROR, "unrecognized strategy number: %d", strategy);
  1.2728 +}
  1.2729 +
  1.2730 +/* GiST "union" support function */
  1.2731 +PG_FUNCTION_INFO_V1(pgl_gist_union);
  1.2732 +Datum pgl_gist_union(PG_FUNCTION_ARGS) {
  1.2733 +  GistEntryVector *entryvec = (GistEntryVector *)PG_GETARG_POINTER(0);
  1.2734 +  pgl_keyptr out;  /* return value (to be palloc'ed) */
  1.2735 +  int i;
  1.2736 +  /* determine key size */
  1.2737 +  size_t keysize = PGL_KEY_IS_AREAKEY(
  1.2738 +    (pgl_keyptr)DatumGetPointer(entryvec->vector[0].key)
  1.2739 +  ) ? sizeof (pgl_areakey) : sizeof(pgl_pointkey);
  1.2740 +  /* begin with first key as result */
  1.2741 +  out = palloc(keysize);
  1.2742 +  memcpy(out, (pgl_keyptr)DatumGetPointer(entryvec->vector[0].key), keysize);
  1.2743 +  /* unite current result with second, third, etc. key */
  1.2744 +  for (i=1; i<entryvec->n; i++) {
  1.2745 +    pgl_unite_keys(out, (pgl_keyptr)DatumGetPointer(entryvec->vector[i].key));
  1.2746 +  }
  1.2747 +  /* return result */
  1.2748 +  PG_RETURN_POINTER(out);
  1.2749 +}
  1.2750 +
  1.2751 +/* GiST "compress" support function for indicis on points */
  1.2752 +PG_FUNCTION_INFO_V1(pgl_gist_compress_epoint);
  1.2753 +Datum pgl_gist_compress_epoint(PG_FUNCTION_ARGS) {
  1.2754 +  GISTENTRY *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
  1.2755 +  GISTENTRY *retval;  /* return value (to be palloc'ed unless set to entry) */
  1.2756 +  /* only transform new leaves */
  1.2757 +  if (entry->leafkey) {
  1.2758 +    /* get point to be transformed */
  1.2759 +    pgl_point *point = (pgl_point *)DatumGetPointer(entry->key);
  1.2760 +    /* allocate memory for key */
  1.2761 +    pgl_keyptr key = palloc(sizeof(pgl_pointkey));
  1.2762 +    /* transform point to key */
  1.2763 +    pgl_point_to_key(point, key);
  1.2764 +    /* create new GISTENTRY structure as return value */
  1.2765 +    retval = palloc(sizeof(GISTENTRY));
  1.2766 +    gistentryinit(
  1.2767 +      *retval, PointerGetDatum(key),
  1.2768 +      entry->rel, entry->page, entry->offset, FALSE
  1.2769 +    );
  1.2770 +  } else {
  1.2771 +    /* inner nodes have already been transformed */
  1.2772 +    retval = entry;
  1.2773 +  }
  1.2774 +  /* return pointer to old or new GISTENTRY structure */
  1.2775 +  PG_RETURN_POINTER(retval);
  1.2776 +}
  1.2777 +
  1.2778 +/* GiST "compress" support function for indicis on circles */
  1.2779 +PG_FUNCTION_INFO_V1(pgl_gist_compress_ecircle);
  1.2780 +Datum pgl_gist_compress_ecircle(PG_FUNCTION_ARGS) {
  1.2781 +  GISTENTRY *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
  1.2782 +  GISTENTRY *retval;  /* return value (to be palloc'ed unless set to entry) */
  1.2783 +  /* only transform new leaves */
  1.2784 +  if (entry->leafkey) {
  1.2785 +    /* get circle to be transformed */
  1.2786 +    pgl_circle *circle = (pgl_circle *)DatumGetPointer(entry->key);
  1.2787 +    /* allocate memory for key */
  1.2788 +    pgl_keyptr key = palloc(sizeof(pgl_areakey));
  1.2789 +    /* transform circle to key */
  1.2790 +    pgl_circle_to_key(circle, key);
  1.2791 +    /* create new GISTENTRY structure as return value */
  1.2792 +    retval = palloc(sizeof(GISTENTRY));
  1.2793 +    gistentryinit(
  1.2794 +      *retval, PointerGetDatum(key),
  1.2795 +      entry->rel, entry->page, entry->offset, FALSE
  1.2796 +    );
  1.2797 +  } else {
  1.2798 +    /* inner nodes have already been transformed */
  1.2799 +    retval = entry;
  1.2800 +  }
  1.2801 +  /* return pointer to old or new GISTENTRY structure */
  1.2802 +  PG_RETURN_POINTER(retval);
  1.2803 +}
  1.2804 +
  1.2805 +/* GiST "compress" support function for indices on clusters */
  1.2806 +PG_FUNCTION_INFO_V1(pgl_gist_compress_ecluster);
  1.2807 +Datum pgl_gist_compress_ecluster(PG_FUNCTION_ARGS) {
  1.2808 +  GISTENTRY *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
  1.2809 +  GISTENTRY *retval;  /* return value (to be palloc'ed unless set to entry) */
  1.2810 +  /* only transform new leaves */
  1.2811 +  if (entry->leafkey) {
  1.2812 +    /* get cluster to be transformed (detoasting necessary!) */
  1.2813 +    pgl_cluster *cluster = (pgl_cluster *)PG_DETOAST_DATUM(entry->key);
  1.2814 +    /* allocate memory for key */
  1.2815 +    pgl_keyptr key = palloc(sizeof(pgl_areakey));
  1.2816 +    /* transform cluster to key */
  1.2817 +    pgl_circle_to_key(&(cluster->bounding), key);
  1.2818 +    /* create new GISTENTRY structure as return value */
  1.2819 +    retval = palloc(sizeof(GISTENTRY));
  1.2820 +    gistentryinit(
  1.2821 +      *retval, PointerGetDatum(key),
  1.2822 +      entry->rel, entry->page, entry->offset, FALSE
  1.2823 +    );
  1.2824 +    /* free detoasted datum */
  1.2825 +    if ((void *)cluster != (void *)DatumGetPointer(entry->key)) pfree(cluster);
  1.2826 +  } else {
  1.2827 +    /* inner nodes have already been transformed */
  1.2828 +    retval = entry;
  1.2829 +  }
  1.2830 +  /* return pointer to old or new GISTENTRY structure */
  1.2831 +  PG_RETURN_POINTER(retval);
  1.2832 +}
  1.2833 +
  1.2834 +/* GiST "decompress" support function for indices */
  1.2835 +PG_FUNCTION_INFO_V1(pgl_gist_decompress);
  1.2836 +Datum pgl_gist_decompress(PG_FUNCTION_ARGS) {
  1.2837 +  /* return passed pointer without transformation */
  1.2838 +  PG_RETURN_POINTER(PG_GETARG_POINTER(0));
  1.2839 +}
  1.2840 +
  1.2841 +/* GiST "penalty" support function */
  1.2842 +PG_FUNCTION_INFO_V1(pgl_gist_penalty);
  1.2843 +Datum pgl_gist_penalty(PG_FUNCTION_ARGS) {
  1.2844 +  GISTENTRY *origentry = (GISTENTRY *)PG_GETARG_POINTER(0);
  1.2845 +  GISTENTRY *newentry = (GISTENTRY *)PG_GETARG_POINTER(1);
  1.2846 +  float *penalty = (float *)PG_GETARG_POINTER(2);
  1.2847 +  /* get original key and key to insert */
  1.2848 +  pgl_keyptr orig = (pgl_keyptr)DatumGetPointer(origentry->key);
  1.2849 +  pgl_keyptr new = (pgl_keyptr)DatumGetPointer(newentry->key);
  1.2850 +  /* copy original key */
  1.2851 +  union { pgl_pointkey pointkey; pgl_areakey areakey; } union_key;
  1.2852 +  if (PGL_KEY_IS_AREAKEY(orig)) {
  1.2853 +    memcpy(union_key.areakey, orig, sizeof(union_key.areakey));
  1.2854 +  } else {
  1.2855 +    memcpy(union_key.pointkey, orig, sizeof(union_key.pointkey));
  1.2856 +  }
  1.2857 +  /* calculate union of both keys */
  1.2858 +  pgl_unite_keys((pgl_keyptr)&union_key, new);
  1.2859 +  /* penalty equal to reduction of key length (logarithm of added area) */
  1.2860 +  /* (return value by setting referenced value and returning pointer) */
  1.2861 +  *penalty = (
  1.2862 +    PGL_KEY_NODEDEPTH(orig) - PGL_KEY_NODEDEPTH((pgl_keyptr)&union_key)
  1.2863 +  );
  1.2864 +  PG_RETURN_POINTER(penalty);
  1.2865 +}
  1.2866 +
  1.2867 +/* GiST "picksplit" support function */
  1.2868 +PG_FUNCTION_INFO_V1(pgl_gist_picksplit);
  1.2869 +Datum pgl_gist_picksplit(PG_FUNCTION_ARGS) {
  1.2870 +  GistEntryVector *entryvec = (GistEntryVector *)PG_GETARG_POINTER(0);
  1.2871 +  GIST_SPLITVEC *v = (GIST_SPLITVEC *)PG_GETARG_POINTER(1);
  1.2872 +  OffsetNumber i;  /* between FirstOffsetNumber and entryvec->n (inclusive) */
  1.2873 +  union {
  1.2874 +    pgl_pointkey pointkey;
  1.2875 +    pgl_areakey areakey;
  1.2876 +  } union_all;  /* union of all keys (to be calculated from scratch)
  1.2877 +                   (later cut in half) */
  1.2878 +  int is_areakey = PGL_KEY_IS_AREAKEY(
  1.2879 +    (pgl_keyptr)DatumGetPointer(entryvec->vector[FirstOffsetNumber].key)
  1.2880 +  );
  1.2881 +  int keysize = is_areakey ? sizeof(pgl_areakey) : sizeof(pgl_pointkey);
  1.2882 +  pgl_keyptr unionL = palloc(keysize);  /* union of keys that go left */
  1.2883 +  pgl_keyptr unionR = palloc(keysize);  /* union of keys that go right */
  1.2884 +  pgl_keyptr key;  /* current key to be processed */
  1.2885 +  /* allocate memory for array of left and right keys, set counts to zero */
  1.2886 +  v->spl_left = (OffsetNumber *)palloc(entryvec->n * sizeof(OffsetNumber));
  1.2887 +  v->spl_nleft = 0;
  1.2888 +  v->spl_right = (OffsetNumber *)palloc(entryvec->n * sizeof(OffsetNumber));
  1.2889 +  v->spl_nright = 0;
  1.2890 +  /* calculate union of all keys from scratch */
  1.2891 +  memcpy(
  1.2892 +    (pgl_keyptr)&union_all,
  1.2893 +    (pgl_keyptr)DatumGetPointer(entryvec->vector[FirstOffsetNumber].key),
  1.2894 +    keysize
  1.2895 +  );
  1.2896 +  for (i=FirstOffsetNumber+1; i<entryvec->n; i=OffsetNumberNext(i)) {
  1.2897 +    pgl_unite_keys(
  1.2898 +      (pgl_keyptr)&union_all,
  1.2899 +      (pgl_keyptr)DatumGetPointer(entryvec->vector[i].key)
  1.2900 +    );
  1.2901 +  }
  1.2902 +  /* check if trivial split is necessary due to exhausted key length */
  1.2903 +  /* (Note: keys for empty objects must have node depth set to maximum) */
  1.2904 +  if (PGL_KEY_NODEDEPTH((pgl_keyptr)&union_all) == (
  1.2905 +    is_areakey ? PGL_AREAKEY_MAXDEPTH : PGL_POINTKEY_MAXDEPTH
  1.2906 +  )) {
  1.2907 +    /* half of all keys go left */
  1.2908 +    for (
  1.2909 +      i=FirstOffsetNumber;
  1.2910 +      i<FirstOffsetNumber+(entryvec->n - FirstOffsetNumber)/2;
  1.2911 +      i=OffsetNumberNext(i)
  1.2912 +    ) {
  1.2913 +      /* pointer to current key */
  1.2914 +      key = (pgl_keyptr)DatumGetPointer(entryvec->vector[i].key);
  1.2915 +      /* update unionL */
  1.2916 +      /* check if key is first key that goes left */
  1.2917 +      if (!v->spl_nleft) {
  1.2918 +        /* first key that goes left is just copied to unionL */
  1.2919 +        memcpy(unionL, key, keysize);
  1.2920 +      } else {
  1.2921 +        /* unite current value and next key */
  1.2922 +        pgl_unite_keys(unionL, key);
  1.2923 +      }
  1.2924 +      /* append offset number to list of keys that go left */
  1.2925 +      v->spl_left[v->spl_nleft++] = i;
  1.2926 +    }
  1.2927 +    /* other half goes right */
  1.2928 +    for (
  1.2929 +      i=FirstOffsetNumber+(entryvec->n - FirstOffsetNumber)/2;
  1.2930 +      i<entryvec->n;
  1.2931 +      i=OffsetNumberNext(i)
  1.2932 +    ) {
  1.2933 +      /* pointer to current key */
  1.2934 +      key = (pgl_keyptr)DatumGetPointer(entryvec->vector[i].key);
  1.2935 +      /* update unionR */
  1.2936 +      /* check if key is first key that goes right */
  1.2937 +      if (!v->spl_nright) {
  1.2938 +        /* first key that goes right is just copied to unionR */
  1.2939 +        memcpy(unionR, key, keysize);
  1.2940 +      } else {
  1.2941 +        /* unite current value and next key */
  1.2942 +        pgl_unite_keys(unionR, key);
  1.2943 +      }
  1.2944 +      /* append offset number to list of keys that go right */
  1.2945 +      v->spl_right[v->spl_nright++] = i;
  1.2946 +    }
  1.2947 +  }
  1.2948 +  /* otherwise, a non-trivial split is possible */
  1.2949 +  else {
  1.2950 +    /* cut covered area in half */
  1.2951 +    /* (union_all then refers to area of keys that go left) */
  1.2952 +    /* check if union of all keys covers empty and non-empty objects */
  1.2953 +    if (PGL_KEY_IS_UNIVERSAL((pgl_keyptr)&union_all)) {
  1.2954 +      /* if yes, split into empty and non-empty objects */
  1.2955 +      pgl_key_set_empty((pgl_keyptr)&union_all);
  1.2956 +    } else {
  1.2957 +      /* otherwise split by next bit */
  1.2958 +      ((pgl_keyptr)&union_all)[PGL_KEY_NODEDEPTH_OFFSET]++;
  1.2959 +      /* NOTE: type bit conserved */
  1.2960 +    }
  1.2961 +    /* determine for each key if it goes left or right */
  1.2962 +    for (i=FirstOffsetNumber; i<entryvec->n; i=OffsetNumberNext(i)) {
  1.2963 +      /* pointer to current key */
  1.2964 +      key = (pgl_keyptr)DatumGetPointer(entryvec->vector[i].key);
  1.2965 +      /* keys within one half of the area go left */
  1.2966 +      if (pgl_keys_overlap((pgl_keyptr)&union_all, key)) {
  1.2967 +        /* update unionL */
  1.2968 +        /* check if key is first key that goes left */
  1.2969 +        if (!v->spl_nleft) {
  1.2970 +          /* first key that goes left is just copied to unionL */
  1.2971 +          memcpy(unionL, key, keysize);
  1.2972 +        } else {
  1.2973 +          /* unite current value of unionL and processed key */
  1.2974 +          pgl_unite_keys(unionL, key);
  1.2975 +        }
  1.2976 +        /* append offset number to list of keys that go left */
  1.2977 +        v->spl_left[v->spl_nleft++] = i;
  1.2978 +      }
  1.2979 +      /* the other keys go right */
  1.2980 +      else {
  1.2981 +        /* update unionR */
  1.2982 +        /* check if key is first key that goes right */
  1.2983 +        if (!v->spl_nright) {
  1.2984 +          /* first key that goes right is just copied to unionR */
  1.2985 +          memcpy(unionR, key, keysize);
  1.2986 +        } else {
  1.2987 +          /* unite current value of unionR and processed key */
  1.2988 +          pgl_unite_keys(unionR, key);
  1.2989 +        }
  1.2990 +        /* append offset number to list of keys that go right */
  1.2991 +        v->spl_right[v->spl_nright++] = i;
  1.2992 +      }
  1.2993 +    }
  1.2994 +  }
  1.2995 +  /* store unions in return value */
  1.2996 +  v->spl_ldatum = PointerGetDatum(unionL);
  1.2997 +  v->spl_rdatum = PointerGetDatum(unionR);
  1.2998 +  /* return all results */
  1.2999 +  PG_RETURN_POINTER(v);
  1.3000 +}
  1.3001 +
  1.3002 +/* GiST "same"/"equal" support function */
  1.3003 +PG_FUNCTION_INFO_V1(pgl_gist_same);
  1.3004 +Datum pgl_gist_same(PG_FUNCTION_ARGS) {
  1.3005 +  pgl_keyptr key1 = (pgl_keyptr)PG_GETARG_POINTER(0);
  1.3006 +  pgl_keyptr key2 = (pgl_keyptr)PG_GETARG_POINTER(1);
  1.3007 +  bool *boolptr = (bool *)PG_GETARG_POINTER(2);
  1.3008 +  /* two keys are equal if they are binary equal */
  1.3009 +  /* (return result by setting referenced boolean and returning pointer) */
  1.3010 +  *boolptr = !memcmp(
  1.3011 +    key1,
  1.3012 +    key2,
  1.3013 +    PGL_KEY_IS_AREAKEY(key1) ? sizeof(pgl_areakey) : sizeof(pgl_pointkey)
  1.3014 +  );
  1.3015 +  PG_RETURN_POINTER(boolptr);
  1.3016 +}
  1.3017 +
  1.3018 +/* GiST "distance" support function */
  1.3019 +PG_FUNCTION_INFO_V1(pgl_gist_distance);
  1.3020 +Datum pgl_gist_distance(PG_FUNCTION_ARGS) {
  1.3021 +  GISTENTRY *entry = (GISTENTRY *)PG_GETARG_POINTER(0);
  1.3022 +  pgl_keyptr key = (pgl_keyptr)DatumGetPointer(entry->key);
  1.3023 +  StrategyNumber strategy = (StrategyNumber)PG_GETARG_UINT16(2);
  1.3024 +  bool *recheck = (bool *)PG_GETARG_POINTER(4);
  1.3025 +  double distance;  /* return value */
  1.3026 +  /* demand recheck because distance is just an estimation */
  1.3027 +  /* (real distance may be bigger) */
  1.3028 +  *recheck = true;
  1.3029 +  /* strategy number aliases for different operators using the same strategy */
  1.3030 +  strategy %= 100;
  1.3031 +  /* strategy number 31: distance to point */
  1.3032 +  if (strategy == 31) {
  1.3033 +    /* query datum is a point */
  1.3034 +    pgl_point *query = (pgl_point *)PG_GETARG_POINTER(1);
  1.3035 +    /* use pgl_estimate_pointkey_distance() function to compute result */
  1.3036 +    distance = pgl_estimate_key_distance(key, query);
  1.3037 +    /* avoid infinity (reserved!) */
  1.3038 +    if (!isfinite(distance)) distance = PGL_ULTRA_DISTANCE;
  1.3039 +    /* return result */
  1.3040 +    PG_RETURN_FLOAT8(distance);
  1.3041 +  }
  1.3042 +  /* strategy number 33: distance to circle */
  1.3043 +  if (strategy == 33) {
  1.3044 +    /* query datum is a circle */
  1.3045 +    pgl_circle *query = (pgl_circle *)PG_GETARG_POINTER(1);
  1.3046 +    /* estimate distance to circle center and substract circle radius */
  1.3047 +    distance = (
  1.3048 +      pgl_estimate_key_distance(key, &(query->center)) - query->radius
  1.3049 +    );
  1.3050 +    /* convert non-positive values to zero and avoid infinity (reserved!) */
  1.3051 +    if (distance <= 0) distance = 0;
  1.3052 +    else if (!isfinite(distance)) distance = PGL_ULTRA_DISTANCE;
  1.3053 +    /* return result */
  1.3054 +    PG_RETURN_FLOAT8(distance);
  1.3055 +  }
  1.3056 +  /* strategy number 34: distance to cluster */
  1.3057 +  if (strategy == 34) {
  1.3058 +    /* query datum is a cluster */
  1.3059 +    pgl_cluster *query = (pgl_cluster *)PG_DETOAST_DATUM(PG_GETARG_DATUM(1));
  1.3060 +    /* estimate distance to bounding center and substract bounding radius */
  1.3061 +    distance = (
  1.3062 +      pgl_estimate_key_distance(key, &(query->bounding.center)) -
  1.3063 +      query->bounding.radius
  1.3064 +    );
  1.3065 +    /* convert non-positive values to zero and avoid infinity (reserved!) */
  1.3066 +    if (distance <= 0) distance = 0;
  1.3067 +    else if (!isfinite(distance)) distance = PGL_ULTRA_DISTANCE;
  1.3068 +    /* free detoasted cluster (if copy) */
  1.3069 +    PG_FREE_IF_COPY(query, 1);
  1.3070 +    /* return result */
  1.3071 +    PG_RETURN_FLOAT8(distance);
  1.3072 +  }
  1.3073 +  /* throw error for any unknown strategy number */
  1.3074 +  elog(ERROR, "unrecognized strategy number: %d", strategy);
  1.3075 +}
  1.3076 +

Impressum / About Us