Skip to content

Commit ac3a4c9

Browse files
authored
update china extent
1 parent 9cd68ad commit ac3a4c9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

coordTransform_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ def out_of_china(lng, lat):
144144
:param lat:
145145
:return:
146146
"""
147-
return !(lng > 73.66 && lng < 135.05 && lat > 3.86 && lat < 53.55)
147+
return not (lng > 73.66 and lng < 135.05 and lat > 3.86 and lat < 53.55)
148148

149149

150150
if __name__ == '__main__':

0 commit comments

Comments
 (0)