Using python, I've just made two strings and now want to convert them into an integer array.
My two strings are the start and end times of an earth quake and look like this
"00:39:59.946000"
"01:39:59.892652"
I want to convert these two into integer arrays so that I can use numpy.arange()
or numpy.linspace()
. The expected output should be an array that has a number of evenly spaced values between the start and end time. For example,
array = [00:39:59.946000, 00:49:59.946000, 00:59:59.946000, 01:09:59.946000, etc...]
I want to then use the values of this array as each increment on the x-axis of my graph. Any advice / assistance would be appreciated.