File size: 6,868 Bytes
924e461 d4e55bb 924e461 d4e55bb 924e461 d4e55bb 924e461 d4e55bb 924e461 d4e55bb 924e461 d4e55bb 924e461 d4e55bb 924e461 d4e55bb 924e461 a7b9671 924e461 a7b9671 d4e55bb 924e461 d4e55bb a7b9671 924e461 d4e55bb 924e461 d4e55bb 924e461 d4e55bb 924e461 a7b9671 d4e55bb 924e461 d4e55bb 924e461 d4e55bb 924e461 a7b9671 924e461 d4e55bb 924e461 a7b9671 924e461 a7b9671 924e461 a7b9671 924e461 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 | #!/usr/bin/env python3
"""
Timeout wrapper for pygrib operations to prevent hanging on polar stereographic projections
"""
import multiprocessing
import functools
import logging
import numpy as np
import time
import queue
logger = logging.getLogger(__name__)
class TimeoutError(Exception):
pass
def run_with_timeout(func, timeout_seconds, *args, **kwargs):
"""
Run a function with timeout using multiprocessing
"""
def target_func(q, func, args, kwargs):
try:
result = func(*args, **kwargs)
q.put(('success', result))
except Exception as e:
q.put(('error', e))
q = multiprocessing.Queue()
process = multiprocessing.Process(target=target_func, args=(q, func, args, kwargs))
process.start()
process.join(timeout_seconds)
if process.is_alive():
process.terminate()
process.join()
raise TimeoutError(f"Function timed out after {timeout_seconds} seconds")
if q.empty():
raise TimeoutError(f"Function failed to return result")
status, result = q.get()
if status == 'error':
raise result
return result
def safe_pygrib_open(grib_file):
"""Safe pygrib.open with timeout"""
def _open_grib(grib_file):
import pygrib
return pygrib.open(grib_file)
return run_with_timeout(_open_grib, 30, grib_file)
def safe_pygrib_latlons(grb):
"""Safe grb.latlons() with timeout for polar stereographic"""
# Can't pass pygrib objects between processes, so this won't work
# Return None to indicate we need to use fallback method
return None
def safe_pygrib_values(grb):
"""Safe grb.values with timeout"""
# Can't pass pygrib objects between processes
return grb.values
def extract_pygrib_with_timeout(grib_file, sample_points=100):
"""
Extract Arctic GRIB data using advanced polar coordinate methods
"""
try:
# Use the specialized polar coordinate extractor
from polar_grib_coords import extract_arctic_data_safe
logger.info("π§ Using advanced polar coordinate extraction")
return extract_arctic_data_safe(grib_file, max_messages=3)
except ImportError:
logger.warning("β οΈ Advanced polar extractor not available, using fallback")
return extract_pygrib_simple_fallback(grib_file, sample_points)
def extract_pygrib_simple_fallback(grib_file, sample_points=100):
"""
Fallback pygrib extraction avoiding hanging operations
"""
try:
logger.info("π Using fallback pygrib extraction")
import pygrib
grbs = pygrib.open(grib_file)
data_points = []
# Process only first few messages to avoid hanging
message_count = 0
for grb in grbs:
message_count += 1
if message_count > 3: # Limit to first 3 messages
break
try:
param_name = grb.name if hasattr(grb, 'name') else f'param_{message_count}'
# Check if this is a wave parameter
if any(keyword in param_name.lower() for keyword in
['wave', 'swell', 'height', 'period', 'wind']):
logger.info(f"π Processing wave parameter: {param_name}")
# Get values (this should work)
values = grb.values
# Create synthetic Arctic grid coordinates (avoiding latlons())
logger.info("πΊοΈ Using synthetic Arctic coordinates")
ny, nx = values.shape
lats_1d = np.linspace(50.0, 85.0, ny) # Arctic latitudes
lons_1d = np.linspace(-180.0, 180.0, nx) # Full longitude range
lons_grid, lats_grid = np.meshgrid(lons_1d, lats_1d)
# Flatten arrays
flat_lats = lats_grid.flatten()
flat_lons = lons_grid.flatten()
flat_values = values.flatten()
# Filter valid values
valid_mask = ~np.isnan(flat_values) & (flat_values < 9999) & (flat_values > 0)
if np.sum(valid_mask) > 0:
valid_lats = flat_lats[valid_mask]
valid_lons = flat_lons[valid_mask]
valid_vals = flat_values[valid_mask]
# Sample points
n_points = min(sample_points, len(valid_lats))
if n_points > 0:
indices = np.random.choice(len(valid_lats), n_points, replace=False)
for idx in indices:
data_points.append({
'latitude': float(valid_lats[idx]),
'longitude': float(valid_lons[idx]),
'value': float(valid_vals[idx]),
'parameter': param_name
})
logger.info(f"β
Extracted {len(indices)} Arctic points for {param_name}")
if len(data_points) >= sample_points:
break
except Exception as e:
logger.warning(f"β Failed to process message {message_count}: {e}")
continue
grbs.close()
if data_points:
logger.info(f"β
Fallback extraction successful: {len(data_points)} Arctic points")
return {
'parameters': {},
'coordinates': None,
'data_points': data_points
}
else:
logger.warning("β No Arctic wave data extracted with fallback")
return {
'parameters': {},
'coordinates': None,
'data_points': []
}
except Exception as e:
logger.error(f"β Fallback extraction failed: {e}")
return {
'parameters': {},
'coordinates': None,
'data_points': []
}
if __name__ == "__main__":
import numpy as np
import os
# Test timeout functionality
arctic_file = "arctic_manual_20250828_12z.grib2"
if os.path.exists(arctic_file):
result = extract_pygrib_with_timeout(arctic_file, sample_points=50)
print(f"Result: {result['status']}, Points: {len(result['data'])}")
else:
print("Test Arctic file not found") |