Returns the precision of the PixelType. Returns: An ee.String. One of 'int', 'float', or 'double'.
(self)
| 120 | return apifunction.ApiFunction.call_(self.name() + '.minValue', self) |
| 121 | |
| 122 | def precision(self) -> ee_string.String: |
| 123 | """Returns the precision of the PixelType. |
| 124 | |
| 125 | Returns: |
| 126 | An ee.String. One of 'int', 'float', or 'double'. |
| 127 | """ |
| 128 | |
| 129 | return apifunction.ApiFunction.call_(self.name() + '.precision', self) |
| 130 | |
| 131 | @staticmethod |
| 132 | def double() -> PixelType: |