Closed sayakgis closed 4 years ago
line 34 of solaris/solaris/utils/raster.py returns a Boolean, which seems to be incorrect, the current code is: elif len(axes == 4): it should be elif len(axes) == 4:
Great catch @sayakgis! If you want to make the change feel free to submit a PR; otherwise, we'll get to it before we release 0.2.1.
This is fixed in #319.
line 34 of solaris/solaris/utils/raster.py returns a Boolean, which seems to be incorrect, the current code is: elif len(axes == 4): it should be elif len(axes) == 4: