1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
|
/**********************************************************************
*
* PostGIS - Spatial Types for PostgreSQL
* http://postgis.net
*
* PostGIS is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* PostGIS is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with PostGIS. If not, see <http://www.gnu.org/licenses/>.
*
**********************************************************************
*
* Copyright (C) 2001-2006 Refractions Research Inc.
*
**********************************************************************/
/* basic LWCURVEPOLY manipulation */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "liblwgeom_internal.h"
#include "lwgeom_log.h"
LWCURVEPOLY *
lwcurvepoly_construct_empty(int32_t srid, char hasz, char hasm)
{
LWCURVEPOLY *ret;
ret = lwalloc(sizeof(LWCURVEPOLY));
ret->type = CURVEPOLYTYPE;
ret->flags = lwflags(hasz, hasm, 0);
ret->srid = srid;
ret->nrings = 0;
ret->maxrings = 1; /* Allocate room for sub-members, just in case. */
ret->rings = lwalloc(ret->maxrings * sizeof(LWGEOM*));
ret->bbox = NULL;
return ret;
}
LWCURVEPOLY *
lwcurvepoly_construct_from_lwpoly(LWPOLY *lwpoly)
{
LWCURVEPOLY *ret;
uint32_t i;
ret = lwalloc(sizeof(LWCURVEPOLY));
ret->type = CURVEPOLYTYPE;
ret->flags = lwpoly->flags;
ret->srid = lwpoly->srid;
ret->nrings = lwpoly->nrings;
ret->maxrings = lwpoly->nrings; /* Allocate room for sub-members, just in case. */
ret->rings = lwalloc(ret->maxrings * sizeof(LWGEOM*));
ret->bbox = lwpoly->bbox ? gbox_clone(lwpoly->bbox) : NULL;
for ( i = 0; i < ret->nrings; i++ )
{
ret->rings[i] = lwline_as_lwgeom(lwline_construct(ret->srid, NULL, ptarray_clone_deep(lwpoly->rings[i])));
}
return ret;
}
int lwcurvepoly_add_ring(LWCURVEPOLY *poly, LWGEOM *ring)
{
uint32_t i;
/* Can't do anything with NULLs */
if( ! poly || ! ring )
{
LWDEBUG(4,"NULL inputs!!! quitting");
return LW_FAILURE;
}
/* Check that we're not working with garbage */
if ( poly->rings == NULL && (poly->nrings || poly->maxrings) )
{
LWDEBUG(4,"mismatched nrings/maxrings");
lwerror("Curvepolygon is in inconsistent state. Null memory but non-zero collection counts.");
return LW_FAILURE;
}
/* Check that we're adding an allowed ring type */
if ( ! ( ring->type == LINETYPE || ring->type == CIRCSTRINGTYPE || ring->type == COMPOUNDTYPE ) )
{
LWDEBUGF(4,"got incorrect ring type: %s",lwtype_name(ring->type));
return LW_FAILURE;
}
/* In case this is a truly empty, make some initial space */
if ( poly->rings == NULL )
{
poly->maxrings = 2;
poly->nrings = 0;
poly->rings = lwalloc(poly->maxrings * sizeof(LWGEOM*));
}
/* Allocate more space if we need it */
if ( poly->nrings == poly->maxrings )
{
poly->maxrings *= 2;
poly->rings = lwrealloc(poly->rings, sizeof(LWGEOM*) * poly->maxrings);
}
/* Make sure we don't already have a reference to this geom */
for ( i = 0; i < poly->nrings; i++ )
{
if ( poly->rings[i] == ring )
{
LWDEBUGF(4, "Found duplicate geometry in collection %p == %p", poly->rings[i], ring);
return LW_SUCCESS;
}
}
/* Add the ring and increment the ring count */
poly->rings[poly->nrings] = (LWGEOM*)ring;
poly->nrings++;
return LW_SUCCESS;
}
/**
* This should be rewritten to make use of the curve itself.
*/
double
lwcurvepoly_area(const LWCURVEPOLY *curvepoly)
{
double area = 0.0;
LWPOLY *poly;
if( lwgeom_is_empty((LWGEOM*)curvepoly) )
return 0.0;
poly = lwcurvepoly_stroke(curvepoly, 32);
area = lwpoly_area(poly);
lwpoly_free(poly);
return area;
}
double
lwcurvepoly_perimeter(const LWCURVEPOLY *poly)
{
double result=0.0;
uint32_t i;
for (i=0; i<poly->nrings; i++)
result += lwgeom_length(poly->rings[i]);
return result;
}
double
lwcurvepoly_perimeter_2d(const LWCURVEPOLY *poly)
{
double result=0.0;
uint32_t i;
for (i=0; i<poly->nrings; i++)
result += lwgeom_length_2d(poly->rings[i]);
return result;
}
|