I need to calculate some direction arrays in numpy. I divided 360 degrees into 16 groups, each group covers 22.5 degrees. I want the 0 degree in the middle of a group, i.e., get directions between -11.25 degrees and 11.25 degrees. But the problem is how can I get the group between 168.75 degrees and -168.75 degrees?
a[numpy.where(a<0)] = a[numpy.where(a<0)]+360
for m in range (0,3600,225):
b = (a*10 > m)-(a*10 >= m+225).astype(float)
c = numpy.apply_over_axes(numpy.sum,b,0)
If you want to divide data into 16 groups, having 0 degree in the middle, why are you writing
for m in range (0,3600,225)
?I would say you should start with
for m in range (-1125,36000,2250)
(note that now I am using a 100 factor instead of 10), that would give you the groups you want...I have to say I don't really understand your script and the goal of it... To deal with circle degrees, I would suggest something like:
For example, in this case, I am printing all the elements from my array that belong to each sector:
about
flat
andreshape
functions: