Skip to content

Commit

Permalink
Refine PR
Browse files Browse the repository at this point in the history
  • Loading branch information
xhoenner committed Oct 1, 2024
1 parent d9e72a5 commit 06969cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AODN/AODN-WAVE-NRT/ARDC_API_NRT/ardc_nrt/ardc_sofar_nrt.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def process_wave_source_id(source_id, incoming_path=None):
return

if data is not None:
data = data[data['latitude'].notnull()]
data = data.dropna(subset = ['latitude', 'longitude'], how = 'all') # Remove rows associated with NAs for lat/long columns
template_dirpath = config.conf_dirpath
process_wave_dataframe(data, source_id, template_dirpath, OUTPUT_PATH, incoming_path)

Expand Down

0 comments on commit 06969cc

Please sign in to comment.