Searched refs:latDegrees (Results 1 – 5 of 5) sorted by relevance
/external/s2-geometry-library-java/src/com/google/common/geometry/ |
D | S2LatLng.java | 43 public static S2LatLng fromDegrees(double latDegrees, double lngDegrees) { in fromDegrees() argument 44 return new S2LatLng(S1Angle.degrees(latDegrees), S1Angle.degrees(lngDegrees)); in fromDegrees() 120 public double latDegrees() { in latDegrees() method in S2LatLng 289 return "(" + latDegrees() + ", " + lngDegrees() + ")"; in toStringDegrees()
|
D | S2Point.java | 184 return "(" + Double.toString(s2LatLng.latDegrees()) + ", " in toDegreesString()
|
/external/s2-geometry-library-java/tests/com/google/common/geometry/ |
D | S2CapTest.java | 20 public S2Point getLatLngPoint(double latDegrees, double lngDegrees) { in getLatLngPoint() argument 21 return S2LatLng.fromDegrees(latDegrees, lngDegrees).toPoint(); in getLatLngPoint()
|
D | S2CellIdTest.java | 32 private S2CellId getCellId(double latDegrees, double lngDegrees) { in getCellId() argument 33 S2CellId id = S2CellId.fromLatLng(S2LatLng.fromDegrees(latDegrees, lngDegrees)); in getCellId()
|
D | S2PolygonTest.java | 189 assertDoubleNear(latLng.latDegrees(), lat, error);
|