Package madrona :: Package heatmap :: Module urls
[hide private]

Source Code for Module madrona.heatmap.urls

1  from django.conf.urls.defaults import * 
2  from madrona.heatmap.views import * 
3   
4  urlpatterns = patterns('', 
5      url(r'^collection/geotiff/(?P<collection_uids>(\w+,?)+)/$', overlap_geotiff_response, name='heatmap-collection-geotiff'), 
6      url(r'^collection/kmz/(?P<collection_uids>(\w+,?)+)/$', overlap_kmz_response, name='heatmap-collection-kmz'), 
7  ) 
8