I have a small function like so:
from django.contrib.gis.measure import Distance
def RailTest(mod_ewdim, mod_ewspacing, cols):
y = Distance(inch=mod_ewspacing)
x = Distance(inch=mod_ewdim)
z = Distance(inch=3)
l = ( (x*cols)+(y*(cols-1)) )+z
return l
However when I call the function and I do type(l) it is of type float. How can I ensure I return a distance object.
Any help much appreciated.