Home
last modified time | relevance | path

Searched refs:LATITUDE_15_DEGREES (Results 1 – 1 of 1) sorted by relevance

/cts/tests/tests/location/src/android/location/cts/psedorange/
DTroposphericModelEgnos.java49 private static final int LATITUDE_15_DEGREES = 15; field in TroposphericModelEgnos
203 if (absLatitudeDeg <= LATITUDE_15_DEGREES) { in calculateZenithDryAndWetDelaysSec()
214 } else if (absLatitudeDeg > LATITUDE_15_DEGREES && absLatitudeDeg < LATITUDE_75_DEGREES) { in calculateZenithDryAndWetDelaysSec()
215 int key = (int) (absLatitudeDeg / LATITUDE_15_DEGREES); in calculateZenithDryAndWetDelaysSec()
217 double averagePressureMbar = interpolate(key * LATITUDE_15_DEGREES, in calculateZenithDryAndWetDelaysSec()
218 latDegreeToPressureMbarAvgMap[key - 1], (key + 1) * LATITUDE_15_DEGREES, in calculateZenithDryAndWetDelaysSec()
220 double amplitudePressureMbar = interpolate(key * LATITUDE_15_DEGREES, in calculateZenithDryAndWetDelaysSec()
221 latDegreeToPressureMbarAmpMap[key - 1], (key + 1) * LATITUDE_15_DEGREES, in calculateZenithDryAndWetDelaysSec()
225 double averageTempKelvin = interpolate(key * LATITUDE_15_DEGREES, in calculateZenithDryAndWetDelaysSec()
226 latDegreeToTempKelvinAvgMap[key - 1], (key + 1) * LATITUDE_15_DEGREES, in calculateZenithDryAndWetDelaysSec()
[all …]