SELECTpid,sde.st_issimple(g1)ASIs_it_simpleFROMissimple_test;pidis_it_simple1t2f SQLite CREATETABLEissimple_test(pidinteger);SELECTAddGeometryColumn(NULL,'issimple_test','g1',4326,'linestring','xy','null'); INSERTINTOissimple_testVALUES(1,st_linestring('linestring (10 10, 20 20, 30 ...
SELECTpid,sde.st_issimple(g1)ASIs_it_simpleFROMissimple_test;pidis_it_simple1t2f SQLite CREATETABLEissimple_test(pidinteger);SELECTAddGeometryColumn(NULL,'issimple_test','g1',4326,'linestring','xy','null'); INSERTINTOissimple_testVALUES(1,st_linestring('linestring (10 10, 20 20, 30 ...
INSERT INTO sample_geoms VALUES (6, ST_Geometry('linestring(20 20, 30 30, 30 20, 20 30 )' ,0)) INSERT INTO sample_geoms VALUES (7, ST_Geometry('polygon((40 40, 50 40, 50 50, 40 40 ))' ,0)) SELECT id, ST_IsSimple(geometry) Is_Simple FROM sample_geoms 結果: ID IS_SIMP...
st_issimple ST_ISSIMPLE ( geometry ) ST_ISSIMPLE函数根据输入的geometry,返回该geometry是否简单,如该geometry符合简单定义,则返回TRUE,否则返回FALSE。 ST_GEOMETRY类型数据的简单定义遵循OGC SFS规范,按照如下规则判断该数据是否简单: POINT:均为简单。 MULTIPOINT:所有点唯一时,该数据为简单;否则不为简单。 LIN...
ST_ISSIMPLE 函數會以幾何形狀物件作為輸入參數,並在指定的幾何形狀是簡式時傳回整數值 1。 否則,會傳回整數值 0 (零)。 點數總是很簡單。 如果geometry是空值,則結果是空值。 空幾何形狀是簡式幾何形狀。 範例 傳回幾何形狀是否簡單的指示。 CREATE TABLE sample_geometries1 (id INTEGER, geometry QSYS2.ST...
ST_IsSimple,ApsaraDB RDS:當輸入參數是一個沒有自相交點的簡單Geometry對象時,返回true。 boolean ST_IsSimple(geometry geomA);參數參數名稱描述geomA目標Geometry對象。描述該函數支援3D對象,並且不會刪除Z座標。
ST_IsSimple(geom) Arguments geom Valeur de type de donnéesGEOMETRYou expression qui est évaluée sur un typeGEOMETRY. Type de retour BOOLEAN Sigeomest null, null est renvoyé. Exemples Le code SQL suivant vérifie si la linestring spécifiée est simple. Dans cet exemple, elle n’est pas...
st_issimple --- false Questa pagina ti è stata utile? Sì No Commenti Argomento successivo:ST_ IsValid Argomento precedente:ST_ IsRing Hai bisogno di aiuto? Prova AWS re:Post Entra in contatto con un esperto AWS IQ PrivacyCondizioni...
boolean ST_IsSimple(geometry geomA); 参数 参数名称描述 geomA 目标Geometry对象。 描述 该函数支持3D对象,并且不会删除Z坐标。 示例 返回true的情况: SELECT ST_IsSimple('LINESTRING(0 0,0 2,2 0,0 0)'::geometry); st_issimple --- t (1 row) 返回false的情况: SELECT ST_IsSimple('LINEST...
如果geometry執行個體是簡單的執行個體 (如開放地理空間協會 (Open Geospatial Consortium,OGC) 所定義),就會傳回 1。 如果geometry執行個體不是簡單的執行個體,就會傳回 0。 語法 .STIsSimple ( ) 傳回型別 SQL Server 傳回類型:bit CLR 傳回類型:SqlBoolean ...