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

Поделиться
HTML-код
  • Опубликовано: 29 янв 2025

Комментарии • 6

  • @sujansapkota2968
    @sujansapkota2968 4 года назад +1

    nice , keep going geomatics :)

  • @souravkrsaha4367
    @souravkrsaha4367 7 месяцев назад

    Which layer need to add for household??

  • @DeepakKumar-uo5zu
    @DeepakKumar-uo5zu 2 года назад +2

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

  • @StefanoVerugi
    @StefanoVerugi 2 года назад

    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

  • @utubemania9079
    @utubemania9079 2 года назад

    Thanks alot