sandialabs / seat-qgis-plugin

Spatial Environmental Assessment Toolkit (SEAT) QGIS Plugin
https://sandialabs.github.io/seat-qgis-plugin/
GNU General Public License v3.0
1 stars 7 forks source link

Decide if max or last for structured example #1

Closed ebenp closed 1 year ago

ebenp commented 2 years ago

Currently the plugin uses the max timestep versus the last timestep.

# get max along the 2nd axis (time)
data_wecs_max = np.amax(data_wecs, axis = 1, keepdims = True)

# get last axis value
# data_wecs_max = data_wecs[:,[-1],:,:]

We should decide which one to use.