We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44b6360 commit f901a57Copy full SHA for f901a57
third_party/2and3/geohash.pyi
@@ -0,0 +1,12 @@
1
+# Stubs for geohash (Python 3.5)
2
+#
3
+# NOTE: This dynamically typed stub was automatically generated by stubgen.
4
+
5
+from typing import Dict, List, Text, Tuple
6
7
+def encode(latitude: float, longitude: float, precision: int = ...) -> Text: ...
8
+def decode(hashcode: Text, delta: bool = ...) -> Tuple[float, float]: ...
9
+def decode_exactly(hashcode: Text) -> Tuple[float, float]: ...
10
+def bbox(hashcode: Text) -> Dict[Text, float]: ...
11
+def neighbors(hashcode: Text) -> List[Text]: ...
12
+def expand(hashcode: Text) -> List[Text]: ...
0 commit comments