FOSS4G 特定のディレクトリに配置されたシェープファイルをPostgresへ追加するコマンド 頻繁に利用するためメモshp2pgsql のオプションは適宜変更が必要 unzip "*.zip" files=($(find . -regex ".*.shp")) shp2pgsql -p -W cp932 -i -I -D ... 2024.08.30 FOSS4GPostgreSQL/PostGIS
PostgreSQL/PostGIS 国土交通省PLATEAUのデータをQGISで見る Pacific Spatial Solutions株式会社さんがPLATEAUのデータを汎用的な形式に変換されていた。 ありがたく使わせていただきます! 早速QGISで参照してみたところ 属性... 2024.05.09 PostgreSQL/PostGIS地図
PostgreSQL/PostGIS PostgreSQLのパスワード設定方法 ALTER USER username WITH PASSWORD 'new_password'; 2024.02.17 PostgreSQL/PostGIS
PostgreSQL/PostGIS PostGISのデータをGeoJSONに出力する # ogr2ogr -f "GeoJSON" output.geojson PG:"dbname=mydb user=postgres password=postgres host=localhost" "table_name" 2024.01.15 PostgreSQL/PostGIS
PostgreSQL/PostGIS PostGISに格納されているデータをGeoJSONへ変換する ogr2ogr -f GeoJSON output.geojson PG:"dbname=youdatabase user=postgresuser password=postgrespassword" -sql "select ... 2023.12.02 PostgreSQL/PostGIS
PostgreSQL/PostGIS 国土数値情報の行政区域データから都道府県ポリゴンを作る こちらを元に行政区域データをPostGISに投入する n03_007カラムが行政区域を表すコードになっており先頭2桁が都道府県を示している。次のSQLでマテリアライズドビューを作成する。 少しバッファを持たせてポリ... 2023.12.01 PostgreSQL/PostGIS
PostgreSQL/PostGIS 国土数値情報の行政区域データをPostGISに変換するコマンド すぐに忘れてしまうのでメモ shp2pgsql -c -W cp932 -i -I -D -s 4326 N03-23_230101.shp N03-23_230101 > N03-23_230101.sql 2023.12.01 PostgreSQL/PostGIS
PostgreSQL/PostGIS GeoJSONファイルをPostGISへインポートする ogr2ogrコマンドを使いインポートする。 例: ogr2ogr -f "PostgreSQL" PG:"host=localhost port=5432 dbname=my_databasename user=postgr... 2023.03.02 PostgreSQL/PostGIS
PostgreSQL/PostGIS GeoJSONファイルをシェープファルへ変換する ogr2ogrコマンドで可能 ogr2ogr -f "ESRI Shapefile" test.shp -lco encoding=UTF-8 ****.geojson 2023.03.01 PostgreSQL/PostGIS
PostgreSQL/PostGIS PostgreSQLのデータベースを日本語で構築する Docker上でPostgreSQLを構築するとOSの言語設定が日本語になっていないせいかPostgreSQLのデータベースも日本語になっていない。 色々と不都合が起こるので日本語でデータベースを構築する。initdb コマンドを実... 2023.01.19 PostgreSQL/PostGIS
PostgreSQL/PostGIS pgAdminで接続時に’ServerManager’ object has no attribute ‘user_info’エラーが発生 接続先PostgreSQLのバージョンは15pgAdminのバージョンは5.6 (4280.88)OSはMacOSX 12.4 「'ServerManager' object has no attribute 'user_i... 2022.11.15 PostgreSQL/PostGIS
PostgreSQL/PostGIS PostgreSQLで取得結果をJSONにする with hogehoge as ( select * from TABLE_NAME ) select array_to_json(array_agg(hogehoge)) from hogehoge ; 2022.10.11 PostgreSQL/PostGIS
PostgreSQL/PostGIS CentOS7へPostgreSQL14とPostGIS3.1をインストールする手順 # cat /etc/redhat-release CentOS Linux release 7.9.2009 (Core) sudo yum install -y sudo yum install -y postgresql14... 2022.09.07 PostgreSQL/PostGIS
PostgreSQL/PostGIS PostgerSQLの設定ファイル生成サイト PostgreSQLのpostgres.confファイルには使用メモリなど記載するが、サーバースペックを入力すると参考となる設定情報を出力してくれる。 2022.08.29 PostgreSQL/PostGIS
PHP PHP Fatal error: Uncaught Error: Call to undefined function pg_connect() PHPでPostgresqlへ接続のさい、以下のエラーが発生 PHP Fatal error: Uncaught Error: Call to undefined function pg_connect() pg_conn... 2022.08.08 PHPPostgreSQL/PostGIS
PostgreSQL/PostGIS PostGIS3.1でST_AsMVTを実行すると「ERROR: ST_AsMVT: Compiled without protobuf-c support 」が発生する 解消するには PostGISをソースからprotobuf-cを関連付けた上でコンパイルする必要がある。PostGIS3.0では上記エラーは発生しない。 2022.07.28 PostgreSQL/PostGIS
linux RHEL7 へ PostgreSQL12をインストールする # cat /etc/redhat-release Red Hat Enterprise Linux Server release 7.6 (Maipo) #Install the repository RPM: sudo yum ... 2021.05.28 linuxPostgreSQL/PostGIS
PostgreSQL/PostGIS CentOS7へPostgreSQL12をインストール 公式サイトの通りに実行 # cat /etc/redhat-release CentOS Linux release 7.9.2009 (Core) # Install the repository RPM: sudo yum i... 2021.05.24 PostgreSQL/PostGIS
PostgreSQL/PostGIS M1 Macにhomebrewを使ってPostgreSQLをインストールする M1 MacにPOstgerSQLをインストールしたいために四苦八苦の続き homebrewをインストールしてPostgreSQLをインストールしてみる。最近になってhomebrewがApple Siliconに対応したらし... 2021.03.25 PostgreSQL/PostGISニュース