I downloaded OLCI Level 1 products from the Copernicus Data Hub. I need to create a jpeg/png from the different bands of OLCI L1 product on Python. These files are NetCDF file providing an array with radiances for each pixels.
When dealing with OLCI Level 1 NetCDF files, I’d recommend using Python libraries like xarray or rasterio to handle the data. Once you extract the bands, you can easily create PNG or JPEG images. Personally, I find the matplotlib library pretty handy for visualizations. Don’t forget to consider jpg compress for optimized file sizes.