GPSと一部のアプリがGPS通知を登録するとき、GPSステータス情報は「SAT」、「SIG」、「TTF」情報(最後に知っている最後のもの、修正時刻、修正時刻)に掲載されていますが、意味は何ですか最初の2つのうち、それらの隣に表示されている数字/記号の意味は何ですか?
更新: Android GPSステータスの例:
<事前> <コード> 9988776655443330最後のものは「GPS信号を取得するために27秒(これまで)を取得しました」を意味します。私は最初の2つと知られていません。
GPSと一部のアプリがGPS通知を登録するとき、GPSステータス情報は「SAT」、「SIG」、「TTF」情報(最後に知っている最後のもの、修正時刻、修正時刻)に掲載されていますが、意味は何ですか最初の2つのうち、それらの隣に表示されている数字/記号の意味は何ですか?
更新: Android GPSステータスの例:
<事前> <コード> 9988776655443330最後のものは「GPS信号を取得するために27秒(これまで)を取得しました」を意味します。私は最初の2つと知られていません。
When you turn on GPS and some app subscribes for GPS notifications, GPS status info shows up with "SAT", "SIG" and "TTF" info (the last one I know, Time To Fix) but what is the meaning of the first two and what is the meaning of the numbers/symbols (like infinity) shown up next to them?
Update: example of the Android GPS status:
SAT 0/2 | SIG 19/xe2x88x9e | TTF 27s
The last one means "it took 27s (so far) to acquire GPS signal". I don't know about the first two ones and all those numbers.
Android開発者は標準パラメータを定義します GPSステータスアプリで使用されます。
アプリは明らかに
<コード>衛星数:+ Glos in Use in Use in glonass in glonass in glonass in glogs in tomal and total visible。だからあなたの携帯電話は2つの衛星を検出することができますが、決して修正を受けるために使用されていました(まだ修正を取得していませんか?)。これは、資料内の<コード> 99887766544331 に対応しています。
<コード> 998877665444332 平均信号対雑音比(0~40dB)。これは<コード> 998877666544333 に対応しています。 ドキュメントで。 2番目の値は、 d ILIGUTION o < / Strong> F P リュージョン値 。あなたはきっと屋内で始まったばかりで、修正されたばかりであるので、位置のエラーは ∞
です。 Linked Wikiは、値とgtを持つ読み値が廃棄されるべきです。
<コード>は、GPSエンジンの最新の再起動以来の最初の修正を受信するのに必要な時間を意味するです。
Android developers defines the standard parameters GPS Status to be used by apps.
Apps can obviously provide more than the minimum information, as in the case of GPS Status & Toolbox, whose help page and Android documentation put together help decipher.
SAT 0/2
Number of satellites: GPS in use [+ GLONASS in use] / Total visible. So your phone could detect 2 Satellites but none were used to get a fix (indoors or yet to acquire fix?). This likely corresponds to getMaxSatellites
in the documentation.
SIG 19/xe2x88x9e
Average signal to noise ratio (0-40dB). This corresponds to getsnr
in the documentation. The second value is the Dilution of Precision value . You were surely indoors or fix just started, so without fix the error of the position is xe2x88x9e
. Linked wiki says readings having value >20 should be discarded.
TTF 27s
is getTimeToFirstFix
meaning the time required to receive the first fix since the most recent restart of the GPS engine.
© 2022 cndgn.com All Rights Reserved. Q&Aハウス 全著作権所有