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
|
#! /usr/bin/env python
#
#
# Calculates coordinates of window corners of given raster dataset.
# It's just a simple helper for testing and debugging WKT Raster.
#
##############################################################################
# Copyright (C) 2009 Mateusz Loskot <mateusz@loskot.net>
#
# 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.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software Foundation,
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
##############################################################################
from __future__ import print_function
from osgeo import gdal
from osgeo import osr
import osgeo.gdalconst as gdalc
import sys
if len(sys.argv) != 6:
print("Usage: window.py <raster> <x> <y> <xsize> <ysize>")
print("\traster - GDAL supported dataset")
print("\tx - column - 1..N where N is raster X dimension")
print("\ty - row - 1..N where N is raster Y dimension")
print("\txsize - x-dimension of requested window (xsize <= xsize of raster - x)")
print("\tysize - y-dimension of requested window (ysize <= ysize of raster - y)")
sys.exit(0)
def is_georeferenced(gt):
if gt[0] == 0.0 and gt[1] == 1.0 and gt[3] == 0.0 and gt[5] == 1.0:
return False
else:
return True
def calculate_corner(gt, x, y):
if is_georeferenced(gt):
xgeo = gt[0] + gt[1] * x + gt[2] * y
ygeo = gt[3] + gt[4] * x + gt[5] * y
else:
xgeo = x
xgeo = y
return (xgeo, ygeo)
infile = sys.argv[1]
inxoff = int(sys.argv[2])
inyoff = int(sys.argv[3])
inxsize = int(sys.argv[4])
inysize = int(sys.argv[5])
print("=== INPUT ===")
print("File: %s" % infile)
print("Window:")
print("- upper-left: %d x %d" % (inxoff, inyoff))
print("- dimensions: %d x %d" % (inxsize, inysize))
ds = gdal.Open(infile, gdalc.GA_ReadOnly);
if ds is None:
sys.exit('Cannot open input file: ' + str(infile))
xsize = ds.RasterXSize
ysize = ds.RasterYSize
print("=== RASTER ===")
print("- dimensions: %d x %d" % (xsize, ysize))
if inxsize > xsize or inysize > ysize or inxoff > xsize or inyoff > ysize:
print("Invalid size of input window")
sys.exit(1)
gt = ds.GetGeoTransform()
res = ( gt[1], gt[5] ) # X/Y pixel resolution
ulp = ( gt[0], gt[3] ) # X/Y upper left pixel corner
rot = ( gt[2], gt[4] ) # X-/Y-axis rotation
if is_georeferenced(gt):
print("- pixel size:", res)
print("- upper left:", ulp)
print("- rotation :", rot)
else:
print("No georeferencing is available")
sys.exit(1)
print("=== WINDOW ===")
print("- upper-left :", calculate_corner(gt, inxoff, inyoff))
print("- lower-left :", calculate_corner(gt, inxoff, ysize))
print("- upper-right:", calculate_corner(gt, xsize, inyoff))
print("- lower-right:", calculate_corner(gt, xsize, ysize))
print("- center :", calculate_corner(gt, xsize/2, ysize/2))
|