POSTGIS建表,增加點線面

2021-10-03 04:47:30 字數 962 閱讀 7834

1、建線表,插入線

set client_encoding to utf8;

set standard_conforming_strings to on;

begin;

create table "test2" (gid serial,

"field2" varchar(254));

alter table "test2" add primary key (gid);

select addgeometrycolumn('','test2','geom','0','linestring',2);

insert into test2(field2, geom)

values('********', st_geomfromtext('linestring(12 23, 26 30)', 4326));

commit;

包括建表語句

2、點和線基本一致,只需要把linestring改為point即可

3、建面表,插入面這裡注意:在拼寫經緯度的時候是2層括弧包住的

set client_encoding to utf8;

set standard_conforming_strings to on;

begin;

create table "test1" (gid serial,

"field2" varchar(254));

alter table "test1" add primary key (gid);

select addgeometrycolumn('','test1','geom','0','polygon',2);

insert into test1(field2, geom)

values('********', st_geomfromtext('polygon((10 20, 20 40, 50 15, 10 20))', 4326));

commit;

使用ArcObjects新增點線面

在ae中資料編輯是乙個重難點。它包括的東西很多,如地物的新增,地物的修改,地物查詢,節點捕捉,地物的符號化等一系列的問題。熟練的使用地物編輯的功能,是開發乙個系統必須具備的條件。資料編輯問題解決得好壞直接決定著軟體是否操作方便。在這我只是寫一些相應的功能函式,至於軟體開發中的架構暫不考慮。1 新增地...

ArcGIS Engine中新增點 線 面元素

原文arcgis engine中新增點 線 面元素 畫點 imarkerelement pmarkerelement new markerelementclass ielement pelement pmarkerelement as ielement pelement.geometry pt ig...

AE基礎之新增點 線 面要素

事先定義pmap和pactiveview物件 imap pmap axmapcontrol1.map iactiveview pactview axmapcontrol1.activeview 點要素tian新增 1 在mapcontrol1的mouse事件中新增如下 axmapcontrol1.m...