You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Curious how easy (hard) it would be to add the full list of image types that simple_image provides.
When running
from satpy import available_writers
available_writers()
I see ['mitiff', 'cf', 'simple_image', 'geotiff', 'scmi']. I believe what I was after was as a list of image formats I can provide when using scn.save_dataset e.g. png as doing scn2.save_dataset('true_color', filename='test') returns
Very good points. The issue for why this doesn't exist is that these available formats come from PIL (the python image library) and I think what formats can be used inevitably depend on how your installed version of PIL was built. @mraspaud maybe we could provide some of the standard ones and then link to PIL's documentation? Or maybe PIL has a way of listing them?
Curious how easy (hard) it would be to add the full list of image types that
simple_image
provides.When running
I see
['mitiff', 'cf', 'simple_image', 'geotiff', 'scmi']
. I believe what I was after was as a list of image formats I can provide when usingscn.save_dataset
e.g. png as doingscn2.save_dataset('true_color', filename='test')
returnsIn that error message I saw
if fformat == 'png'
so I ended up going for that first time round.The text was updated successfully, but these errors were encountered: