GIS入門

提供: OSGeo.JP Wiki
移動: 案内検索

GIS入門

地理情報システム (GIS)[1]<ref>This chapter is by Tyler Mitchell (http://www.oreillynet.com/pub/wlg/7053 </ref>とは空間データを作成、 表示、検索、解析するためのソフトウェアのことです。空間データはある要素の空間位置 に関する情報を持っています。これは緯度、経度のような空間座標を使用することを 意味します。空間データは同じ意味で別の言い方がいくつかあります。地理データ、 GISデータ、地図データ、位置データ、座標データ、地理空間データなどです。

空間データを利用するアプリケーションには様々な機能があります。地図作成機能が 空間データ利用に最もわかりやすい仕事でしょう。地図プログラムは空間データに アクセスしてそれを描画して可視化します。通常はコンピュータの画面や紙を利用して 地図を表示します。 アプリケーションでは静的な地図(単純なイメージ)かダイナミックに表示を変えられる 地図を表示します。ダイナミックな地図はデスクトッププログラムかWebページを使って 地図のみかけを変えることができます。

多くの人たちは空間情報アプリケーションの機能は地図を作成するだけだと誤解 しています。しかし空間データ解析は空間情報アプリケーションの別の重要な 機能です。いくつかの典型的な解析処理はコンピュータの計算処理を含んでいます。

  1. 位置間の距離計算
  2. ある領域内の面積集計 (たとえば平方メートル)
  3. どの地物が他の地物と重なりあっているかの判定
  4. 地物間の重なり部分の集計
  5. ある位置から指定した距離内にある地物の数
  6. というように...

これらのことは単純なことのように見えるかもしれません。しかしこれらの機能は いろいろな方法で多くの分野に適用できます。分析の結果を地図上に表示することは 経営の意思決定をサポートするレポートとして頻繁に使われます。

最近の位置情報サービスでは多くの機能を紹介しています。それらの機能の 多くは地図と解析処理の組み合わせで構成されています。たとえば携帯電話であなたの 位置を記録できます。あなたが適切なソフトウェアを持っていれば歩いていける距離に あるレストランを携帯電話で探せます。これは空間情報テクノロジーのを使った新しい アプリケーションです。この機能のためには空間データを解析して結果を一覧にする ことが必要です。

どうして新しいのか?

それはないですが。モバイル空間情報サービスを実現するための新しいハードウェア デバイスがたくさんあります。多くのオープンソース空間情報アプリケーションも あります。しかし空間情報のためのハードウェアもソフトウェアも新しいものでは ありません。 Global positioning system (GPS) receivers are becoming commonplace, but have been used in various industries for more than a decade. Likewise, desktop mapping and analysis tools have also been a major commercial market, primarily focused on industries such as natural resource management.

What is new is how the latest hardware and software is being applied and who is applying it. Traditional users of mapping and analysis tools were highly trained GIS Analysts or digital mapping technicians trained to use CAD-like tools. Now, the processing capabilities of home PCs and open source software (OSS) packages have enabled an army of hobbyists, professionals, web developers, etc. to interact with geospatial data. The learning curve has come down. The costs have come down. The amount of geospatial technology saturation has increased.

How is geospatial data stored? In a nutshell, there are two types of geospatial data in widespread use today. This is in addition to traditional tabular data that is also widely used by geospatial applications.

Raster Data

One type of geospatial data is called raster data or simply "a raster". The most easily recognised form of raster data is digital satellite imagery or air photos. Elevation shading or digital elevation models are also typically represented as raster data. Any type of map feature can be represented as raster data, but there are limitations.

A raster is a regular grid made up of cells, or in the case of imagery, pixels. They have a fixed number of rows and columns. Each cell has a numeric value and has a certain geographic size (e.g. 30x30 meters in size).

Multiple overlapping rasters are used to represent images using more than one colour value (i.e. one raster for each set of red, green and blue values is combined to create a colour image). Satellite imagery also represents data in multiple "bands". Each band is essentially a separate, spatially overlapping raster, where each band holds values of certain wavelengths of light. As you can imagine, a large raster takes up more file space. A raster with smaller cells can provide more detail, but takes up more file space. The trick is finding the right balance between cell size for storage purposes and cell size for analytical or mapping purposes.

Vector Data

Vector data is also used in geospatial applications. If you stayed awake during trigonometry and coordinate geometry classes, you will already be familiar with some of the qualities of vector data. In its simplest sense, vectors are a way of describing a location by using a set of coordinates. Each coordinate refers to a geographic location using a system of x and y values.

This can be thought of in reference to a Cartesian plane - you know, the diagrams from school that showed an x and y-axis. You might have used them to chart declining retirement savings or increasing compound mortgage interest, but the concepts are essential to geospatial data analysis and mapping.

There are various ways of representing these geographic coordinates depending on your purpose. This is a whole area of study for another day - map projections.

Vector data takes on three forms, each progressively more complex and building on the former.

  1. Points - A single coordinate (x y) represents a discrete geographic location
  2. Lines - Multiple coordinates (x1 y1, x2 y2, x3 y4, ... xn yn) strung together in a certain order, like drawing a line from Point (x1 y1) to Point (x2 y2) and so on. These parts between each point are considered line segments. They have a length and the line can be said to have a direction based on the order of the points. Technically, a line is a single pair of coordinates connected together, whereas a line string is multiple lines connected together.
  3. Polygons - When lines are strung together by more than two points, with the last point being at the same location as the first, we call this a polygon. A triangle, circle, rectangle, etc. are all polygons. The key feature of polygons is that there is a fixed area within them.



<references />