-
So this is one for the GIS crowd. Using Jonathan's new gridding engine I am doing a massive CONUS wide mesh.. But as you can see form the plot, unless we have radars off the eastern seaboard the mesh …
-
In 'grid.py', 'add_field' function:
Line 79 nz, ny, nx = self.fields[self.fields.keys[0]]['data'].shape
Is missing () after keys such that it should read:
Line 79 nz, ny, nx = self.…
-
In the cfradial convention nyquist_velocity is global, however when working with unfolded fields it is possible to have different nyquist velocity, which is really important for choosing for instance …
-
In line 177 of _rsl_interface.pyx, which reads
``` python
gate_size = int(radar.range['meters_between_gates'])
```
I'm getting a ValueError because `radar.range['meters_between_gates']` is a unicode…
-
As suggested by @nguy on the mailing list it would be convenient if a azimuthal cross section of a PPI could be visualized without needing to first create a RHI-like radar instance using `pyart.util.c…
-
I have been attempting to use aux_io.radx.read_radx to read current Level 2 NEXRAD files, in order to save a step in converting them to CF Radial myself first. (This is mostly to simplify the split-cu…
-
This has been in my mind for some time now, it is probably something to add to pyart, but I think it is better we to develop it for internal artview usage and them suggest to pyart
For now pyart has …
-
This is a project documentation noting I would like to implement a masking feature as a plugin.
It should:
- [x] Mask data inside a chosen region
- [x] Mask data outside a chosen region
- [x] Be the …
-
I was thinking: to make artview more useful for pyart users we should add some convenience functions that allow a fast and simple visualization, with no need of mounting the application; that is, you …
-
I am trying to work set of NEXRAD level 2 files where some contain Message 31, but a significant portion do not. In the current version of Py-ART, I see that only the message 31 files are readable. H…