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 bb83207 commit b35ac6eCopy full SHA for b35ac6e
overpass/utils.py
@@ -1,9 +1,9 @@
1
class Utils(object):
2
3
- @classmethod
4
- def to_overpass_id(self, osmid, area=False):
5
- AREA_BASE = 2400000000
6
- RELATION_BASE = 3600000000
7
- if area:
8
- return int(osmid) + AREA_BASE
9
- return int(osmid) + RELATION_BASE
+ @classmethod
+ def to_overpass_id(self, osmid, area=False):
+ AREA_BASE = 2400000000
+ RELATION_BASE = 3600000000
+ if area:
+ return int(osmid) + AREA_BASE
+ return int(osmid) + RELATION_BASE
0 commit comments