/usr/bin/mkgraticule.py is in python-gdal 1.11.3+dfsg-3build2.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 | #! /usr/bin/python
###############################################################################
# $Id: mkgraticule.py 24538 2012-06-04 18:30:34Z antonio $
#
# Project: OGR Python samples
# Purpose: Produce a graticule (grid) dataset.
# Author: Frank Warmerdam, warmerdam@pobox.com
#
###############################################################################
# Copyright (c) 2003, Frank Warmerdam <warmerdam@pobox.com>
#
# Permission is hereby granted, free of charge, to any person obtaining a
# copy of this software and associated documentation files (the "Software"),
# to deal in the Software without restriction, including without limitation
# the rights to use, copy, modify, merge, publish, distribute, sublicense,
# and/or sell copies of the Software, and to permit persons to whom the
# Software is furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included
# in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
# DEALINGS IN THE SOFTWARE.
###############################################################################
try:
from osgeo import osr
from osgeo import ogr
except ImportError:
import osr
import ogr
import string
import sys
#############################################################################
def float_range(*args):
start = 0.0
step = 1.0
if (len(args) == 1):
(stop,) = args
elif (len(args) == 2):
(start, stop) = args
elif (len(args) == 3):
(start, stop, step) = args
else:
raise TypeError("float_range needs 1-3 float arguments")
the_range = []
steps = (stop-start)/step
if steps != int(steps):
steps = steps + 1.0
for i in range(int(steps)):
the_range.append(i*step+start)
return the_range
#############################################################################
def Usage():
print ('Usage: mkgraticule [-connected] [-s stepsize] [-substep substepsize]')
print (' [-t_srs srs] [-range xmin ymin xmax ymax] outfile')
print('')
sys.exit(1)
#############################################################################
# Argument processing.
t_srs = None
stepsize = 5.0
substepsize = 5.0
connected = 0
outfile = None
xmin = -180
xmax = 180
ymin = -90
ymax = 90
i = 1
while i < len(sys.argv):
if sys.argv[i] == '-connected':
connected = 1
elif sys.argv[i] == '-t_srs':
i = i + 1
t_srs = sys.argv[i]
elif sys.argv[i] == '-s':
i = i + 1
stepsize = float(sys.argv[i])
elif sys.argv[i] == '-substep':
i = i + 1
substepsize = float(sys.argv[i])
elif sys.argv[i] == '-range':
xmin = float(sys.argv[i+1])
ymin = float(sys.argv[i+2])
xmax = float(sys.argv[i+3])
ymax = float(sys.argv[i+4])
i = i + 4
elif sys.argv[i][0] == '-':
Usage()
elif outfile is None:
outfile = sys.argv[i]
else:
Usage()
i = i + 1
if outfile is None:
outfile = "graticule.shp"
if substepsize > stepsize:
substepsize = stepsize
#############################################################################-
# Do we have an alternate SRS?
ct = None
if t_srs is not None:
t_srs_o = osr.SpatialReference()
t_srs_o.SetFromUserInput( t_srs )
s_srs_o = osr.SpatialReference()
s_srs_o.SetFromUserInput( 'WGS84' )
ct = osr.CoordinateTransformation( s_srs_o, t_srs_o )
else:
t_srs_o = osr.SpatialReference()
t_srs_o.SetFromUserInput( 'WGS84' )
#############################################################################-
# Create graticule file.
drv = ogr.GetDriverByName( 'ESRI Shapefile' )
try:
drv.DeleteDataSource( outfile )
except:
pass
ds = drv.CreateDataSource( outfile )
layer = ds.CreateLayer( 'out', geom_type = ogr.wkbLineString,
srs = t_srs_o )
#########################################################################
# Not connected case. Produce individual segments are these are going to
# be more resilent in the face of reprojection errors.
if not connected:
#########################################################################
# Generate lines of latitude.
feat = ogr.Feature( feature_def = layer.GetLayerDefn() )
geom = ogr.Geometry( type = ogr.wkbLineString )
for lat in float_range(ymin,ymax+stepsize/2,stepsize):
for long_ in float_range(xmin,xmax-substepsize/2,substepsize):
geom.SetPoint( 0, long_, lat )
geom.SetPoint( 1, long_+substepsize, lat )
err = 0
if ct is not None:
err = geom.Transform( ct )
if err is 0:
feat.SetGeometry( geom )
layer.CreateFeature( feat )
#########################################################################
# Generate lines of longitude
for long_ in float_range(xmin,xmax+stepsize/2,stepsize):
for lat in float_range(ymin,ymax-substepsize/2,substepsize):
geom.SetPoint( 0, long_, lat )
geom.SetPoint( 1, long_, lat+substepsize )
err = 0
if ct is not None:
err = geom.Transform( ct )
if err is 0:
feat.SetGeometry( geom )
layer.CreateFeature( feat )
#########################################################################
# Connected case - produce one polyline for each complete line of latitude
# or longitude.
if connected:
#########################################################################
# Generate lines of latitude.
feat = ogr.Feature( feature_def = layer.GetLayerDefn() )
for lat in float_range(ymin,ymax+stepsize/2,stepsize):
geom = ogr.Geometry( type = ogr.wkbLineString )
for long_ in float_range(xmin,xmax+substepsize/2,substepsize):
geom.AddPoint( long_, lat )
err = 0
if ct is not None:
err = geom.Transform( ct )
if err is 0:
feat.SetGeometry( geom )
layer.CreateFeature( feat )
#########################################################################
# Generate lines of longitude
for long_ in float_range(xmin,xmax+stepsize/2,stepsize):
geom = ogr.Geometry( type = ogr.wkbLineString )
for lat in float_range(ymin,ymax+substepsize/2,substepsize):
geom.AddPoint( long_, lat )
err = 0
if ct is not None:
err = geom.Transform( ct )
if err is 0:
feat.SetGeometry( geom )
layer.CreateFeature( feat )
#############################################################################
# Cleanup
feat = None
geom = None
ds.Destroy()
ds = None
|