Python学习与技术博客写作的利器

Jupyter Notebook应用介绍

今天用树莓派做了用Python来获取树莓派天气工作站温度数据并且生成图表的例子,最后把代码导出为Markdown格式,粘贴单支持Markdown语法的博客园就生成了一篇博客,非常方便,然后就想分享给大家。而且用Jupyter Notebook写的博客代码和内容都可以非常方便的修改,而且博客可以附加上.ipynb文件,方便看教程的人进行学习和练习。
这种方法的,在探索代码的过程中记录每一步的过程,便于生成博客,有助于技术的反思和积累。

  1. 今天还有个收获,发现树莓派官方网站提供了很多优秀的教程,很长一段时间内可以不用手机树莓派相关书籍了,而且这些教案资料非常适合用于教学。树莓派官方网站是一个非常儿童化的网站。长久以来我们都在努力用树莓派搞人工智能这是与树莓派初衷相违背的。
  2. 树莓派最终的落脚点或者说再教育领域,从初中开始就可以伴随着Python的普及,来推广树莓派,用树莓派来做一些很有意思的项目。创客教育并非买一堆设备就可以的,而是要有课程,现在树莓派有效的课程还很少,能用的不多,我们可以先考虑学习官网上的教程,然后在运用到社团活动中。
  3. 基于树莓派可以搭建编程教学平台,推广编程教育,普及少儿编程。

你可以通过访问一个很简单的网址来获取当前仍然提供在线服务的气象站的列表。因为所有气象站用来上传数据的数据库头提供了一个RESTful API。HTTP requests这个模块有一个很简单的函数可以让我们像浏览器一样获取这些数据。

把下面的地址复制到浏览器的地址栏并访问:

https://apex.oracle.com/pls/apex/raspberrypi/weatherstation/getallstations

浏览器将会呈现一个整个页面都是数据的网页。但是这些数据读起来不是很友好,我们可以用很少的Python代码来抓取这些数据并且改用一种人类比较容易理解的方式呈现:

  1. Click on Menu > Programming > Python3 (IDLE) to open a new Python shell, then click on File > New File.
  2. The first thing you'll need is a few Python modules. One of them is not in the standard library, but you can install it from the Requirements page.

导入需要的第三方库

from requests import get
import json
from pprint import pprint
url = "https://apex.oracle.com/pls/apex/raspberrypi/weatherstation/getallstations"
url
'https://apex.oracle.com/pls/apex/raspberrypi/weatherstation/getallstations'
  1. Using get from the requests module you can now fetch the data, and translate it into Python dictionaries using the json module:
#stations = get(url).json()['items']
stations = get(url).json()['items']

[{'weather_stn_id': 255541,
  'weather_stn_lat': 52.213842,
  'weather_stn_long': 0.110421,
  'weather_stn_name': 'Pi Towers Demo'},
 {'weather_stn_id': 296861,
  'weather_stn_lat': 52.346752,
  'weather_stn_long': 0.333975,
  'weather_stn_name': 'Home'},
 {'weather_stn_id': 316321,
  'weather_stn_lat': 52.32984,
  'weather_stn_long': 0.337129,
  'weather_stn_name': 'SVC1'},
 {'weather_stn_id': 490722,
  'weather_stn_lat': 52.059168,
  'weather_stn_long': 1.181303,
  'weather_stn_name': 'JimStation1'},
 {'weather_stn_id': 497527,
  'weather_stn_lat': 57.693646,
  'weather_stn_long': -4.251687,
  'weather_stn_name': 'Alness Academy '},
 {'weather_stn_id': 497974,
  'weather_stn_lat': 52.064358,
  'weather_stn_long': 1.153287,
  'weather_stn_name': 'christchurch'},
 {'weather_stn_id': 504487,
  'weather_stn_lat': 48.949147,
  'weather_stn_long': 3.126924,
  'weather_stn_name': 'pi-celine-77'},
 {'weather_stn_id': 505047,
  'weather_stn_lat': 55.009497,
  'weather_stn_long': -1.614494,
  'weather_stn_name': 'ARFS1'},
 {'weather_stn_id': 505307,
  'weather_stn_lat': 51.383511,
  'weather_stn_long': 0.538223,
  'weather_stn_name': 'Test Brompton Academy'},
 {'weather_stn_id': 505367,
  'weather_stn_lat': 55.9453,
  'weather_stn_long': 4.5646,
  'weather_stn_name': 'Callum_Inglis'},
 {'weather_stn_id': 506882,
  'weather_stn_lat': 37.595485,
  'weather_stn_long': -2.26851,
  'weather_stn_name': 'Colegio'},
 {'weather_stn_id': 507567,
  'weather_stn_lat': 54.517955,
  'weather_stn_long': -6.050129,
  'weather_stn_name': 'Wallace Weather'},
 {'weather_stn_id': 508259,
  'weather_stn_lat': 54.728729,
  'weather_stn_long': 25.232436,
  'weather_stn_name': 'pirmoji'},
 {'weather_stn_id': 509867,
  'weather_stn_lat': 57.693646,
  'weather_stn_long': -4.251687,
  'weather_stn_name': 'A2'},
 {'weather_stn_id': 509944,
  'weather_stn_lat': 50.079793,
  'weather_stn_long': 1.995599,
  'weather_stn_name': 'Ecole Victor Hugo'},
 {'weather_stn_id': 510325,
  'weather_stn_lat': 54.641816,
  'weather_stn_long': -6.744389,
  'weather_stn_name': 'Cookstown High School'},
 {'weather_stn_id': 511028,
  'weather_stn_lat': 52.70294,
  'weather_stn_long': 5.29839,
  'weather_stn_name': 'station1'},
 {'weather_stn_id': 511059,
  'weather_stn_lat': 53.106468,
  'weather_stn_long': 6.114299,
  'weather_stn_name': 'IT Weather Station'},
 {'weather_stn_id': 511878,
  'weather_stn_lat': 49.85612,
  'weather_stn_long': 5.252538,
  'weather_stn_name': 'Station IND'},
 {'weather_stn_id': 512202,
  'weather_stn_lat': 36.52785,
  'weather_stn_long': 23.04514,
  'weather_stn_name': 'Neapoli Weather Station'},
 {'weather_stn_id': 515967,
  'weather_stn_lat': 47.14057,
  'weather_stn_long': 10.56558,
  'weather_stn_name': 'Wetterstation BRG/BORG Landeck'},
 {'weather_stn_id': 518682,
  'weather_stn_lat': 32.673656,
  'weather_stn_long': -17.063309,
  'weather_stn_name': 'Estação Meteorológica'},
 {'weather_stn_id': 519781,
  'weather_stn_lat': 37.031846,
  'weather_stn_long': -7.839955,
  'weather_stn_name': 'weather-aeffl'},
 {'weather_stn_id': 520153,
  'weather_stn_lat': 55.905778,
  'weather_stn_long': 23.275667,
  'weather_stn_name': 'WS-SiauliuSauletekioGimnazija'},
 {'weather_stn_id': 520275,
  'weather_stn_lat': 39.986605,
  'weather_stn_long': -0.029553,
  'weather_stn_name': 'Weather Station IES Penyagolosa'},
 {'weather_stn_id': 520546,
  'weather_stn_lat': 52.282774,
  'weather_stn_long': -0.646623,
  'weather_stn_name': 'Lab13Irchester'},
 {'weather_stn_id': 524920,
  'weather_stn_lat': 35.034109,
  'weather_stn_long': 25.930117,
  'weather_stn_name': 'Koutsouras Weather Station'},
 {'weather_stn_id': 526297,
  'weather_stn_lat': 10.739801,
  'weather_stn_long': 47.237048,
  'weather_stn_name': 'Bundeshandelsakademie Imst'},
 {'weather_stn_id': 526407,
  'weather_stn_lat': 51.534122,
  'weather_stn_long': -1.065971,
  'weather_stn_name': 'Langtree'},
 {'weather_stn_id': 528071,
  'weather_stn_lat': 51.574658,
  'weather_stn_long': 0.020523,
  'weather_stn_name': 'ololweather'},
 {'weather_stn_id': 529275,
  'weather_stn_lat': 51.24602,
  'weather_stn_long': -1.134301,
  'weather_stn_name': 'Garden'},
 {'weather_stn_id': 534382,
  'weather_stn_lat': 47.821407,
  'weather_stn_long': 13.046863,
  'weather_stn_name': 'HTL Salzburg Wetterstation'},
 {'weather_stn_id': 541759,
  'weather_stn_lat': 45.630937,
  'weather_stn_long': -9.148652,
  'weather_stn_name': 'meteocesano'},
 {'weather_stn_id': 552355,
  'weather_stn_lat': 41.146,
  'weather_stn_long': 24.155,
  'weather_stn_name': '4th_Lyceum_of_Drama WS'},
 {'weather_stn_id': 553868,
  'weather_stn_lat': 38.196618,
  'weather_stn_long': 20.439742,
  'weather_stn_name': 'Lixouri - Kefalonia'},
 {'weather_stn_id': 553997,
  'weather_stn_lat': 47.44209,
  'weather_stn_long': 15.299633,
  'weather_stn_name': 'HTL Kapfenberg'},
 {'weather_stn_id': 562837,
  'weather_stn_lat': 54.728729,
  'weather_stn_long': 25.232436,
  'weather_stn_name': 'Raspberry_Pi'},
 {'weather_stn_id': 567429,
  'weather_stn_lat': 38.196642,
  'weather_stn_long': 20.439738,
  'weather_stn_name': 'Lixouri1'},
 {'weather_stn_id': 567604,
  'weather_stn_lat': 48.563759,
  'weather_stn_long': 13.445813,
  'weather_stn_name': 'ASG Wetterstation'},
 {'weather_stn_id': 567712,
  'weather_stn_lat': 38.196634,
  'weather_stn_long': 20.439724,
  'weather_stn_name': 'Lixouri2'},
 {'weather_stn_id': 582067,
  'weather_stn_lat': 4.850698,
  'weather_stn_long': 52.29102,
  'weather_stn_name': 'startbaan3'},
 {'weather_stn_id': 586603,
  'weather_stn_lat': 49.627324,
  'weather_stn_long': 6.107863,
  'weather_stn_name': 'LML - Lycée Michel Lucius'},
 {'weather_stn_id': 586921,
  'weather_stn_lat': 54.01975,
  'weather_stn_long': 23.9643,
  'weather_stn_name': 'Druskininkai'},
 {'weather_stn_id': 587328,
  'weather_stn_lat': 57.46,
  'weather_stn_long': 49.03,
  'weather_stn_name': 'Weather1'},
 {'weather_stn_id': 587704,
  'weather_stn_lat': 50.724344,
  'weather_stn_long': 15.179845,
  'weather_stn_name': 'vikyr'},
 {'weather_stn_id': 591441,
  'weather_stn_lat': 37.926748,
  'weather_stn_long': -97.317943,
  'weather_stn_name': 'One'},
 {'weather_stn_id': 595131,
  'weather_stn_lat': 51.083455,
  'weather_stn_long': 17.015699,
  'weather_stn_name': 'BISCpi'},
 {'weather_stn_id': 595229,
  'weather_stn_lat': 40.29728,
  'weather_stn_long': -76.873569,
  'weather_stn_name': 'Weather@Londonderry'},
 {'weather_stn_id': 635457,
  'weather_stn_lat': 54.554325,
  'weather_stn_long': 23.351328,
  'weather_stn_name': 'MRSPM'},
 {'weather_stn_id': 638013,
  'weather_stn_lat': 50.813535,
  'weather_stn_long': 19.108224,
  'weather_stn_name': 'IVLO_PL'},
 {'weather_stn_id': 642724,
  'weather_stn_lat': 42.76871,
  'weather_stn_long': 11.10955,
  'weather_stn_name': 'leopoldo'},
 {'weather_stn_id': 664202,
  'weather_stn_lat': 51.576,
  'weather_stn_long': 6.985,
  'weather_stn_name': 'RatsGladbeck'},
 {'weather_stn_id': 667471,
  'weather_stn_lat': 40.631823,
  'weather_stn_long': 22.74351,
  'weather_stn_name': 'Weather Station Lyceum of Chalastra - Greece'},
 {'weather_stn_id': 667858,
  'weather_stn_lat': 53.301557,
  'weather_stn_long': -1.466409,
  'weather_stn_name': 'DHFS Weather Station'},
 {'weather_stn_id': 668306,
  'weather_stn_lat': 51.522803,
  'weather_stn_long': 0.007889,
  'weather_stn_name': 'Hammers1'},
 {'weather_stn_id': 672677,
  'weather_stn_lat': 52.022593,
  'weather_stn_long': 0.239215,
  'weather_stn_name': 'Raspberry Pi'},
 {'weather_stn_id': 678213,
  'weather_stn_lat': 51.454043,
  'weather_stn_long': -0.953976,
  'weather_stn_name': 'Reading College'},
 {'weather_stn_id': 714944,
  'weather_stn_lat': 53.263444,
  'weather_stn_long': 6.007731,
  'weather_stn_name': 'De Falom'},
 {'weather_stn_id': 732871,
  'weather_stn_lat': 40.032064,
  'weather_stn_long': -75.174831,
  'weather_stn_name': 'PSD Weather Station'},
 {'weather_stn_id': 743191,
  'weather_stn_lat': 51.436598,
  'weather_stn_long': -1.088424,
  'weather_stn_name': 'Weatherstation'},
 {'weather_stn_id': 746708,
  'weather_stn_lat': 53.616181,
  'weather_stn_long': 10.027157,
  'weather_stn_name': 'Bugenhagenschulen Alsterdorf'},
 {'weather_stn_id': 748308,
  'weather_stn_lat': 47.791667,
  'weather_stn_long': 12.953055,
  'weather_stn_name': 'NMS Laakirchen'},
 {'weather_stn_id': 751328,
  'weather_stn_lat': 37.258796,
  'weather_stn_long': -8.290331,
  'weather_stn_name': 'messines'},
 {'weather_stn_id': 783121,
  'weather_stn_lat': 39.097639,
  'weather_stn_long': 26.547785,
  'weather_stn_name': 'Mytilene, Lesvos, Greece'},
 {'weather_stn_id': 785419,
  'weather_stn_lat': 44.14392,
  'weather_stn_long': 4.76819,
  'weather_stn_name': 'MeteoMartignan'},
 {'weather_stn_id': 817901,
  'weather_stn_lat': 40.61234,
  'weather_stn_long': 22.966715,
  'weather_stn_name': 'test20'},
 {'weather_stn_id': 850196,
  'weather_stn_lat': 44.763085,
  'weather_stn_long': -108.741988,
  'weather_stn_name': 'Powell High School Panther Prognosticator'},
 {'weather_stn_id': 850212,
  'weather_stn_lat': 31.406818,
  'weather_stn_long': 73.120028,
  'weather_stn_name': 'Beacon House School System'},
 {'weather_stn_id': 858983,
  'weather_stn_lat': 51.579585,
  'weather_stn_long': -0.28202,
  'weather_stn_name': 'SJPS Weather Station '},
 {'weather_stn_id': 860212,
  'weather_stn_lat': -30.058211,
  'weather_stn_long': -51.173452,
  'weather_stn_name': 'LTIGWeatherStation'},
 {'weather_stn_id': 903578,
  'weather_stn_lat': 23.54132,
  'weather_stn_long': 41.090923,
  'weather_stn_name': 'eolos'},
 {'weather_stn_id': 903675,
  'weather_stn_lat': 60.882073,
  'weather_stn_long': 11.562468,
  'weather_stn_name': 'EK-WeatherStation'},
 {'weather_stn_id': 906364,
  'weather_stn_lat': 54.315,
  'weather_stn_long': -130.3208,
  'weather_stn_name': 'Prince Rupert Weather Station'},
 {'weather_stn_id': 927079,
  'weather_stn_lat': -33.439168,
  'weather_stn_long': -70.657827,
  'weather_stn_name': 'weather'},
 {'weather_stn_id': 965816,
  'weather_stn_lat': 63.401104,
  'weather_stn_long': 10.430993,
  'weather_stn_name': 'Steindal Weather'},
 {'weather_stn_id': 966583,
  'weather_stn_lat': -28.95078,
  'weather_stn_long': -49.468256,
  'weather_stn_name': 'UFSC'},
 {'weather_stn_id': 970027,
  'weather_stn_lat': 40.619473,
  'weather_stn_long': 17.616081,
  'weather_stn_name': 'test01'},
 {'weather_stn_id': 989061,
  'weather_stn_lat': 22.315232,
  'weather_stn_long': 70.816118,
  'weather_stn_name': 'Test_Weather'},
 {'weather_stn_id': 1002485,
  'weather_stn_lat': 51.074739,
  'weather_stn_long': -114.070677,
  'weather_stn_name': 'Ecole de la Rose sauvage, Calgary, Canada'},
 {'weather_stn_id': 1018801,
  'weather_stn_lat': 45.828896,
  'weather_stn_long': 20.468645,
  'weather_stn_name': 'Djura3'},
 {'weather_stn_id': 1023840,
  'weather_stn_lat': 45.828896,
  'weather_stn_long': 20.468645,
  'weather_stn_name': 'Djura'},
 {'weather_stn_id': 1032386,
  'weather_stn_lat': -21.220144,
  'weather_stn_long': -47.81668,
  'weather_stn_name': 'Inventor'},
 {'weather_stn_id': 1042161,
  'weather_stn_lat': 53.380281,
  'weather_stn_long': -2.118961,
  'weather_stn_name': 'Test Weather Station'},
 {'weather_stn_id': 1054592,
  'weather_stn_lat': 40.292689,
  'weather_stn_long': 21.789313,
  'weather_stn_name': 'Aeolus'},
 {'weather_stn_id': 1058817,
  'weather_stn_lat': 7.267903,
  'weather_stn_long': 80.692329,
  'weather_stn_name': 'Hill City SL'},
 {'weather_stn_id': 1072679,
  'weather_stn_lat': 37.2152,
  'weather_stn_long': 93.2826,
  'weather_stn_name': 'OTC-NET'},
 {'weather_stn_id': 1072737,
  'weather_stn_lat': 35.212923,
  'weather_stn_long': 26.109291,
  'weather_stn_name': '3rd_Primary_School_of_Sitia'},
 {'weather_stn_id': 1073533,
  'weather_stn_lat': 52.412773,
  'weather_stn_long': 20.931398,
  'weather_stn_name': 'Stacja_STO35'},
 {'weather_stn_id': 1100597,
  'weather_stn_lat': 35.771804,
  'weather_stn_long': -78.66629,
  'weather_stn_name': 'Wake STEM ECHS Weather Station'},
 {'weather_stn_id': 1101852,
  'weather_stn_lat': 52.375235,
  'weather_stn_long': 20.927556,
  'weather_stn_name': 'Jablonna Szkolna 2'},
 {'weather_stn_id': 1111673,
  'weather_stn_lat': 46.198645,
  'weather_stn_long': 6.172578,
  'weather_stn_name': 'lgbmsweather'},
 {'weather_stn_id': 1158690,
  'weather_stn_lat': 37.727497,
  'weather_stn_long': -121.869422,
  'weather_stn_name': 'QLS Aramona Weather Station'},
 {'weather_stn_id': 1185626,
  'weather_stn_lat': 48.544859,
  'weather_stn_long': 2.633721,
  'weather_stn_name': 'StationElsa'},
 {'weather_stn_id': 1187110,
  'weather_stn_lat': 56.122828,
  'weather_stn_long': 12.301261,
  'weather_stn_name': 'Gilbjergskolen'},
 {'weather_stn_id': 1195685,
  'weather_stn_lat': 14.079444,
  'weather_stn_long': 100.61196,
  'weather_stn_name': 'RSWeatherLab'},
 {'weather_stn_id': 1207198,
  'weather_stn_lat': 5.71583,
  'weather_stn_long': 72.92722,
  'weather_stn_name': 'Test School weather station REYES PATRIA'},
 {'weather_stn_id': 1211299,
  'weather_stn_lat': 52.570474,
  'weather_stn_long': 6.624213,
  'weather_stn_name': 'Greijdanus-Weather'},
 {'weather_stn_id': 1212453,
  'weather_stn_lat': 51.547657,
  'weather_stn_long': -0.109745,
  'weather_stn_name': 'St Mary Magdalene Academy'},
 {'weather_stn_id': 1247443,
  'weather_stn_lat': 46.622472,
  'weather_stn_long': 5.211796,
  'weather_stn_name': 'MeteoPi71'},
 {'weather_stn_id': 1253673,
  'weather_stn_lat': 41.722222,
  'weather_stn_long': -92.349629,
  'weather_stn_name': 'CHS_Main01'},
 {'weather_stn_id': 1256821,
  'weather_stn_lat': -37.973283,
  'weather_stn_long': 176.976029,
  'weather_stn_name': 'Trident Weather'},
 {'weather_stn_id': 1260922,
  'weather_stn_lat': 8.145496,
  'weather_stn_long': 5.162386,
  'weather_stn_name': 'TAICO Digital Weather'},
 {'weather_stn_id': 1261471,
  'weather_stn_lat': 52.19513,
  'weather_stn_long': 0.131768,
  'weather_stn_name': 'Pi Towers'},
 {'weather_stn_id': 1269584,
  'weather_stn_lat': 35.0853,
  'weather_stn_long': 106.6056,
  'weather_stn_name': 'Test Central New Mexico College Weather Station'},
 {'weather_stn_id': 1280720,
  'weather_stn_lat': 55.947735,
  'weather_stn_long': -4.551631,
  'weather_stn_name': 'TheAmazingGinger'},
 {'weather_stn_id': 1287993,
  'weather_stn_lat': 52.448646,
  'weather_stn_long': 1.724796,
  'weather_stn_name': 'Roofie'},
 {'weather_stn_id': 1301424,
  'weather_stn_lat': 40.586258,
  'weather_stn_long': -98.38987,
  'weather_stn_name': 'Hastings High School'},
 {'weather_stn_id': 1307290,
  'weather_stn_lat': 47.41094,
  'weather_stn_long': 9.729244,
  'weather_stn_name': 'BRG/BORG Schoren Dornbirn'},
 {'weather_stn_id': 1346157,
  'weather_stn_lat': 1.542145,
  'weather_stn_long': 110.326207,
  'weather_stn_name': 'RPI Solar'},
 {'weather_stn_id': 1355086,
  'weather_stn_lat': 40.597778,
  'weather_stn_long': 22.969889,
  'weather_stn_name': '32GEL_WEATHER_STATION'},
 {'weather_stn_id': 1356217,
  'weather_stn_lat': -0.152797,
  'weather_stn_long': 52.782151,
  'weather_stn_name': 'AHS-1'},
 {'weather_stn_id': 1366410,
  'weather_stn_lat': 40.377537,
  'weather_stn_long': -80.045021,
  'weather_stn_name': 'IBTeam'},
 {'weather_stn_id': 1373810,
  'weather_stn_lat': 53.906402,
  'weather_stn_long': -1.749303,
  'weather_stn_name': 'bweather'},
 {'weather_stn_id': 1406723,
  'weather_stn_lat': -26.10088,
  'weather_stn_long': 28.19728,
  'weather_stn_name': 'ZS6SSG_WS'},
 {'weather_stn_id': 1432008,
  'weather_stn_lat': 40.667224,
  'weather_stn_long': 22.900797,
  'weather_stn_name': 'Weather St Thess EPAL  Kordeliou'},
 {'weather_stn_id': 1483831,
  'weather_stn_lat': 37.388557,
  'weather_stn_long': 126.995946,
  'weather_stn_name': 'DeokJang Middle School Weather station'},
 {'weather_stn_id': 1519124,
  'weather_stn_lat': -32.55,
  'weather_stn_long': 115.7,
  'weather_stn_name': 'Frederick Irwin Anglican School Weather Station 01'},
 {'weather_stn_id': 1546872,
  'weather_stn_lat': 58.45468,
  'weather_stn_long': -78.10139,
  'weather_stn_name': 'ColdWeatherOrNot'},
 {'weather_stn_id': 1551853,
  'weather_stn_lat': 48.9897,
  'weather_stn_long': 2.819181,
  'weather_stn_name': 'test school weather station'},
 {'weather_stn_id': 1569432,
  'weather_stn_lat': 38.280918,
  'weather_stn_long': 21.790813,
  'weather_stn_name': 'pgppRPWS'},
 {'weather_stn_id': 1569473,
  'weather_stn_lat': 39.566543,
  'weather_stn_long': 21.771845,
  'weather_stn_name': '7thHSWeatherStation'},
 {'weather_stn_id': 1572018,
  'weather_stn_lat': -20.672725,
  'weather_stn_long': -46.262987,
  'weather_stn_name': 'rancho'},
 {'weather_stn_id': 1589231,
  'weather_stn_lat': 48.9897,
  'weather_stn_long': 2.819181,
  'weather_stn_name': 'coba'},
 {'weather_stn_id': 1591042,
  'weather_stn_lat': 52.190844,
  'weather_stn_long': 0.163486,
  'weather_stn_name': 'CB1_3TD'},
 {'weather_stn_id': 1592317,
  'weather_stn_lat': 46.815696,
  'weather_stn_long': -71.316568,
  'weather_stn_name': 'Station météo La Camaradière'},
 {'weather_stn_id': 1598227,
  'weather_stn_lat': 39.563132,
  'weather_stn_long': 21.776344,
  'weather_stn_name': '1ekTrikalon'},
 {'weather_stn_id': 1604642,
  'weather_stn_lat': 40.238936,
  'weather_stn_long': 23.290841,
  'weather_stn_name': 'GENERAL LYCEUM OF NEA MOUDANIA'},
 {'weather_stn_id': 1615966,
  'weather_stn_lat': -35.140833,
  'weather_stn_long': 138.492331,
  'weather_stn_name': 'Cardijn'},
 {'weather_stn_id': 1621459,
  'weather_stn_lat': 54.125221,
  'weather_stn_long': -2.761019,
  'weather_stn_name': 'Main'},
 {'weather_stn_id': 1624210,
  'weather_stn_lat': 37.568611,
  'weather_stn_long': -84.296389,
  'weather_stn_name': 'BCWeather'},
 {'weather_stn_id': 1648902,
  'weather_stn_lat': 52.197834,
  'weather_stn_long': 0.125366,
  'weather_stn_name': 'ACRG_ROOF'},
 {'weather_stn_id': 1672266,
  'weather_stn_lat': 33.578219,
  'weather_stn_long': -101.860862,
  'weather_stn_name': 'LHSWest'},
 {'weather_stn_id': 1672572,
  'weather_stn_lat': 51.14931,
  'weather_stn_long': 0.87808,
  'weather_stn_name': 'Ashford'},
 {'weather_stn_id': 1674106,
  'weather_stn_lat': 39.372212,
  'weather_stn_long': -104.85609,
  'weather_stn_name': 'CRMSWeatherStation'},
 {'weather_stn_id': 1682287,
  'weather_stn_lat': 39.873945,
  'weather_stn_long': 25.274616,
  'weather_stn_name': 'MeteoMoudros'},
 {'weather_stn_id': 1683740,
  'weather_stn_lat': 39.871621,
  'weather_stn_long': -4.024121,
  'weather_stn_name': 'ieselgreco weather station'},
 {'weather_stn_id': 1684223,
  'weather_stn_lat': 35.1465,
  'weather_stn_long': -106.8921,
  'weather_stn_name': 'Smart Lab WS'},
 {'weather_stn_id': 1685180,
  'weather_stn_lat': 31.251947,
  'weather_stn_long': -93.982168,
  'weather_stn_name': 'West Sabine'},
 {'weather_stn_id': 1704961,
  'weather_stn_lat': 40.658055,
  'weather_stn_long': 22.921949,
  'weather_stn_name': 'Ampelokhpoi Weather Station'},
 {'weather_stn_id': 1724573,
  'weather_stn_lat': 46.815696,
  'weather_stn_long': -71.316568,
  'weather_stn_name': 'CamaWeather'},
 {'weather_stn_id': 1737372,
  'weather_stn_lat': 22.396428,
  'weather_stn_long': 114.109497,
  'weather_stn_name': 'DBS Weather Station'},
 {'weather_stn_id': 1738038,
  'weather_stn_lat': 45,
  'weather_stn_long': 90,
  'weather_stn_name': 'test'},
 {'weather_stn_id': 1764846,
  'weather_stn_lat': 43.46992,
  'weather_stn_long': -3.809037,
  'weather_stn_name': 'DGB'},
 {'weather_stn_id': 1798309,
  'weather_stn_lat': 43.646725,
  'weather_stn_long': -116.282671,
  'weather_stn_name': 'Discovery Elementary'},
 {'weather_stn_id': 1803944,
  'weather_stn_lat': 53.275787,
  'weather_stn_long': -6.382476,
  'weather_stn_name': 'scheart'},
 {'weather_stn_id': 1806483,
  'weather_stn_lat': -41.19,
  'weather_stn_long': 174.94,
  'weather_stn_name': 'Naenae College'},
 {'weather_stn_id': 1806941,
  'weather_stn_lat': -90,
  'weather_stn_long': -180,
  'weather_stn_name': 'CollegeKarr'},
 {'weather_stn_id': 1826435,
  'weather_stn_lat': 45.526646,
  'weather_stn_long': -122.693621,
  'weather_stn_name': 'metropolitan learning center'},
 {'weather_stn_id': 1853105,
  'weather_stn_lat': 43.4483,
  'weather_stn_long': 79.78355,
  'weather_stn_name': 'Crusaders'},
 {'weather_stn_id': 1880895,
  'weather_stn_lat': 36.823041,
  'weather_stn_long': 21.705036,
  'weather_stn_name': 'Methoni_station'},
 {'weather_stn_id': 1881560,
  'weather_stn_lat': 51.899058,
  'weather_stn_long': -2.076119,
  'weather_stn_name': 'Wallace'},
 {'weather_stn_id': 1888113,
  'weather_stn_lat': 54.212161,
  'weather_stn_long': 24.570283,
  'weather_stn_name': 'Stotele'},
 {'weather_stn_id': 1889138,
  'weather_stn_lat': -23.974113,
  'weather_stn_long': -48.889883,
  'weather_stn_name': 'estacao_itapeva'},
 {'weather_stn_id': 1937053,
  'weather_stn_lat': 36.958631,
  'weather_stn_long': 26.963872,
  'weather_stn_name': 'Epal Kalymnou Weather Station'},
 {'weather_stn_id': 1951160,
  'weather_stn_lat': 38.114566,
  'weather_stn_long': 23.769887,
  'weather_stn_name': 'weather-26dim-01'},
 {'weather_stn_id': 1997888,
  'weather_stn_lat': 1.293592,
  'weather_stn_long': 103.81238,
  'weather_stn_name': 'QTSS Weather Station'},
 {'weather_stn_id': 2015652,
  'weather_stn_lat': 10,
  'weather_stn_long': 10,
  'weather_stn_name': 'Explorer Test'},
 {'weather_stn_id': 2023852,
  'weather_stn_lat': 44.449412,
  'weather_stn_long': -92.266844,
  'weather_stn_name': 'Lake City Lincoln High School'},
 {'weather_stn_id': 2024689,
  'weather_stn_lat': 39.181796,
  'weather_stn_long': -84.36644,
  'weather_stn_name': 'SGS Chicken'},
 {'weather_stn_id': 2059087,
  'weather_stn_lat': 46.851525,
  'weather_stn_long': -71.424587,
  'weather_stn_name': 'SLI-Weather'},
 {'weather_stn_id': 2174090,
  'weather_stn_lat': 49.337148,
  'weather_stn_long': -123.161068,
  'weather_stn_name': 'WVSSWeather'},
 {'weather_stn_id': 2199879,
  'weather_stn_lat': 37.566441,
  'weather_stn_long': 22.799358,
  'weather_stn_name': 'Esperino Nafplio Weather Station'},
 {'weather_stn_id': 2237982,
  'weather_stn_lat': 52.205,
  'weather_stn_long': 0.119,
  'weather_stn_name': 'RaspberryHigh-01'},
 {'weather_stn_id': 2263715,
  'weather_stn_lat': 54.733041,
  'weather_stn_long': 25.229961,
  'weather_stn_name': 'Gabijos gimnazija'},
 {'weather_stn_id': 2278828,
  'weather_stn_lat': 38.598677,
  'weather_stn_long': -9.096835,
  'weather_stn_name': 'Colegio Atlantico'},
 {'weather_stn_id': 2279628,
  'weather_stn_lat': 40.405667,
  'weather_stn_long': -3.703272,
  'weather_stn_name': 'Cervantes_Madrid'},
 {'weather_stn_id': 2287271,
  'weather_stn_lat': 49.3479,
  'weather_stn_long': -123.184529,
  'weather_stn_name': 'Collingwood School'},
 {'weather_stn_id': 2328257,
  'weather_stn_lat': 18.712247,
  'weather_stn_long': 98.999583,
  'weather_stn_name': 'CDSC1'},
 {'weather_stn_id': 2328632,
  'weather_stn_lat': 51.459813,
  'weather_stn_long': -0.939262,
  'weather_stn_name': 'Reading TVP'},
 {'weather_stn_id': 2330964,
  'weather_stn_lat': 51.459759,
  'weather_stn_long': -0.939627,
  'weather_stn_name': 'OracleHQ'},
 {'weather_stn_id': 2331220,
  'weather_stn_lat': 45.828896,
  'weather_stn_long': 20.468645,
  'weather_stn_name': 'Djura Jaksic'},
 {'weather_stn_id': 2331231,
  'weather_stn_lat': 51.459759,
  'weather_stn_long': -0.939627,
  'weather_stn_name': 'OracleTVP'},
 {'weather_stn_id': 2336391,
  'weather_stn_lat': 35.312219,
  'weather_stn_long': 25.13685,
  'weather_stn_name': '5gym-meteo'},
 {'weather_stn_id': 2336406,
  'weather_stn_lat': 60.516397,
  'weather_stn_long': 10.295881,
  'weather_stn_name': 'Awesome TIP Bjoneroa U-trinn 2016/17'},
 {'weather_stn_id': 2339048,
  'weather_stn_lat': 48.13197,
  'weather_stn_long': -101.243404,
  'weather_stn_name': 'Roll Magi'},
 {'weather_stn_id': 2339720,
  'weather_stn_lat': 28.48,
  'weather_stn_long': -16.31,
  'weather_stn_name': 'La Salle La Laguna'},
 {'weather_stn_id': 2340156,
  'weather_stn_lat': 42.006509,
  'weather_stn_long': -91.67233,
  'weather_stn_name': 'Isaac Newton Weather Station'},
 {'weather_stn_id': 2340898,
  'weather_stn_lat': 41.090923,
  'weather_stn_long': 23.54132,
  'weather_stn_name': 'eolos2'},
 {'weather_stn_id': 2341664,
  'weather_stn_lat': 4.629829,
  'weather_stn_long': -74.148614,
  'weather_stn_name': 'WeatherStation FTRV'}]

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,332评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,508评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 157,812评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,607评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,728评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,919评论 1 290
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,071评论 3 410
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,802评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,256评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,576评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,712评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,389评论 4 332
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,032评论 3 316
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,798评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,026评论 1 266
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,473评论 2 360
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,606评论 2 350

推荐阅读更多精彩内容