Skip to content

Commit

Permalink
Update CarrierFreqUtils.java
Browse files Browse the repository at this point in the history
  • Loading branch information
Narugakuruga authored Nov 6, 2023
1 parent b8828a7 commit 201de88
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -242,10 +242,7 @@ public static String getSbasCf(int svid, double carrierFrequencyMhz) {
return getGlonassCf(carrierFrequencyMhz);
} else if (svid == 130 || svid == 143 || svid == 144) {
// BDSBAS (China)
if (MathUtils.fuzzyEquals(carrierFrequencyMhz, 1575.42, CF_TOLERANCE_MHZ)) {
return "B1C";
} else if (MathUtils.fuzzyEquals(carrierFrequencyMhz, 1176.45, CF_TOLERANCE_MHZ)) {
return "B2a";
return getBeidoucCf(carrierFrequencyMhz);
}
}
return CF_UNKNOWN;
Expand Down

0 comments on commit 201de88

Please sign in to comment.