Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions planisphere.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@
# Render planisphere in all available languages
for language in text.text:

# Render climates for latitudes at 5-degree spacings from 10 deg -- 85 deg, plus 52N
for latitude in list(range(-80, 90, 5)) + [52]:
# Render climates for latitudes at 1-degree spacings from 10 deg -- 85 deg,
for latitude in list(range(80,10)) + [52]:

# Do not make equatorial planispheres, as they don't really work
if -10 < latitude < 10:
Expand Down