Panu Lahtinen
Panu Lahtinen
Without testing anything, one thing that should help at least a bit is to add `tiled=True, blockxsize=512, blockysize=512` to the `save_dataset()` call. Then the data can actually be written in...
You can use HRFI and FDHSI data together. Satpy will pick and use the channels with the highest resolution that are available. See my back-of-the-enveolope version HRV Fog here: https://github.com/pytroll/satpy/issues/2670#issuecomment-1846983104...
The order in which the configs are taken to use is: * the built-in "generic" ones ** `visir.yaml` for composites ** `generic.yaml` for enhancements * sensor specific built-ins ** `seviri.yaml`...
> (edit) For what it's worth, I agree with Johan's first two proposals. For the third one (`max_sza` and `correction_limit`) I also agree in principle but want to note that...
And another comment from @djhoese https://github.com/pytroll/satpy/pull/2305#discussion_r1069570070 ``` The try/except might be the best option. I think we're generally OK with the behavior of "do whatever you have to do to...
For me the tests pass with up-to-date packages from conda-forge with Python 3.12 and Satpy 0.53.0: ``` $ conda create -y -n py312_test python=3.12 satpy=0.53.0 defusedxml pytest $ pip install...
Ooh, I see! Yeah, with `numpy=1.26` I see the failures in the same two tests but with different values and number of elements: ``` ======================================== FAILURES ======================================== __________ TestSunZenithCorrector.test_basic_default_provided[sunz_ds1-float32] __________...
Some thoughts I also wrote partially to Slack follow. What if the writer handled the geometry creation? 1. Create a writer called, lets say `li_shapes_to_geojson` that includes the conversion from...
Possibilities for the "use geometries with rasters loaded in the same `Scene`" case with the above approach that has no `VectorScene` and the geometries are handled as-is where needed: *...
> At the moment, the LI reader returns a "swath" which should really be a geometry: could we have a "get_vector_dataset" that the yaml reader (subclass?) could use? If the...