This file contains 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
from sqlalchemy import Column, Table, String, Text, Integer, types, ForeignKey | |
from sqlalchemy.orm import relationship | |
from ckan import model | |
from ckan.model import meta, Package | |
from shapely.geometry import asShape | |
import json | |
import logging |