Make shapefile processing script pick up all shapefiles and fix order of bbox coordinate

This commit is contained in:
TheFGFSEagle
2022-07-30 20:33:29 +02:00
parent dc25bce9b2
commit 016d268c07
3 changed files with 21 additions and 23 deletions

View File

@@ -24,9 +24,9 @@ def get_fg_tile_span(lat):
return 0.5
elif lat >= -83:
return 1
elif lat >= -86
elif lat >= -86:
return 2
elif lat >= -89
elif lat >= -89:
return 4
else:
return 12