Skip to content
Snippets Groups Projects
Commit e7b86348 authored by tomrink's avatar tomrink
Browse files

fix some cf issues

parent 2e56935c
No related branches found
No related tags found
No related merge requests found
......@@ -279,9 +279,9 @@ def check_oblique(satzen, test_angle=70.0):
return True
def get_average(tile_2d):
def get_median(tile_2d):
tile = tile_2d.flatten()
return np.nanmean(tile)
return np.nanmedian(tile)
def get_grid_values_all(h5f, grid_name, scale_factor_name='scale_factor', add_offset_name='add_offset',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment