31 lines
1.3 KiB
Python
Raw Normal View History

2012-12-02 00:03:21 +01:00
# -*- coding: utf-8 -*-
"""
***************************************************************************
2012-12-03 11:09:54 +01:00
util.py
2012-12-02 00:03:21 +01:00
---------------------
Date : November 2012
2012-12-03 09:07:13 +01:00
Copyright : (C) 2012 by David Winslow
Email : dwins at opengeo dot com
2012-12-02 00:03:21 +01:00
***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************
"""
2012-12-03 09:07:13 +01:00
__author__ = 'David Winslow'
2012-12-02 00:03:21 +01:00
__date__ = 'November 2012'
2012-12-03 09:07:13 +01:00
__copyright__ = '(C) 2012, David Winslow'
2012-12-02 00:03:21 +01:00
# This will get replaced with a git SHA1 when you do a git archive
__revision__ = '$Format:%H$'
# shapefile_and_friends = None
# shapefile_plus_sidecars = shapefile_and_friends("test/data/states")
def shapefile_and_friends(path):
return dict((ext, path + "." + ext) for ext in ['shx', 'shp', 'dbf', 'prj'])