Skip to content
Merged
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
9 changes: 4 additions & 5 deletions docs/sphinx/source/introtutorial.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,12 @@ configuration at a handful of sites listed below.
import pandas as pd
import matplotlib.pyplot as plt

# very approximate
# latitude, longitude, name, altitude, timezone
coordinates = [
(30, -110, 'Tucson', 700, 'Etc/GMT+7'),
(35, -105, 'Albuquerque', 1500, 'Etc/GMT+7'),
(40, -120, 'San Francisco', 10, 'Etc/GMT+8'),
(50, 10, 'Berlin', 34, 'Etc/GMT-1'),
(32.2, -111.0, 'Tucson', 700, 'Etc/GMT+7'),
(35.1, -106.6, 'Albuquerque', 1500, 'Etc/GMT+7'),
(37.8, -122.4, 'San Francisco', 10, 'Etc/GMT+8'),
(52.5, 13.4, 'Berlin', 34, 'Etc/GMT-1'),
]

# get the module and inverter specifications from SAM
Expand Down