Return the minimum pixel value for this band.
(self)
| 115 | |
| 116 | @property |
| 117 | def min(self): |
| 118 | """ |
| 119 | Return the minimum pixel value for this band. |
| 120 | """ |
| 121 | return self.statistics()[0] |
| 122 | |
| 123 | @property |
| 124 | def max(self): |
no test coverage detected