glmtools
glmtools copied to clipboard
GOES-R Geostationary Lightning Mapper Tools
Is there a way to calculate flash centroid density with glmtools? Can I do this with make_GLM_grid.py file with some of the other settings in the command line. make_GLM_grids.py [-h]...
This patch fixes an error I encountered after updating from python3.9 to python3.10. I've pasted the traceback below in case it proves useful. ``` Traceback (most recent call last): File...
I'm starting to work with GOES-17 (GOES-West) data and glmtools. I'm probably doing something stupid, but I was surprised to see the dimensions of the CONUS sector fixed grid as...
Avoid ValueError: not enough values to unpack (expected 4, got 3) Correct the number of arguments expected from pipelines in make_GLM_grids.py by removing references to min_flash_area_grid and min_area_grid. ``` Traceback...
I am processing a lot of files to one minute slots with a custom script which uses the setup logic ```python gridder, glm_filenames, start_time, end_time, grid_kwargs = grid_setup(args) gridder(glm_filenames, start_time,...
To get glmtools and jupyter notebook to play well together I needed to do the following: 1. edit the environment.yml file to require python=3.8 2. change to glmval env 3....
The use of ipywidgets >= 7.0 leads to multiple plots being produced when the event slider is advanced. This behavior is noted in https://github.com/jupyter-widgets/ipywidgets/issues/1919
Would it be possible for make_GLM_grids.py to not have output dir be required? Everytime I try running it on my Mac, it keeps throwing a Permissions Denied to the default...
I checked the difference between `average_flash_area` and `minimum_flash_area`: ``` import xarray as xr from glob import glob ds_glm_test = xr.open_dataset('../data/GOES-16/GLM_L2_Grid/2km/OR_GLM-L2-GLMC-M3_G16_s20201530000000_e20201530005000_c20211480438470.nc') (ds_glm_test['average_flash_area'] - ds_glm_test['minimum_flash_area']).plot(vmin=-1e3, vmax=1e3, cmap='RdBu_r') ``` Some negative values are...
There is an error in the glmtools example notebook named "plot_glm_test_data". It looks for 'scalebar' in glmtools.plot.mapscale... code: from glmtools.plot.mapscale import scale_bar but! No module named 'glmtools.plot.mapscale' looking at the...