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

Method arrayCat

python/ee/image.py:808–826  ·  view source on GitHub ↗

Creates an array image by concatenating each array pixel. Creates an array image by concatenating each array pixel along the given axis in each band. Args: image2: Second array image to concatenate. axis: Axis to concatenate along. Returns: An ee.Image.

(
      self, image2: _arg_types.Image, axis: _arg_types.Integer
  )

Source from the content-addressed store, hash-verified

806 return apifunction.ApiFunction.call_(self.name() + '.arrayArgmax', self)
807
808 def arrayCat(
809 self, image2: _arg_types.Image, axis: _arg_types.Integer
810 ) -> Image:
811 """Creates an array image by concatenating each array pixel.
812
813 Creates an array image by concatenating each array pixel along the given
814 axis in each band.
815
816 Args:
817 image2: Second array image to concatenate.
818 axis: Axis to concatenate along.
819
820 Returns:
821 An ee.Image.
822 """
823
824 return apifunction.ApiFunction.call_(
825 self.name() + '.arrayCat', self, image2, axis
826 )
827
828 def arrayDimensions(self) -> Image:
829 """Returns the number of dimensions in each array band.

Callers 1

test_array_catMethod · 0.80

Calls 2

nameMethod · 0.95
call_Method · 0.80

Tested by 1

test_array_catMethod · 0.64