This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
from django import template | |
from django.template.loader import get_template | |
from django.conf import settings | |
register = template.Library() | |
@register.simple_tag() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import fiona | |
import os | |
import rtree | |
from collections import defaultdict | |
from shapely.geometry import shape | |
CONTAINS = 'contains' | |
CROSSES = 'crosses' | |
DISJOINT = 'disjoint' |