msw17002
msw17002
To add more details; If I run the script for different dates/files, I receive the same error, but with varying amount of 'buffer' bytes. So I also got these errors,...
I wasn't able to script a solution to this, but the problem isn't duplicated for smaller shapefiles. The files I was working with were too larger.
Hello again, Ryan. Based on the online example, `radar.sweeps[0][0][4][b'REF'][0]` and what you suggest, `radar.sweeps[0][0][1]['REF'][1]` It'd be great if MetPy could create a dynamic function that selects the correct index based...
I initially looked at PyART, but it's near impossible to create an application with the library. There are too many scripts to pack into an executable... It is possible with...
I added my sample script to this email... I did copy it from one of the examples (https://unidata.github.io/MetPy/latest/examples/formats/NEXRAD_Level_2_File.html#sphx-glr-examples-formats-nexrad-level-2-file-py). If the radar file doesn't upload to this reply, you can download...
Thank you for your help, dopplershift! Here's my code for anyone seeking help: ```python radar = Level2File(inn) #================================================================================================================= #---retrieve base fields cent_lon = radar.sweeps[0][0][1].lon cent_lat = radar.sweeps[0][0][1].lat #-Pull data out...