Exemplo n.º 1
0
 def get(self, ath_id):
     geojsonlines = sp.get_heatmap_lines(engine, int(ath_id))
     return output_json(geojsonlines, 200, 600)
Exemplo n.º 2
0
 def get(self, ath_id):
     geojsonlines = sp.get_heatmap_lines(
         engine, int(ath_id))
     return output_json(geojsonlines, 200, 600)
Exemplo n.º 3
0
 def get(self, ath_id):
     geojsonPoints = sp.get_heatmap_lines(engine, int(ath_id))
     gc.collect()
     return output_json(geojsonPoints, 200, 600)
Exemplo n.º 4
0
 def get(self, ath_id):
     geojsonPoints = sp.get_heatmap_lines(
         engine, int(ath_id))
     gc.collect()
     return output_json(geojsonPoints, 200, 600)