You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Py-ART Users
Hello,
I have radar data in a format that is unsupported by any of the read methods. However I do have data for all the necessary arguments to create a radar object (pyart.core.Radar). I am having trouble understanding how to format each argument. Is there an example somewhere that shows how a custom radar object is made without having to read in a file?
Thanks.
Maxwell Grover
unread,
Mar 18, 2022, 11:43:52 AM3/18/22
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
If you have multiple sweeps, but know the sweep indices, those can be plugged into: radar.sweep_start_ray_index = sweep_start_ray_index radar.sweep_end_ray_index = sweep_end_ray_index
Zach S.
On Friday, March 18, 2022 at 10:41:01 AM UTC-5 Robinson wrote:
Robinson
unread,
Mar 18, 2022, 12:12:39 PM3/18/22
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Py-ART Users
Thanks for the help. I think that is exactly what I'm looking for.