Skip to content

Fix typo in python error message

Victor Poughon requested to merge typo-GetVectorImageAsNumpyArray into develop

Error message currently says:

Output image from application has more than 1 band
GetImageFromNumpyArray only returns the first band, which will result in a loss of data.
In this case you must use GetVectorImageFromNumpyArray which is capable of return a 3 dimension image.

But the correct method to use here is GetVectorImageAsNumpyArray.

Merge request reports