(mapPx, worldPx, fraction)
| 42 | return max(min(radX2, np.pi), -np.pi) / 2 |
| 43 | |
| 44 | def zoom(mapPx, worldPx, fraction): |
| 45 | return 0.95 * np.log(mapPx / worldPx / fraction) / np.log(2) |
| 46 | |
| 47 | latFraction = (latRad(lat_max) - latRad(lat_min)) / np.pi |
| 48 |
no outgoing calls
no test coverage detected