I'm trying to model glacial outburst floods for my dissertation and have been looking into LaharZ. I'm not well versed in using python or even custom toolboxes so im having a lot of trouble with it. I believe I have installed the toolbox correctly however I try to create surface hydrology rasters and am met with the error message:
line 93
print arcpy.GetMessages(2)
^
SyntaxError: invalid syntax
I was hoping someone might be able to give some guidance on this issue.
thanks, Josh
if you are using ArcGIS Pro, it uses python 3.9.*, hence
print(arcpy.GetMessages(2))
`print` changed between python 2 and 3