PostGIS  3.3.9dev-r@@SVN_REVISION@@

◆ getPoint4d_p()

int getPoint4d_p ( const POINTARRAY pa,
uint32_t  n,
POINT4D point 
)

Definition at line 126 of file lwgeom_api.c.

127 {
128  uint8_t *ptr;
129  int zmflag;
130 
131  if ( ! pa )
132  {
133  lwerror("%s [%d] NULL POINTARRAY input", __FILE__, __LINE__);
134  return 0;
135  }
136 
137  if ( n>=pa->npoints )
138  {
139  lwerror("%s [%d] called with n=%d and npoints=%d", __FILE__, __LINE__, n, pa->npoints);
140  return 0;
141  }
142 
143  LWDEBUG(4, "getPoint4d_p called.");
144 
145  /* Get a pointer to nth point offset and zmflag */
146  ptr=getPoint_internal(pa, n);
147  zmflag=FLAGS_GET_ZM(pa->flags);
148 
149  LWDEBUGF(4, "ptr %p, zmflag %d", ptr, zmflag);
150 
151  switch (zmflag)
152  {
153  case 0: /* 2d */
154  memcpy(op, ptr, sizeof(POINT2D));
155  op->m=NO_M_VALUE;
156  op->z=NO_Z_VALUE;
157  break;
158 
159  case 3: /* ZM */
160  memcpy(op, ptr, sizeof(POINT4D));
161  break;
162 
163  case 2: /* Z */
164  memcpy(op, ptr, sizeof(POINT3DZ));
165  op->m=NO_M_VALUE;
166  break;
167 
168  case 1: /* M */
169  memcpy(op, ptr, sizeof(POINT3DM));
170  op->m=op->z; /* we use Z as temporary storage */
171  op->z=NO_Z_VALUE;
172  break;
173 
174  default:
175  lwerror("Unknown ZM flag ??");
176  return 0;
177  }
178  return 1;
179 
180 }
#define FLAGS_GET_ZM(flags)
Definition: liblwgeom.h:195
#define NO_Z_VALUE
#define NO_M_VALUE
#define LWDEBUG(level, msg)
Definition: lwgeom_log.h:83
#define LWDEBUGF(level, msg,...)
Definition: lwgeom_log.h:88
void lwerror(const char *fmt,...)
Write a notice out to the error handler.
Definition: lwutil.c:190
static uint8_t * getPoint_internal(const POINTARRAY *pa, uint32_t n)
Definition: lwinline.h:77
lwflags_t flags
Definition: liblwgeom.h:446
uint32_t npoints
Definition: liblwgeom.h:442

References POINTARRAY::flags, FLAGS_GET_ZM, getPoint_internal(), LWDEBUG, LWDEBUGF, lwerror(), POINT4D::m, NO_M_VALUE, NO_Z_VALUE, POINTARRAY::npoints, and POINT4D::z.

Referenced by _lwt_AddLine(), _lwt_AddLineEdge(), _lwt_AddPoint(), analyze_pa(), circstring_from_pa(), encode_coords(), encode_mpoint(), getPoint4d(), linestring_from_pa(), lwarc_linearize(), lwcircstring_calculate_gbox_cartesian(), lwcircstring_linearize(), lwcompound_add_lwgeom(), lwcompound_linearize(), lwgeom_boundary(), LWGEOM_dumppoints(), LWGEOM_dumpsegments(), LWGEOM_setpoint_linestring(), LWGEOM_snaptogrid_pointoff(), lwgeom_wrapx(), lwline_add_lwpoint(), lwline_clip_to_ordinate_range(), lwline_from_lwmpoint(), lwline_interpolate_point_3d(), lwline_interpolate_points(), lwline_split_by_point_to(), lwmpoint_construct(), lwmpoint_extract_points_4d(), lwpoint_get_m(), lwpoint_get_x(), lwpoint_get_y(), lwpoint_get_z(), lwpoint_getPoint4d_p(), lwpointiterator_peek(), lwpoly_from_twkb_state(), lwpoly_pt_outside_hack(), lwpsurface_is_closed(), lwtin_is_closed(), lwtriangle_clip_to_ordinate_range(), parse_kml_polygon(), printPA(), pta_unstroke(), ptarray_append_point(), ptarray_clamp_to_ordinate_range(), ptarray_collect_mvals(), ptarray_flip_coordinates(), ptarray_force_dims(), ptarray_force_geodetic(), ptarray_length_spheroid(), ptarray_locate_along(), ptarray_locate_along_linear(), ptarray_locate_point(), ptarray_nudge_geodetic(), ptarray_scale(), ptarray_segmentize2d(), ptarray_segmentize_sphere(), ptarray_startpoint(), ptarray_substring(), ptarray_swap_ordinates(), ptarray_to_kml2_sb(), ptarray_to_x3d3_sb(), ptarray_transform(), RTreeCreateLeafNode(), test_raster_convex_hull(), and test_raster_envelope_geom().

Here is the call graph for this function: