You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There was a request to change scales of a map after making segmentations. I see that the option to edit is there, however, there was a crash in RasterOps.py in the function update; essentially a field (that doesn't exist in some cases) was trying to be accessed. I just added that None be a default value, and skip if None. This works in the next loop, as if value is None it's already skipped:
There was a request to change scales of a map after making segmentations. I see that the option to edit is there, however, there was a crash in
RasterOps.py
in the functionupdate
; essentially a field (that doesn't exist in some cases) was trying to be accessed. I just added thatNone
be a default value, and skip ifNone
. This works in the next loop, as ifvalue
isNone
it's already skipped:Lemme know if this might mess with something downstream somewhere.
The text was updated successfully, but these errors were encountered: