HOW TO FIND NUMBER OF HOUSES WITHIN ROAD BUFFER ZONE | ARCGIS | GEOMATICS ENGINEERING

แชร์
ฝัง
  • เผยแพร่เมื่อ 18 ธ.ค. 2024

ความคิดเห็น • 6

  • @sujansapkota2968
    @sujansapkota2968 4 ปีที่แล้ว +1

    nice , keep going geomatics :)

  • @souravkrsaha4367
    @souravkrsaha4367 5 หลายเดือนก่อน

    Which layer need to add for household??

  • @StefanoVerugi
    @StefanoVerugi ปีที่แล้ว

    If interested, in QGIS (but it might work in ArcGIS too) you can use Virtual Layers to do the same, this is the query:
    SELECT count(b.geometry) AS qty
    FROM settlement AS b, ringroad AS r
    WHERE st_intersects(b.geometry,st_buffer(r.geometry,30));
    No intermediate layers or processing tools required, but make sure both geometries use same projection
    If you need to create a geometry layer using the same condition change SELECT to:
    SELECT b.geometry as geometry
    Hope it helps, cheers

  • @DeepakKumar-uo5zu
    @DeepakKumar-uo5zu ปีที่แล้ว +2

    How to get the settlement or building names that comes under clip?

  • @utubemania9079
    @utubemania9079 2 ปีที่แล้ว

    Thanks alot