MCPcopy
hub / github.com/google/earthengine-api / precision

Method precision

python/ee/pixeltype.py:122–129  ·  view source on GitHub ↗

Returns the precision of the PixelType. Returns: An ee.String. One of 'int', 'float', or 'double'.

(self)

Source from the content-addressed store, hash-verified

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:

Callers 1

test_precisionMethod · 0.80

Calls 2

nameMethod · 0.95
call_Method · 0.80

Tested by 1

test_precisionMethod · 0.64