Last active
December 4, 2020 23:18
-
-
Save mfunk/ba834e7439c14bf7748b to your computer and use it in GitHub Desktop.
ArcGIS Geoprocessing Script template
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# coding: utf-8 | |
''' | |
------------------------------------------------------------------------------ | |
Copyright 2016 Esri | |
Licensed under the Apache License, Version 2.0 (the "License"); | |
you may not use this file except in compliance with the License. | |
You may obtain a copy of the License at | |
http://www.apache.org/licenses/LICENSE-2.0 | |
Unless required by applicable law or agreed to in writing, software | |
distributed under the License is distributed on an "AS IS" BASIS, | |
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
See the License for the specific language governing permissions and | |
limitations under the License. | |
------------------------------------------------------------------------------ | |
================================================== | |
.py | |
-------------------------------------------------- | |
requirments: ArcGIS X.X, Python 2.7 or Python 3.4 | |
author: ArcGIS Solutions | |
contact: ArcGISTeam<Solution>@esri.com | |
company: Esri | |
================================================== | |
description: <Description> | |
================================================== | |
history: | |
<date> - <initals> - <modifications> | |
================================================== | |
''' | |
# IMPORTS ========================================== | |
import os | |
import sys | |
import traceback | |
import arcpy | |
from arcpy import env | |
# LOCALS =========================================== | |
deleteme = [] # intermediate datasets to be deleted | |
debug = True # extra messaging during development | |
# FUNCTIONS ======================================== | |
def main(): | |
try: | |
# get/set environment | |
env.overwriteOutput = True | |
# Set output | |
except arcpy.ExecuteError: | |
# Get the tool error messages | |
msgs = arcpy.GetMessages() | |
arcpy.AddError(msgs) | |
print(msgs) | |
except: | |
# Get the traceback object | |
tb = sys.exc_info()[2] | |
tbinfo = traceback.format_tb(tb)[0] | |
# Concatenate information together concerning the error into a message string | |
pymsg = "PYTHON ERRORS:\nTraceback info:\n" + tbinfo + "\nError Info:\n" + str(sys.exc_info()[1]) | |
msgs = "ArcPy ERRORS:\n" + arcpy.GetMessages() + "\n" | |
# Return python error messages for use in script tool or Python Window | |
arcpy.AddError(pymsg) | |
arcpy.AddError(msgs) | |
# Print Python error messages for use in Python / Python Window | |
print(pymsg + "\n") | |
print(msgs) | |
finally: | |
if debug == False and len(deleteme) > 0: | |
# cleanup intermediate datasets | |
if debug == True: arcpy.AddMessage("Removing intermediate datasets...") | |
for i in deleteme: | |
if debug == True: arcpy.AddMessage("Removing: " + str(i)) | |
arcpy.Delete_management(i) | |
if debug == True: arcpy.AddMessage("Done") | |
# MAIN ============================================= | |
if __name__ == "__main__": | |
main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment