コード例 #1
0
 def get(self, ath_id):
     geojsonlines = sp.get_heatmap_lines(engine, int(ath_id))
     return output_json(geojsonlines, 200, 600)
コード例 #2
0
ファイル: app.py プロジェクト: ryanbaumann/athletedataviz
 def get(self, ath_id):
     geojsonlines = sp.get_heatmap_lines(
         engine, int(ath_id))
     return output_json(geojsonlines, 200, 600)
コード例 #3
0
 def get(self, ath_id):
     geojsonPoints = sp.get_heatmap_lines(engine, int(ath_id))
     gc.collect()
     return output_json(geojsonPoints, 200, 600)
コード例 #4
0
ファイル: app.py プロジェクト: ryanbaumann/athletedataviz
 def get(self, ath_id):
     geojsonPoints = sp.get_heatmap_lines(
         engine, int(ath_id))
     gc.collect()
     return output_json(geojsonPoints, 200, 600)