-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconf.py
53 lines (50 loc) · 1.42 KB
/
conf.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/usr/bin/env python2
# -*- coding: utf-8 -*-
"""
Created on Wed Dec 13 23:40:35 2017
@author: alecioc
"""
plants = [
{
"plant_name":"Ramacca",
"longitude": 14.7155556,
"latitude": 37.4352778,
"power_tot": 906.75,
"surface": 8007.0
},
{
"plant_name":"Capitano",
"longitude": 15.75277778,
"latitude": 41.283333,
"power_tot": 997.92,
"surface": 4677.0
},
{
"plant_name":"Contessa",
"longitude": 15.813889,
"latitude": 41.276944,
"power_tot": 999.0,
"surface": 5994.0
},
{
"plant_name":"SanGiorgio",
"longitude": 7.8262778,
"latitude": 45.299556,
"power_tot": 1651.68,
"surface": 14585.0
},
{
"plant_name":"Capolongo",
"longitude": 15.745556,
"latitude": 41.2825,
"power_tot": 997.92,
"surface": 4677.0
},
{
"plant_name":"Pianezza",
"longitude": 7.5858333,
"latitude": 45.112778,
"power_tot": 984.48,
"surface": 5989.0
}
]