I am trying to establish a threshold (2 values) on a raster image. Values are between 1000 and 4000. How can I write python syntax to do that. Here is an example of what I tried...
inraster_threshold = inraster >=1000 and <=4000
inraster_threshold = inraster >=1000<=4000
both did come out with syntax errors and I can't find the "and" way of including the second value for my threshold