PostGIS
create table p08 as select aac, ST_Union(the_geom) from "08" group by aac order by aac; create table p09 as select aac, ST_Union(the_geom) from "09" group by aac order by aac; create table p10 as select aac, ST_Union(the_geom) from "10" gr…
create table p13secwi as select sec as "aac", ST_Union(st_union) from p13swi group by sec order by sec; create table code13secwi as select aac from p13secwi;
create table trans13 (sec int, aac character(5) primary key); copy trans13 from '/var/lib/postgresql/pgis/trans13_sort_city_wi.csv' with csv; create table p13swi as select * from p13 inner join trans13 using (aac);
ST_Intersects*1 — ジオメトリ/ジオグラフィが「空間的にインタセクトする」(空間に共有部分がある)場合には,TRUEを返します.そうでない(非接続)場合はFALSEを返します.ジオグラフィ -- 許容量は0.00001メートルです(どの閉じた点でもインタセクトを考慮…
ST_Union*1 — ジオメトリ結合の点集合を表現するジオメトリを返します. テーブル"13"からaacでグルーピングして,the_geomを結合する.それのうち,aac(市区町村コード)とST_Union(ジオメトリ)を選んで,aacで並べ替えて新しいテーブルp13を作る. crea…