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 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578
|
# !/usr/bin/env python3
###############################################################################
# $Id$
#
# Project: GDAL utils
# Purpose: Query information about a pixel given its location
# A direct port of apps/gdallocationinfo.cpp
# Author: Idan Miara <idan@miara.com>
#
###############################################################################
# Copyright (c) 2010, Even Rouault <even@spatialys.com>
# Copyright (c) 2021, Idan Miara <idan@miara.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.
###############################################################################
import sys
import textwrap
from enum import Enum, auto
from numbers import Real
from typing import Optional, Sequence, Tuple, Union
import numpy as np
from osgeo import gdal, gdalconst, osr
from osgeo.gdal_array import BandRasterIONumPy
from osgeo_utils.auxiliary.array_util import ArrayLike, ArrayOrScalarLike
from osgeo_utils.auxiliary.base import is_path_like
from osgeo_utils.auxiliary.gdal_argparse import GDALArgumentParser, GDALScript
from osgeo_utils.auxiliary.numpy_util import GDALTypeCodeAndNumericTypeCodeFromDataSet
from osgeo_utils.auxiliary.osr_util import (
OAMS_AXIS_ORDER,
AnySRS,
get_axis_order_from_gis_order,
get_srs,
get_transform,
transform_points,
)
from osgeo_utils.auxiliary.util import (
PathOrDS,
get_band_nums,
get_bands,
get_scales_and_offsets,
open_ds,
)
class LocationInfoSRS(Enum):
PixelLine = auto()
SameAsDS_SRS = auto()
SameAsDS_SRS_GeogCS = auto()
class LocationInfoOutput(Enum):
PixelLineVal = auto()
PixelLineValVerbose = auto()
ValOnly = auto()
XML = auto()
LifOnly = auto()
Quiet = auto()
CoordinateTransformationOrSRS = Optional[
Union[osr.CoordinateTransformation, LocationInfoSRS, AnySRS]
]
def gdallocationinfo(
filename_or_ds: PathOrDS,
x: ArrayOrScalarLike,
y: ArrayOrScalarLike,
srs: CoordinateTransformationOrSRS = None,
axis_order: Optional[OAMS_AXIS_ORDER] = None,
open_options: Optional[dict] = None,
ovr_idx: Optional[int] = None,
band_nums: Optional[Sequence[int]] = None,
inline_xy_replacement: bool = False,
return_ovr_pixel_line: bool = False,
transform_round_digits: Optional[float] = None,
allow_xy_outside_extent: bool = True,
pixel_offset: Real = -0.5,
line_offset: Real = -0.5,
resample_alg=gdalconst.GRIORA_NearestNeighbour,
quiet_mode: bool = True,
) -> Tuple[np.ndarray, np.ndarray, np.ndarray]:
ds = open_ds(filename_or_ds, open_options=open_options)
filename = filename_or_ds if is_path_like(filename_or_ds) else ""
if ds is None:
raise Exception(f"Could not open {filename}.")
if not isinstance(x, ArrayLike.__args__):
x = [x]
if not isinstance(y, ArrayLike.__args__):
y = [y]
if len(x) != len(y):
raise Exception(f"len(x)={len(x)} should be the same as len(y)={len(y)}")
point_count = len(x)
dtype = np.float64
if not isinstance(x, np.ndarray) or not isinstance(y, np.ndarray):
x = np.array(x, dtype=dtype)
y = np.array(y, dtype=dtype)
inline_xy_replacement = True
if srs is None:
srs = LocationInfoSRS.PixelLine
# Build Spatial Reference object based on coordinate system, fetched from the opened dataset
if srs != LocationInfoSRS.PixelLine:
if srs != LocationInfoSRS.SameAsDS_SRS:
ds_srs = ds.GetSpatialRef()
ct = None
if isinstance(srs, osr.CoordinateTransformation):
ct = srs
else:
if srs == LocationInfoSRS.SameAsDS_SRS_GeogCS:
points_srs = ds_srs.CloneGeogCS()
else:
points_srs = get_srs(srs, axis_order=axis_order)
ct = get_transform(points_srs, ds_srs)
if ct is not None:
if not inline_xy_replacement:
x = x.copy()
y = y.copy()
inline_xy_replacement = True
transform_points(ct, x, y)
if transform_round_digits is not None:
x.round(transform_round_digits, out=x)
y.round(transform_round_digits, out=y)
# Read geotransform matrix and calculate corresponding pixel coordinates
geotransform = ds.GetGeoTransform()
inv_geotransform = gdal.InvGeoTransform(geotransform)
if inv_geotransform is None:
raise Exception("Failed InvGeoTransform()")
# can we inline this transformation ?
x, y = (
inv_geotransform[0] + inv_geotransform[1] * x + inv_geotransform[2] * y
), (inv_geotransform[3] + inv_geotransform[4] * x + inv_geotransform[5] * y)
inline_xy_replacement = True
xsize, ysize = ds.RasterXSize, ds.RasterYSize
bands = get_bands(ds, band_nums, ovr_idx=ovr_idx)
ovr_xsize, ovr_ysize = bands[0].XSize, bands[0].YSize
pixel_fact, line_fact = (
(ovr_xsize / xsize, ovr_ysize / ysize) if ovr_idx else (1, 1)
)
bnd_count = len(bands)
shape = (bnd_count, point_count)
np_dtype, np_dtype = GDALTypeCodeAndNumericTypeCodeFromDataSet(ds)
results = np.empty(shape=shape, dtype=np_dtype)
check_outside = not quiet_mode or not allow_xy_outside_extent
if check_outside and (
np.any(x < 0) or np.any(x >= xsize) or np.any(y < 0) or np.any(y >= ysize)
):
msg = "Passed coordinates are not in dataset extent!"
if not allow_xy_outside_extent:
raise Exception(msg)
elif not quiet_mode:
print(msg)
if pixel_fact == 1:
pixels_q = x
elif return_ovr_pixel_line:
x *= pixel_fact
pixels_q = x
else:
pixels_q = x * pixel_fact
if line_fact == 1:
lines_q = y
elif return_ovr_pixel_line:
y *= line_fact
lines_q = y
else:
lines_q = y * line_fact
buf_xsize = buf_ysize = 1
buf_type, typecode = GDALTypeCodeAndNumericTypeCodeFromDataSet(ds)
buf_obj = np.empty([buf_ysize, buf_xsize], dtype=typecode)
for idx, (pixel, line) in enumerate(zip(pixels_q, lines_q)):
for bnd_idx, band in enumerate(bands):
if (
BandRasterIONumPy(
band,
0,
pixel - 0.5,
line - 0.5,
1,
1,
buf_obj,
buf_type,
resample_alg,
None,
None,
)
== 0
):
results[bnd_idx][idx] = buf_obj[0][0]
is_scaled, scales, offsets = get_scales_and_offsets(bands)
if is_scaled:
for bnd_idx, (scale, offset) in enumerate(zip(scales, offsets)):
results[bnd_idx] = results[bnd_idx] * scale + offset
return x, y, results
def gdallocationinfo_util(
filename_or_ds: PathOrDS,
x: ArrayOrScalarLike,
y: ArrayOrScalarLike,
open_options: Optional[dict] = None,
band_nums: Optional[Sequence[int]] = None,
resample_alg=gdalconst.GRIORA_NearestNeighbour,
output_mode: Optional[LocationInfoOutput] = None,
**kwargs,
):
if output_mode is None:
output_mode = LocationInfoOutput.Quiet
if output_mode in [LocationInfoOutput.XML, LocationInfoOutput.LifOnly]:
raise Exception(
f"Sorry, output mode {output_mode} is not implemented yet. you may use the c++ version."
)
quiet_mode = output_mode == LocationInfoOutput.Quiet
print_mode = output_mode in [
LocationInfoOutput.ValOnly,
LocationInfoOutput.PixelLineVal,
LocationInfoOutput.PixelLineValVerbose,
]
inline_xy_replacement = not print_mode
ds = open_ds(filename_or_ds, open_options=open_options)
band_nums = get_band_nums(ds, band_nums)
x, y, results = gdallocationinfo(
filename_or_ds=ds,
x=x,
y=y,
band_nums=band_nums,
resample_alg=resample_alg,
inline_xy_replacement=inline_xy_replacement,
quiet_mode=quiet_mode,
**kwargs,
)
xsize, ysize = ds.RasterXSize, ds.RasterYSize
is_nearest_neighbour = resample_alg == gdal.GRIORA_NearestNeighbour
if print_mode:
if output_mode == LocationInfoOutput.PixelLineValVerbose:
print("Report:")
for idx, (pixel, line) in enumerate(zip(x, y)):
if (
not quiet_mode
and pixel < 0
or pixel >= xsize
or line < 0
or line >= ysize
):
print(f"Location {pixel} {line} is off this file!")
else:
if is_nearest_neighbour:
pixel, line = int(pixel), int(line)
if output_mode == LocationInfoOutput.PixelLineValVerbose:
print(f" Location: ({pixel}P,{line}L)")
for bnd_idx, band_num in enumerate(band_nums):
val = results[bnd_idx][idx]
if output_mode == LocationInfoOutput.ValOnly:
print(val)
elif output_mode == LocationInfoOutput.PixelLineVal:
print(f"{pixel} {line} {val}")
elif output_mode == LocationInfoOutput.PixelLineValVerbose:
print(f" Band {band_num}:")
print(f" Value: {val}")
return results
def val_at_coord(
filename: str,
longitude: Real,
latitude: Real,
coordtype_georef: bool,
print_xy: bool,
print_values: bool,
):
"""
val_at_coord is a simplified version of gdallocationinfo. It accepts a single point and has less options.
"""
ds = gdal.Open(filename, gdal.GA_ReadOnly)
if ds is None:
raise Exception("Cannot open %s" % filename)
# Build Spatial Reference object based on coordinate system, fetched from the opened dataset
if coordtype_georef:
X = longitude
Y = latitude
else:
srs = osr.SpatialReference()
srs.ImportFromWkt(ds.GetProjection())
srsLatLong = srs.CloneGeogCS()
# Convert from (longitude,latitude) to projected coordinates
ct = osr.CoordinateTransformation(srsLatLong, srs)
(X, Y, height) = ct.TransformPoint(longitude, latitude)
# Read geotransform matrix and calculate corresponding pixel coordinates
geotransform = ds.GetGeoTransform()
(success, inv_geotransform) = gdal.InvGeoTransform(geotransform)
x = int(inv_geotransform[0] + inv_geotransform[1] * X + inv_geotransform[2] * Y)
y = int(inv_geotransform[3] + inv_geotransform[4] * X + inv_geotransform[5] * Y)
if print_xy:
print("x=%d, y=%d" % (x, y))
if x < 0 or x >= ds.RasterXSize or y < 0 or y >= ds.RasterYSize:
raise Exception("Passed coordinates are not in dataset extent")
res = ds.ReadAsArray(x, y, 1, 1)
if print_values:
if len(res.shape) == 2:
print(res[0][0])
else:
for val in res:
print(val[0][0])
return res
class GDALLocationInfo(GDALScript):
def __init__(self):
super().__init__()
self.title = "Raster query tool"
self.description = textwrap.dedent(
"""\
The gdallocationinfo utility provide a mechanism to query information about a pixel given its location
in one of a variety of coordinate systems. Several reporting options are provided."""
)
self.interactive_mode = None
def get_parser(self, argv) -> GDALArgumentParser:
parser = self.parser
group = parser.add_mutually_exclusive_group()
group.add_argument(
"-xml",
dest="xml",
action="store_true",
help="The output report will be XML formatted for convenient post processing.",
)
group.add_argument(
"-lifonly",
dest="lifonly",
action="store_true",
help="The only output is filenames production from the LocationInfo request against "
"the database (i.e. for identifying impacted file from VRT).",
)
group.add_argument(
"-valonly",
dest="valonly",
action="store_true",
help="The only output is the pixel values of the selected pixel on each of the selected bands.",
)
parser.add_argument(
"-plb",
dest="plb",
action="store_true",
help="The output will be a series of lines in the form of Pixel,Line,band0,band1... "
"for each of the selected bands.",
)
group.add_argument(
"-quiet",
dest="quiet",
action="store_true",
help="No output will be printed.",
)
group = parser.add_mutually_exclusive_group()
group.add_argument(
"-l_srs",
dest="srs",
metavar="srs_def",
type=str,
help="The coordinate system of the input x, y location.",
)
group.add_argument(
"-geoloc",
dest="geoloc",
action="store_true",
help="Indicates input x,y points are in the georeferencing system of the image.",
)
group.add_argument(
"-llgeoloc",
dest="llgeoloc",
action="store_true",
help="Indicates input x,y points are in the long, lat (geographic) "
"based on the georeferencing system of the image.",
)
group.add_argument(
"-wgs84",
dest="wgs84",
action="store_true",
help="Indicates input x,y points are WGS84 long, lat.",
)
parser.add_argument(
"-extent_strict",
dest="allow_xy_outside_extent",
action="store_false",
help="If set, input points outside the raster extent will raise an exception, "
"otherwise a warning will be issued (unless quiet).",
)
parser.add_argument(
"-interp",
dest="resample_alg",
action="store_true",
help="If set, a Bilinear interpolation would be used, otherwise the NearestNeighbour sampling.",
)
parser.add_argument(
"-b",
dest="band_nums",
metavar="band",
type=int,
nargs="+",
help="Selects a band to query. Multiple bands can be listed. By default all bands are queried.",
)
parser.add_argument(
"-overview",
dest="ovr_idx",
metavar="overview_level",
type=int,
help="Query the (overview_level)th overview (overview_level=1 is the 1st overview), "
"instead of the base band. Note that the x,y location (if the coordinate system is "
"pixel/line) must still be given with respect to the base band.",
)
parser.add_argument(
"-axis_order",
dest="axis_order",
choices=["gis", "authority"],
type=str,
default=None,
help="X, Y Axis order: Traditional GIS, Authority complaint or otherwise utility default.",
)
parser.add_argument(
"-oo",
dest="open_options",
metavar="NAME=VALUE",
help="Dataset open option (format specific).",
nargs="+",
)
parser.add_argument(
"filename_or_ds",
metavar="filename",
type=str,
help="The source GDAL raster datasource name.",
)
parser.add_argument(
"xy",
metavar="x y",
nargs="*",
type=float,
help="series of X Y pairs of location of target pixel. "
"By default the coordinate system "
"is pixel/line unless -l_srs, -wgs84 or -geoloc supplied.",
)
return parser
def augment_kwargs(self, kwargs) -> dict:
self.interactive_mode = len(kwargs["xy"]) <= 1
if not self.interactive_mode:
kwargs["x"] = np.array(kwargs["xy"][0::2])
kwargs["y"] = np.array(kwargs["xy"][1::2])
if kwargs["geoloc"]:
kwargs["srs"] = LocationInfoSRS.SameAsDS_SRS
elif kwargs["llgeoloc"]:
kwargs["srs"] = LocationInfoSRS.SameAsDS_SRS_GeogCS
elif kwargs["wgs84"]:
kwargs["srs"] = 4326
axis_order = kwargs["axis_order"]
if isinstance(axis_order, OAMS_AXIS_ORDER):
pass
else:
if isinstance(axis_order, str):
gis_order = axis_order.lower() == "gis"
elif axis_order is None:
gis_order = kwargs["srs"] is not None and (
kwargs["srs"] != LocationInfoSRS.SameAsDS_SRS
)
elif isinstance(axis_order, bool):
gis_order = axis_order
else:
raise Exception(f"Unknown axis order {axis_order}")
axis_order = get_axis_order_from_gis_order(gis_order)
kwargs["axis_order"] = axis_order
if kwargs["xml"]:
kwargs["output_mode"] = LocationInfoOutput.XML
elif kwargs["lifonly"]:
kwargs["output_mode"] = LocationInfoOutput.LifOnly
elif kwargs["valonly"]:
kwargs["output_mode"] = LocationInfoOutput.ValOnly
elif kwargs["plb"]:
kwargs["output_mode"] = LocationInfoOutput.PixelLineVal
elif kwargs["quiet"]:
kwargs["output_mode"] = LocationInfoOutput.Quiet
else:
kwargs["output_mode"] = LocationInfoOutput.PixelLineValVerbose
kwargs["resample_alg"] = (
gdal.GRIORA_Bilinear
if kwargs["resample_alg"]
else gdal.GRIORA_NearestNeighbour
)
del kwargs["xy"]
del kwargs["geoloc"]
del kwargs["llgeoloc"]
del kwargs["wgs84"]
del kwargs["xml"]
del kwargs["lifonly"]
del kwargs["valonly"]
del kwargs["plb"]
del kwargs["quiet"]
return kwargs
def doit(self, **kwargs):
if self.interactive_mode:
is_pixel_line = kwargs["srs"] == LocationInfoSRS.PixelLine
while True:
xy = input(
f"Enter {'pixel line' if is_pixel_line else 'X Y'} "
f"values separated by space, and press Return.\n"
)
xy = xy.strip().split(" ", 1)
kwargs["x"], kwargs["y"] = float(xy[0]), float(xy[1])
gdallocationinfo_util(**kwargs)
else:
return gdallocationinfo_util(**kwargs)
def main(argv=sys.argv):
return GDALLocationInfo().main(argv)
if __name__ == "__main__":
sys.exit(main(sys.argv))
|