PostGIS  3.2.2dev-r@@SVN_REVISION@@

◆ rt_raster_get_envelope_geom()

rt_errorstate rt_raster_get_envelope_geom ( rt_raster  raster,
LWGEOM **  env 
)

Get raster's envelope as a geometry.

Parameters
raster: the raster to get info from
**env: pointer to envelope geom
Returns
ES_NONE if success, ES_ERROR if error
Parameters
raster: the raster to get info from
**env: pointer to envelope
Returns
ES_NONE if success, ES_ERROR if error

Definition at line 708 of file rt_geometry.c.

708  {
709  double gt[6] = {0.0};
710  int32_t srid = SRID_UNKNOWN;
711 
712  POINTARRAY *pts = NULL;
713  POINT4D p4d;
714 
715  assert(env != NULL);
716  *env = NULL;
717 
718  /* raster is NULL, envelope is NULL */
719  if (raster == NULL)
720  return ES_NONE;
721 
722  /* raster metadata */
723  srid = rt_raster_get_srid(raster);
725 
727  3,
728  "rt_raster_get_envelope: raster is %dx%d",
729  raster->width,
730  raster->height
731  );
732 
733  /* return point or line since at least one of the two dimensions is 0 */
734  if ((!raster->width) || (!raster->height)) {
735  p4d.x = gt[0];
736  p4d.y = gt[3];
737 
738  /* return point */
739  if (!raster->width && !raster->height) {
740  LWPOINT *point = lwpoint_make2d(srid, p4d.x, p4d.y);
741  *env = lwpoint_as_lwgeom(point);
742  }
743  /* return linestring */
744  else {
745  LWLINE *line = NULL;
746  pts = ptarray_construct_empty(0, 0, 2);
747 
748  /* first point of line */
749  ptarray_append_point(pts, &p4d, LW_TRUE);
750 
751  /* second point of line */
753  raster,
755  &p4d.x, &p4d.y,
756  gt
757  ) != ES_NONE) {
758  rterror("rt_raster_get_envelope: Could not get second point for linestring");
759  return ES_ERROR;
760  }
761  ptarray_append_point(pts, &p4d, LW_TRUE);
762  line = lwline_construct(srid, NULL, pts);
763 
764  *env = lwline_as_lwgeom(line);
765  }
766 
767  return ES_NONE;
768  }
769  else {
770  rt_envelope rtenv;
771  int err = ES_NONE;
772  POINTARRAY **rings = NULL;
773  LWPOLY* poly = NULL;
774 
775  /* only one ring */
776  rings = (POINTARRAY **) rtalloc(sizeof (POINTARRAY*));
777  if (!rings) {
778  rterror("rt_raster_get_envelope_geom: Could not allocate memory for polygon ring");
779  return ES_ERROR;
780  }
781  rings[0] = ptarray_construct(0, 0, 5);
782  if (!rings[0]) {
783  rterror("rt_raster_get_envelope_geom: Could not construct point array");
784  return ES_ERROR;
785  }
786  pts = rings[0];
787 
788  err = rt_raster_get_envelope(raster, &rtenv);
789  if (err != ES_NONE) {
790  rterror("rt_raster_get_envelope_geom: Could not get raster envelope");
791  return err;
792  }
793 
794  /* build ring */
795 
796  /* minx, maxy */
797  p4d.x = rtenv.MinX;
798  p4d.y = rtenv.MaxY;
799  ptarray_set_point4d(pts, 0, &p4d);
800  ptarray_set_point4d(pts, 4, &p4d);
801 
802  /* maxx, maxy */
803  p4d.x = rtenv.MaxX;
804  p4d.y = rtenv.MaxY;
805  ptarray_set_point4d(pts, 1, &p4d);
806 
807  /* maxx, miny */
808  p4d.x = rtenv.MaxX;
809  p4d.y = rtenv.MinY;
810  ptarray_set_point4d(pts, 2, &p4d);
811 
812  /* minx, miny */
813  p4d.x = rtenv.MinX;
814  p4d.y = rtenv.MinY;
815  ptarray_set_point4d(pts, 3, &p4d);
816 
817  poly = lwpoly_construct(srid, 0, 1, rings);
818  *env = lwpoly_as_lwgeom(poly);
819  }
820 
821  return ES_NONE;
822 }
LWGEOM * lwline_as_lwgeom(const LWLINE *obj)
Definition: lwgeom.c:322
LWPOINT * lwpoint_make2d(int32_t srid, double x, double y)
Definition: lwpoint.c:163
LWGEOM * lwpoly_as_lwgeom(const LWPOLY *obj)
Definition: lwgeom.c:312
POINTARRAY * ptarray_construct(char hasz, char hasm, uint32_t npoints)
Construct an empty pointarray, allocating storage and setting the npoints, but not filling in any inf...
Definition: ptarray.c:51
LWLINE * lwline_construct(int32_t srid, GBOX *bbox, POINTARRAY *points)
Definition: lwline.c:42
LWGEOM * lwpoint_as_lwgeom(const LWPOINT *obj)
Definition: lwgeom.c:327
POINTARRAY * ptarray_construct_empty(char hasz, char hasm, uint32_t maxpoints)
Create a new POINTARRAY with no points.
Definition: ptarray.c:59
int ptarray_append_point(POINTARRAY *pa, const POINT4D *pt, int allow_duplicates)
Append a point to the end of an existing POINTARRAY If allow_duplicate is LW_FALSE,...
Definition: ptarray.c:147
#define LW_TRUE
Return types for functions with status returns.
Definition: liblwgeom.h:107
#define SRID_UNKNOWN
Unknown SRID value.
Definition: liblwgeom.h:229
LWPOLY * lwpoly_construct(int32_t srid, GBOX *bbox, uint32_t nrings, POINTARRAY **points)
Definition: lwpoly.c:43
void ptarray_set_point4d(POINTARRAY *pa, uint32_t n, const POINT4D *p4d)
Definition: lwgeom_api.c:370
void rterror(const char *fmt,...)
Wrappers used for reporting errors and info.
Definition: rt_context.c:219
void * rtalloc(size_t size)
Wrappers used for managing memory.
Definition: rt_context.c:191
rt_errorstate rt_raster_cell_to_geopoint(rt_raster raster, double xr, double yr, double *xw, double *yw, double *gt)
Convert an xr, yr raster point to an xw, yw point on map.
Definition: rt_raster.c:759
int32_t rt_raster_get_srid(rt_raster raster)
Get raster's SRID.
Definition: rt_raster.c:360
#define RASTER_DEBUGF(level, msg,...)
Definition: librtcore.h:306
@ ES_NONE
Definition: librtcore.h:182
@ ES_ERROR
Definition: librtcore.h:183
uint16_t rt_raster_get_height(rt_raster raster)
Definition: rt_raster.c:133
uint16_t rt_raster_get_width(rt_raster raster)
Definition: rt_raster.c:125
rt_errorstate rt_raster_get_envelope(rt_raster raster, rt_envelope *env)
Get raster's envelope.
Definition: rt_raster.c:904
void rt_raster_get_geotransform_matrix(rt_raster raster, double *gt)
Get 6-element array of raster geotransform matrix.
Definition: rt_raster.c:710
raster
Be careful!! Zeros function's input parameter can be a (height x width) array, not (width x height): ...
Definition: rtrowdump.py:121
gt
Definition: window.py:78
double x
Definition: liblwgeom.h:428
double y
Definition: liblwgeom.h:428
double MinX
Definition: librtcore.h:167
double MaxX
Definition: librtcore.h:168
double MinY
Definition: librtcore.h:169
double MaxY
Definition: librtcore.h:170

References ES_ERROR, ES_NONE, window::gt, LW_TRUE, lwline_as_lwgeom(), lwline_construct(), lwpoint_as_lwgeom(), lwpoint_make2d(), lwpoly_as_lwgeom(), lwpoly_construct(), rt_envelope::MaxX, rt_envelope::MaxY, rt_envelope::MinX, rt_envelope::MinY, ptarray_append_point(), ptarray_construct(), ptarray_construct_empty(), ptarray_set_point4d(), rtrowdump::raster, RASTER_DEBUGF, rt_raster_cell_to_geopoint(), rt_raster_get_envelope(), rt_raster_get_geotransform_matrix(), rt_raster_get_height(), rt_raster_get_srid(), rt_raster_get_width(), rtalloc(), rterror(), SRID_UNKNOWN, POINT4D::x, and POINT4D::y.

Referenced by RASTER_envelope(), and test_raster_envelope_geom().

Here is the call graph for this function:
Here is the caller graph for this function: