如何使用用户输入的数据去运行一个数学公式,最后怎么返回。
现在遇到的问题是:得到用户输入的数据后,怎么根据用户的数据去结合公式,从而计算出距离,返回结果。
目前有两个文件,一个是py
一个是html.
我在anaconda-jupyter运行过这个公式,是可以得出距离的。可是jupyter运行是因为上面有运行过的,所以有数据可以运行。
然而现在我不知道要在哪里填写,填写什么才可以将机场的数据输入到公式,距离的结果可以返回。
以下是部分ppy代码
def searchcities() -> 'html':airportone = request.form['user_airportone']
airporttwo = request.form['user_airporttwo']
distanceone = calcDistance['distance']
return render_template('results.html',
the_title = '以下是您选取的机场:',
the_airportone = airportone,
the_airporttwo = airporttwo,
the_distance = distanceone
)
以下是部分html代码
from math import radians, cos, sin, atan, acos,tandef calcDistance(a1,a2):
ra = 6378.140 # 赤道半径 (km)
rb = 6356.755 # 极半径 (km)
Lat_A = airportone['latitude']
Lng_A = airportone['longitude']
Lat_B = airporttwo['latitude']
Lng_B = airporttwo['longitude']
flatten = (ra - rb) / ra # 地球扁率
rad_lat_A = radians(Lat_A)
rad_lng_A = radians(Lng_A)
rad_lat_B = radians(Lat_B)
rad_lng_B = radians(Lng_B)
pA = atan(rb / ra * tan(rad_lat_A))
pB = atan(rb / ra * tan(rad_lat_B))
xx = acos(sin(pA) * sin(pB) + cos(pA) * cos(pB) * cos(rad_lng_A - rad_lng_B))
c1 = (sin(xx) - xx) * (sin(pA) + sin(pB)) ** 2 / cos(xx / 2) ** 2
c2 = (sin(xx) + xx) * (sin(pA) - sin(pB)) ** 2 / sin(xx / 2) ** 2
dr = flatten / 8 * (c1 - c2)
distance = ra * (xx + dr)
return distance
airportone = request.form['user_airportone']
airporttwo = request.form['user_airporttwo']
calcDistance(airportone,airporttwo)
恳求帮助,谢谢。
回答:
def searchcities() -> 'html':airportone = request.form['user_airportone']
airporttwo = request.form['user_airporttwo']
distanceone = calcDistance['distance']
return render_template('results.html',
the_title = '以下是您选取的机场:',
the_airportone = airportone,
the_airporttwo = airporttwo,
the_distance = distanceone
)
这一部分不就是获取 机场 然后计算结果,并且返回距离的么
距离显示在 result.html
页面,这不都写完了么
以上是 如何使用用户输入的数据去运行一个数学公式,最后怎么返回。 的全部内容, 来源链接: utcz.com/a/162933.html