Closed grantbuster closed 2 years ago
coordinates: shape = (n, 2) dtype = np.float32 order = (lat, lon)
There should probably be an instance method in the reV outputs handler that creates the coordinates dataset with proper chunks, then add a kwarg add_coords=False
(false by default, we dont usually need this) to a common entry point:
Actually probably in here (forgot we subclass the reV outputs handler for NSRDB applications):
added coordinate chunks here https://github.com/NREL/nsrdb/blob/0cc0a99aca38b09fe51dd7fc6b943264cf874d83/nsrdb/file_handlers/outputs.py#L59-L62 and coordinate output here https://github.com/NREL/nsrdb/blob/0cc0a99aca38b09fe51dd7fc6b943264cf874d83/nsrdb/file_handlers/outputs.py#L73-L74
Why this feature is necessary: Coordinates datasets are often added to final NSRDB data. Might as well have that generated when running nsrdb pipeline.