I have known columns that I want to create as an array of shape 5x269.
metadata_dtype = np.dtype([('frameNumber', np.int), ('year', np.int), ('day', np.int), ('seconds', np.int), ('sosStepIndex', np.int)])
frame_metadata_data = np.array([(frames), (years), (days), (seconds), (sos_step_index)], metadata_dtype)
frames, years, days, seconds, and sos_step_index are all 1x269 arrays. Unfortunately, when I execute the code above, I get a 5x269 array, but each item in the array contains a 1x5 list of the same repeated value.