]> gitweb.michael.orlitzky.com - dead/census-tools.git/blobdiff - www/maps/maps/controllers/directions.py
Fixed the performance of the distance CSV generation.
[dead/census-tools.git] / www / maps / maps / controllers / directions.py
index 4c765a3dad217bc4e428eb73122a4a073fe5bae3..0cd278ffa6893dfcbf741037339c2c289b77c5f0 100644 (file)
@@ -86,3 +86,33 @@ class DirectionsController(BaseController):
         response.headers['Content-disposition'] = 'attachment; filename=routes.kml'
         return doc.to_kml()
 
+
+    def directions_result_to_csv(self, result):
+        rows = []
+
+        for trip in result['trips']:
+
+            for route in trip['routes']:
+                route_start = self.get_route_address(route, True)
+                route_end   = self.get_route_address(route, False)
+                row = '"' + route_start + '"'
+                row += ', '
+                row += '"' + route_end   + '"'
+                row += ', '
+                row += str(float(route['distance']['value']) / 1000)
+                rows.append(row)
+                
+        return rows
+
+    
+    def distances(self):
+        directions_array = json.loads(request.POST['data'])
+        csv_rows = []
+        
+        for result in directions_array:
+            csv_rows += self.directions_result_to_csv(result)
+        
+        response.content_type = 'text/csv'
+        response.headers['Content-disposition'] = 'attachment; filename=distances.csv'
+        return "\n".join(csv_rows)
+