Skip to content

Commit dd78d6e

Browse files
authored
Coordinates in introtutorial are now more accurate (#1158)
1 parent 47654a0 commit dd78d6e

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

docs/sphinx/source/introtutorial.rst

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,12 @@ configuration at a handful of sites listed below.
3131
import pandas as pd
3232
import matplotlib.pyplot as plt
3333
34-
# very approximate
3534
# latitude, longitude, name, altitude, timezone
3635
coordinates = [
37-
(30, -110, 'Tucson', 700, 'Etc/GMT+7'),
38-
(35, -105, 'Albuquerque', 1500, 'Etc/GMT+7'),
39-
(40, -120, 'San Francisco', 10, 'Etc/GMT+8'),
40-
(50, 10, 'Berlin', 34, 'Etc/GMT-1'),
36+
(32.2, -111.0, 'Tucson', 700, 'Etc/GMT+7'),
37+
(35.1, -106.6, 'Albuquerque', 1500, 'Etc/GMT+7'),
38+
(37.8, -122.4, 'San Francisco', 10, 'Etc/GMT+8'),
39+
(52.5, 13.4, 'Berlin', 34, 'Etc/GMT-1'),
4140
]
4241
4342
# get the module and inverter specifications from SAM

0 commit comments

Comments
 (0)