I am using ArcGIS. I have written a Python script that creates various surfaces including NDVI. After the script creates those surfaces, I would like the script to stop running while the user manually:
- examines the NDVI and other outputs from the first part of the script
- creates a feature class
- and edits the feature class to add some point features at appropriate locations.
Once the user is done creating and editing the point feature class, I want the script to keep going.
Is this possible?
1 Answer 1
Since step three is a manual editing of features based on looking at the NDVI image I would recommend creating two scripts.
- For the first script, doing what you've done already and also adds the NDVI image into ArcMap (part of step 1) and creates the feature class (step 2)
- Second script runs after you are done with your third step.
raw_input
function in your script. docs.python.org/2/library/functions.html#raw_input