>>> from so2_levels import under_threshold_station >>> l1 = [ ['bcn-34b', 10.3, 11.5, 10, 11, 12.1, -1] ] >>> under_threshold_station(l1, 9) '' >>> l2 = [ ['bcn-12', 12.4, 11.8, 13.7, -1, 12.09], ... ['ber-07', 10.9, 14.5], ... ['ber-10', 12.5, 7.5, 12.6], ... ['car-66', 12.81, -1, 12.6, -2.3, 15.8, 8.92] ] >>> under_threshold_station(l2, 8) 'ber-10' >>> under_threshold_station(l2, 12.5) 'bcn-12' >>> under_threshold_station(l2, 7) '' >>> under_threshold_station(l2, 11) 'ber-07'