Hi John,
What do you mean by "comparing" two raster data sets?. Because with IDL you could compare two arrays, looking for something specific. Like:
http://www.exelisvis.com/docs/ARRAY_E...
; Return True (1) if all elements of a are equal all elements of b:
IF ARRAY_EQUAL(a, b) THEN ...
Or, another example:
IDL> a=findgen(3,3)
IDL> b=findgen(3,3)*2
IDL> print, a(where(a eq b))
0.000000
IDL>
I don't know, it will depend of what you need to do I guess.
There are more Array Manipulation routines here:
http://www.exelisvis.com/docs/Array_M...
Cheers,
fernando