Return the maximum pixel value for this band.
(self)
| 122 | |
| 123 | @property |
| 124 | def max(self): |
| 125 | """ |
| 126 | Return the maximum pixel value for this band. |
| 127 | """ |
| 128 | return self.statistics()[1] |
| 129 | |
| 130 | @property |
| 131 | def mean(self): |
no test coverage detected