AsTopoJSON — 傳回拓樸幾何的 TopoJSON 表示形式。
text AsTopoJSON(
topogeometry tg, regclass edgeMapTable)
;
傳回拓樸幾何的 TopoJSON 表示形式。如果 edgeMapTable
不是 null,它將被用作邊緣識別符號到弧索引的查詢/儲存映射。這是為了允許在最終文件中使用緊湊的 "arcs" 陣列。
如果給定表,則預期該表具有類型為 "serial" 的 "arc_id" 欄位和類型為整數的 "edge_id" 欄位;程式碼將查詢表格的 "edge_id",因此建議在該欄位上新增索引。
![]() |
|
TopoJSON 輸出中的弧索引從 0 開始,但在 "edgeMapTable" 表格中則從 1 開始。 |
一個完整的 TopoJSON 文件除了此函數返回的程式碼片段外,還需要包含實際的弧以及一些標頭。請參閱 TopoJSON 規格。
可用性:2.1.0
增強功能:2.2.1 新增了對點狀輸入的支援
CREATE TEMP TABLE edgemap(arc_id serial, edge_id int unique); -- header SELECT '{ "type": "Topology", "transform": { "scale": [1,1], "translate": [0,0] }, "objects": {' -- objects UNION ALL SELECT '"' || feature_name || '": ' || AsTopoJSON(feature, 'edgemap') FROM features.big_parcels WHERE feature_name = 'P3P4'; -- arcs WITH edges AS ( SELECT m.arc_id, e.geom FROM edgemap m, city_data.edge e WHERE e.edge_id = m.edge_id ), points AS ( SELECT arc_id, (st_dumppoints(geom)).* FROM edges ), compare AS ( SELECT p2.arc_id, CASE WHEN p1.path IS NULL THEN p2.geom ELSE ST_Translate(p2.geom, -ST_X(p1.geom), -ST_Y(p1.geom)) END AS geom FROM points p2 LEFT OUTER JOIN points p1 ON ( p1.arc_id = p2.arc_id AND p2.path[1] = p1.path[1]+1 ) ORDER BY arc_id, p2.path ), arcsdump AS ( SELECT arc_id, (regexp_matches( ST_AsGeoJSON(geom), '\[.*\]'))[1] as t FROM compare ), arcs AS ( SELECT arc_id, '[' || array_to_string(array_agg(t), ',') || ']' as a FROM arcsdump GROUP BY arc_id ORDER BY arc_id ) SELECT '}, "arcs": [' UNION ALL SELECT array_to_string(array_agg(a), E',\n') from arcs -- footer UNION ALL SELECT ']}'::text as t; -- Result: { "type": "Topology", "transform": { "scale": [1,1], "translate": [0,0] }, "objects": { "P3P4": { "type": "MultiPolygon", "arcs": [[[-1]],[[6,5,-5,-4,-3,1]]]} }, "arcs": [ [[25,30],[6,0],[0,10],[-14,0],[0,-10],[8,0]], [[35,6],[0,8]], [[35,6],[12,0]], [[47,6],[0,8]], [[47,14],[0,8]], [[35,22],[12,0]], [[35,14],[0,8]] ]}