software:canopy:user_manual
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| software:canopy:user_manual [2024-08-03 10:43 pm] – removed - external edit (Unknown date) 127.0.0.1 | software:canopy:user_manual [2024-08-03 10:43 pm] (current) – ↷ Links adapted because of a move operation hcho | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | ====== CanoPy user manual ====== | ||
| + | [[software: | ||
| + | |||
| + | This document explains how to use the [[software: | ||
| + | |||
| + | ===== Authors ===== | ||
| + | |||
| + | * [[lab_members: | ||
| + | * [[lab_members: | ||
| + | |||
| + | ===== Requirements ===== | ||
| + | |||
| + | * ArcGIS Desktop 10.x | ||
| + | * ArcPy | ||
| + | * Python 2 standard module: os | ||
| + | * Feature Analyst(tm) by the Textron Systems | ||
| + | * Automated Feature Extraction (AFE) models trained using Feature Analyst | ||
| + | |||
| + | We are currently planning on developing a fully open source solution without using ArcGIS and Feature Analyst. | ||
| + | |||
| + | ===== How to use the CanoPy module ===== | ||
| + | |||
| + | - Clone the [[https:// | ||
| + | git clone https:// | ||
| + | </ | ||
| + | - Copy '' | ||
| + | - Edit '' | ||
| + | - Start ArcMap | ||
| + | - Add Physiographic_Districts_GA.shp. Its layer name is '' | ||
| + | - Add naip_ga_2009_1m_m4b.shp. Its layer name is '' | ||
| + | - Open the Python window from within ArcMap | ||
| + | - Import the canopy module< | ||
| + | import sys | ||
| + | sys.path.append(' | ||
| + | import canopy | ||
| + | </ | ||
| + | - Assign physiographic region IDs to the naipqq layer< | ||
| + | canopy.assign_phyregs_to_naipqq() | ||
| + | </ | ||
| + | - Add physiographic region IDs to process to '' | ||
| + | phyreg_ids = [8, 7] | ||
| + | </ | ||
| + | - Reproject original NAIP QQ tiles to the target projection< | ||
| + | canopy.reproject_naip_tiles(phyreg_ids) | ||
| + | </ | ||
| + | - Run trained AFE models to classify canopy and non-canopy cells | ||
| + | - Convert AFE output files to the final seamless canopy GeoTIFF file per physiographic region< | ||
| + | canopy.convert_afe_to_canopy_tiff(phyreg_ids) | ||
| + | </ | ||
| + | |||
| + | {{tag> | ||
