All Products
Search
Document Center

ApsaraDB RDS:ST_AsBox

Last Updated:Aug 08, 2023

This topic describes the ST_AsBox function, which obtains the box-represented range of a grid.

Syntax

box ST_AsBox(geomgrid grid);
box[] ST_AsBox(geomgrid[] grid);

Parameters

Parameter

Description

grid

The grid whose range you want to obtain.

Examples

select st_asbox(
   st_gridfromtext('G0013103220310313'));
   
                                   st_asbox                                   
------------------------------------------------------------------------------
 (116.4588888888889,39.30888888888889),(116.46666666666667,39.31666666666667)

select st_asbox(st_asgrid(
  'SRID=4490;LINESTRING(122.48077 51.72814,122.47416 51.73714)'::geometry,15));
                        st_asbox                                                                  
--------------------------------------------------------------------------------
---------------------------------------------------------------------
 {(122.46666666666667,51.71666666666667),(122.48333333333333,51.733333333333334)
;(122.46666666666667,51.733333333333334),(122.48333333333333,51.75)}