From 87e20f1480848d5b4d566ed586f41cdf9591a5d4 Mon Sep 17 00:00:00 2001 From: bpasquer Date: Thu, 14 Nov 2024 12:54:42 +1100 Subject: [PATCH] wave: fix typo --- AODN/AODN-WAVE-NRT/ARDC_API_NRT/ardc_nrt/lib/common/netcdf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AODN/AODN-WAVE-NRT/ARDC_API_NRT/ardc_nrt/lib/common/netcdf.py b/AODN/AODN-WAVE-NRT/ARDC_API_NRT/ardc_nrt/lib/common/netcdf.py index 511d12b5..2e9aec4b 100644 --- a/AODN/AODN-WAVE-NRT/ARDC_API_NRT/ardc_nrt/lib/common/netcdf.py +++ b/AODN/AODN-WAVE-NRT/ARDC_API_NRT/ardc_nrt/lib/common/netcdf.py @@ -99,7 +99,7 @@ def convert_wave_data_to_netcdf(self, true_dates=False): not re.match('^IMOS', template.global_attributes['institution'].upper()): template.global_attributes.update({'institution_code': 'VIC-DEAKIN-UNI'}) elif re.match('^IMOS', template.global_attributes['institution'].upper()) and \ - not emplate.global_attributes['institution_code'].lower == 'imos': + not template.global_attributes['institution_code'].lower == 'imos': # rename VIC and UWA operated buoys from IMOS-NTP facility template.global_attributes.update({'institution_code': 'IMOS_NTP-WAVE'}) elif template.global_attributes['institution_code'].lower == 'imos':