重要
翻訳は あなたが参加できる コミュニティの取り組みです。このページは現在 74.42% 翻訳されています。
8.2. レッスン: 分析を組み合わせる
ベクタ化されたラスタ解析の結果を使うと、適当な地形の上の建物のみを選択することができます。
このレッスンの目標: 適当な小地所を選び出すためにベクタ化された地形の結果を使う。
8.2.1. ★★☆ (中級レベル) 自分でやってみよう:
現在の地図 (
raster_analysis.qgs)を保存します。以前にベクタ解析中に作成した地図を開きます(ファイルを
analysis.qgsとして保存したはずです)。レイヤ パネルで次のレイヤを有効にします:
hillshade,solution(orbuildings_over_100)
これらのレイヤに加え、以前作業したときに既に地図に読み込まれているはずの
suitable_terrain.shpデータセットも追加します。もし、レイヤが足りない場合は、
exercise_data/residential_development/にあるはずですUse the Intersection tool () to create a new vector layer called
new_solution.shpwhich contains only those buildings which intersect thesuitable_terrainlayer.
あなたは解として特定の建物を示すレイヤを持っているはずです。例えば:
8.2.2. ★★☆ (中級レベル) やってみよう: 結果を検査する
Look at each of the buildings in your new_solution layer. Compare them
with the suitable_terrain layer by changing the symbology for the
new_solution layer so that it has outlines only. What do you notice
about some of the buildings? Are they all suitable just because they intersect with
the suitable_terrain layer? Why or why not? Which ones would you
deem to be unsuitable?
答え
You may notice that some of the buildings in your new_solution layer
have been "sliced" by the Intersection tool. This shows that only
part of the building - and therefore only part of the property - lies on
suitable terrain. We can therefore sensibly eliminate those buildings from
our dataset.
8.2.3. ★★☆ (中級レベル) やってみよう: 解析の改良
結果に含まれていた建物の中には本当には適していないものがありましたので解析を改良しましょう。
We want to ensure that our analysis returns only those buildings which fall
entirely within the suitable_terrain layer. How would you achieve this?
Use one or more Vector Analysis tools and remember that our buildings are all
over 100m squared in size.
答え
現時点では、このような解析ができるはずです:
四方100mに渡って連続する円形の区域を考えてみましょう。
半径100m以上の場合、その大きさから(全方向から)100mを引くと、真ん中に一部が残ることになります。
Therefore, you can run an interior buffer of 100 meters on your existing
suitable_terrain vector layer. In the output of the buffer
function, whatever remains of the original layer will represent areas where
there is suitable terrain for 100 meters beyond.
実際に試してみましょう:
:menuselection:`ベクタ --> 空間演算ツール --> バッファ(buffer)`でバッファダイアログを表示します。
このように設定します:
Use the
suitable_terrainlayer with10segments and a buffer distance of-100. (The distance is automatically in meters because your map is using a projected CRS.)出力結果を
exercise_data/residential_development/にsuitable_terrain_continuous100m.shpとして保存してください。If necessary, move the new layer above your original
suitable_terrainlayer.結果はこのようになります:
ここで、場所による選択 `ツール(:menuselection:`ベクタ --> 調査ツール --> 場所による選択)を使います。
次のように設定します:
Select features in
new_solutionthat intersect features insuitable_terrain_continuous100m.shp.これがその結果です:
The yellow buildings are selected. Although some of the buildings fall partly outside the new
suitable_terrain_continuous100mlayer, they lie well within the originalsuitable_terrainlayer and therefore meet all of our requirements.選択部分を
exercise_data/residential_development/の下にfinal_answer.shpという名前で保存してください。
8.2.4. 結論
これで当初の研究課題に答え、どの地所を開発するべきかに関する推薦の意見を(理由をもって、分析に支えられて)提示できます。
8.2.5. 次は?
次は2番目の研究課題の一部としてこれらの結果を提示します。