We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7939594 commit bbfa1f0Copy full SHA for bbfa1f0
src/pyrad_proc/pyrad/io/read_data_radar.py
@@ -2682,11 +2682,6 @@ def merge_scans_nexrad2(
2682
radar object
2683
2684
"""
2685
- field_names = {}
2686
- # Use custom name mapping
2687
- for datatype in datatype_list:
2688
- field_names[datatype] = get_fieldname_pyart(datatype)
2689
-
2690
# find files to merge
2691
if 'bucket' in cfg:
2692
if not _BOTO3_AVAILABLE:
@@ -2726,9 +2721,7 @@ def merge_scans_nexrad2(
2726
2721
else:
2727
2722
fname_aux = fname
2728
2723
2729
- radar_aux = pyart.io.read(
2730
- fname, field_names=field_names,
2731
- include_fields=field_names.values())
2724
+ radar_aux = pyart.io.read(fname)
2732
2725
if radar_aux is None:
2733
continue
2734
if radar is None:
0 commit comments