Merge branch 'release/v12.08'
This commit is contained in:
@@ -10,6 +10,7 @@ from rowingdata import make_cumvalues
|
|||||||
from rowingdata import rower as rrower
|
from rowingdata import rower as rrower
|
||||||
from rowingdata import main as rmain
|
from rowingdata import main as rmain
|
||||||
from rowingdata import empower_bug_correction,get_empower_rigging
|
from rowingdata import empower_bug_correction,get_empower_rigging
|
||||||
|
from rowingdata.csvparsers import make_cumvalues_array
|
||||||
from time import strftime
|
from time import strftime
|
||||||
from pandas import DataFrame,Series
|
from pandas import DataFrame,Series
|
||||||
|
|
||||||
|
|||||||
@@ -15,6 +15,7 @@ from rowingdata import cumcpdata,histodata
|
|||||||
from rowingdata import rowingdata as rrdata
|
from rowingdata import rowingdata as rrdata
|
||||||
from math import pi
|
from math import pi
|
||||||
from django.utils import timezone
|
from django.utils import timezone
|
||||||
|
from rowingdata import make_cumvalues
|
||||||
|
|
||||||
from bokeh.palettes import Dark2_8 as palette
|
from bokeh.palettes import Dark2_8 as palette
|
||||||
from bokeh.models.glyphs import MultiLine
|
from bokeh.models.glyphs import MultiLine
|
||||||
@@ -3096,7 +3097,9 @@ def interactive_multiflex(datadf,xparam,yparam,groupby,extratitle='',
|
|||||||
gr = groupname,
|
gr = groupname,
|
||||||
)
|
)
|
||||||
|
|
||||||
|
if xparam == 'cumdist':
|
||||||
|
res = make_cumvalues(datadf[xparam])
|
||||||
|
datadf[xparam] = res[0]
|
||||||
if xparam=='distance':
|
if xparam=='distance':
|
||||||
xaxmax = datadf[xparam].max()
|
xaxmax = datadf[xparam].max()
|
||||||
xaxmin = datadf[xparam].min()
|
xaxmin = datadf[xparam].min()
|
||||||
@@ -4657,6 +4660,7 @@ def interactive_multiple_compare_chart(ids,xparam,yparam,plottype='line',
|
|||||||
message = ''
|
message = ''
|
||||||
errormessage = ''
|
errormessage = ''
|
||||||
|
|
||||||
|
|
||||||
columns = [xparam,yparam,
|
columns = [xparam,yparam,
|
||||||
'ftime','distance','fpace',
|
'ftime','distance','fpace',
|
||||||
'power','hr','spm',
|
'power','hr','spm',
|
||||||
@@ -4779,6 +4783,10 @@ def interactive_multiple_compare_chart(ids,xparam,yparam,plottype='line',
|
|||||||
|
|
||||||
|
|
||||||
group.sort_values(by='time',ascending=True,inplace=True)
|
group.sort_values(by='time',ascending=True,inplace=True)
|
||||||
|
|
||||||
|
if xparam == 'cumdist':
|
||||||
|
res = make_cumvalues(group[xparam])
|
||||||
|
group[xparam] = res[0]
|
||||||
try:
|
try:
|
||||||
group['x'] = group[xparam]
|
group['x'] = group[xparam]
|
||||||
except KeyError:
|
except KeyError:
|
||||||
|
|||||||
@@ -277,7 +277,7 @@ def workout_csvtoadmin_view(request,id=0):
|
|||||||
messages.info(request,successmessage)
|
messages.info(request,successmessage)
|
||||||
url = reverse('workout_view',
|
url = reverse('workout_view',
|
||||||
kwargs = {
|
kwargs = {
|
||||||
'id':str(w.id),
|
'id':encoder.encode_hex(w.id),
|
||||||
})
|
})
|
||||||
response = HttpResponseRedirect(url)
|
response = HttpResponseRedirect(url)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user