Hot-keys on this page

r m x p   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

1

2

3

4

5

6

7

from django.conf.urls.defaults import * 

from madrona.heatmap.views import * 

 

urlpatterns = patterns('', 

    url(r'^collection/geotiff/(?P<collection_uids>(\w+,?)+)/$', overlap_geotiff_response, name='heatmap-collection-geotiff'), 

    url(r'^collection/kmz/(?P<collection_uids>(\w+,?)+)/$', overlap_kmz_response, name='heatmap-collection-kmz'), 

)