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

Method minValue

python/ee/pixeltype.py:117–120  ·  view source on GitHub ↗

Returns the minimum value of the PixelType.

(self)

Source from the content-addressed store, hash-verified

115 return apifunction.ApiFunction.call_(self.name() + '.maxValue', self)
116
117 def minValue(self) -> ee_number.Number:
118 """Returns the minimum value of the PixelType."""
119
120 return apifunction.ApiFunction.call_(self.name() + '.minValue', self)
121
122 def precision(self) -> ee_string.String:
123 """Returns the precision of the PixelType.

Callers 1

test_minValueMethod · 0.80

Calls 2

nameMethod · 0.95
call_Method · 0.80

Tested by 1

test_minValueMethod · 0.64