Skip to content

Commit 7423428

Browse files
authored
Added debug output
1 parent 7a59e50 commit 7423428

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

python/extpar_art_to_buffer.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,11 @@ def get_fraction_per_soil_type(soil_id):
169169
lat_min = np.min(vlats)
170170
lat_max = np.max(vlats)
171171

172+
print("LON MIN", lon_min)
173+
print("LON MAX", lon_max)
174+
print("LAT MIN", lat_min)
175+
print("LAT MAX", lat_max)
176+
172177
lon_mask = (raw_lon >= lon_min) & (raw_lon <= lon_max)
173178
lat_mask = (raw_lat >= lat_min) & (raw_lat <= lat_max)
174179

0 commit comments

Comments
 (0)