Guest User

Untitled

a guest
Nov 23rd, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. def Reclass(Soils):
  2. global out
  3. if (Age_Databa <= 200) and (Riparian_S > 1 or Riparian_S < 1):
  4. out 5
  5. elif (Age_Databa <= 200) and (Riparian_S == 1):
  6. out 2
  7.  
  8. def Reclass(Age_Databa,Riparian_S):
  9. if Age_Databa <= 200 and Riparian_S != 1:
  10. out = 5
  11. elif Age_Databa > 200 and Riparian_S == 1:
  12. out = 2
  13. return out
Add Comment
Please, Sign In to add comment