現在遇到的問題是:得到使用者輸入的資料後,怎麼根據使用者的資料去結合公式,從而計算出距離,回傳結果。
目前有兩個文件,一個是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,tan def 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)
懇求幫助,謝謝。
這一部分不就是取得機場然後計算結果,並且返回距離的麼
距離顯示在
result.html
頁面,這不都寫完了麼