netCDF vs GTiff

Hey all,
The ouput was exported into two different formats: netCDF was changed to GTiff and the GTiff format provides the defective results.

Used: open.vito.be

This part was changed:

        output_save = output.save_result(format='GTiff')  # it was changed to netCDF
        my_job  = output_save.create_job(title= output_name, job_options=job_options)
        results = my_job.start_and_wait().get_results()
        results.download_files(output_name)

ncf file:


tif file:

Could you please fix this so we will not get the corrupted results in the tif formats?

Hi Sulova,

We suspect that the issue is due to the direct downloading of a binary image(which does not work properly: “ripple effect” on download of binary image · Issue #33 · Open-EO/openeo-geopyspark-driver · GitHub). Can you try casting the output to float before downloading?
e.g

output = output * 1.0

2 Likes