frankinspace commented on a change in pull request #132: URL: https://github.com/apache/incubator-sdap-nexus/pull/132#discussion_r709669114
########## File path: data-access/nexustiles/model/nexusmodel.py ########## @@ -100,6 +136,8 @@ def nexus_point_generator(self, include_nan=False): def get_indices(self, include_nan=False): if include_nan: return list(np.ndindex(self.data.shape)) + if self.is_multi: + return np.argwhere(self.data[0]) Review comment: I see, so you're trying to return the indices where valid data exist? That would be dependent on the data variable. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@sdap.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org