Skip to content

Instantly share code, notes, and snippets.

@sahara-ooga
Last active January 20, 2020 04:07
Show Gist options
  • Save sahara-ooga/cecb7d4e802dcc54d64827c1f3d72c0b to your computer and use it in GitHub Desktop.
Save sahara-ooga/cecb7d4e802dcc54d64827c1f3d72c0b to your computer and use it in GitHub Desktop.
QGIS

QGISのファイル

name extension description
qgis .gqs どこのフォルダ(ディレクトリ)からデータファイルを読み込んで、座標参照系は何で、どうやって分類して何色に分けるか、ラベルは付けるならどのデータをラベルとして表示させるか、印刷の時の縮尺と範囲、スケールバーは付けるか付けないか、…といった「どう見せるか」ということを指定した「QGisファイル」という固有の拡張子を持つXMLファイルです。XMLファイルなので、テキストエディタで開けられます。
たとえばshapeファイルの地物を追加したり位置を編集したり、DBFファイルの内容を書き換えたり追加したりした場合は、shapeファイルを保存してからQGisファイルを保存する必要があります。
.shp The geometry of vector features are stored in this file
.dbf The attributes of vector features are stored in this file
.shx This file is an index that helps the GIS Application to find features more quickly.

操作

08.いくつかのshapeファイルを一つにまとめる - QGIS入門

09.いくつかの地物をまとめて一つの地物にする - QGIS入門

shapeファイルと他のデータの結合

用語

word definition
Vector data Vector data is stored as a series of X, Y coordinate pairs inside the computer’s memory. Vector data is used to represent points, lines and areas.
Raster Data Raster data are stored as a grid of values. Rasters are made up of a matrix of pixels (also called cells), each containing a value that represents the conditions for the area covered by that cell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment