Eric Bruning
Eric Bruning
Ah, ok, I assumed too much about how you've been working with make_GLM_grids.py in CSSP Geo. I'm open to taking a look at your simpler script, and might be able...
Overall I like your templating scheme, but what's going on is somewhat more complicated. There's an old lmatools writer interface that is overridden in `glmtools.grid.make_grids.GLMlutGridder.write_grids`, which calls `glmtools.io.imagery.write_goes_imagery`, where you'll...
Looking at it more this morning, I think it would be as simple as allowing and using a template in `output` in the call to `glmtools.io.imagery.write_goes_imagery`. No changes to lmatools...
@djhoese does the proposed fix in #63 meet your needs?
You're right, it's better to default to the current directory. If anyone wants to prepend a path they have to copy the whole template string anyway, so in practice this...
Hi @simonrp84 that could be a version mismatch with lmatools, but master should be consistent between glmtools and lmatools for at least the past year. The other possibility is that...
@jlc248 looking at the creation timestamp on the [CONUS grids I create for Unidata'a THREDDS](https://thredds.ucar.edu/thredds/catalog/satellite/goes/east/products/GeostationaryLightningMapper/CONUS/current/catalog.html), that's pretty close to what I'm getting. There was a [performance regression related to `.min()`](https://github.com/pandas-dev/pandas/issues/28122)...
The processing doesn't assume that the grid time slices align with the start or end of data file chunks. A 3D (x,y,time) grid is created at the start of processing,...
I looked at the key steps this afternoon, and I don't think there are any calculations that depend on the 3D array. In `glmtools.grid.make_grids.GLMlutGridder.*_pipeline_setup` the 3D grid is created and...
I don’t see why not. Is there a coding pattern for implementing this sort of thing? I’d like to not poorly reinvent a standard abstraction. I can point to how...