Return the standard deviation of all pixel values of this band.
(self)
| 136 | |
| 137 | @property |
| 138 | def std(self): |
| 139 | """ |
| 140 | Return the standard deviation of all pixel values of this band. |
| 141 | """ |
| 142 | return self.statistics()[3] |
| 143 | |
| 144 | @property |
| 145 | def nodata_value(self): |
nothing calls this directly
no test coverage detected