use dtype when allocating

This commit is contained in:
Jan Petykiewicz 2021-10-31 19:02:49 -07:00
parent f04aec9a1b
commit 85d9ff7ace

View File

@ -250,9 +250,9 @@ class Grid:
The allocated array The allocated array
""" """
if fill_value is None: if fill_value is None:
return numpy.empty(self.cell_data_shape) return numpy.empty(self.cell_data_shape, dtype=dtype)
else: else:
return numpy.full(self.cell_data_shape, fill_value) return numpy.full(self.cell_data_shape, fill_value, dtype=dtype)
def __init__(self, def __init__(self,
pixel_edge_coordinates: Sequence[numpy.ndarray], pixel_edge_coordinates: Sequence[numpy.ndarray],