Python GDALバインディングを使用してラスターコーナー座標を取得する方法は?


30

gdalのPythonバインディングを使用して、ラスターファイルから角座標(緯度/経度)を取得する方法はありますか?

オンラインでいくつかの検索を行っていないことを確信させたので、gdalinfoの出力を解析することで回避策を開発しました。これはやや基本的なことですが、Pythonに不慣れな人にとっては時間を節約できると思いました。また、gdalinfoに地理座標とコーナー座標が含まれている場合にのみ機能しますが、これは常にそうだとは思いません。

これは私の回避策です、誰かがより良い解決策を持っていますか?

適切なラスターのgdalinfoは、出力の途中で次のような結果になります。

Corner Coordinates:
Upper Left  (  -18449.521, -256913.934) (137d 7'21.93"E,  4d20'3.46"S)
Lower Left  (  -18449.521, -345509.683) (137d 7'19.32"E,  5d49'44.25"S)
Upper Right (   18407.241, -256913.934) (137d44'46.82"E,  4d20'3.46"S)
Lower Right (   18407.241, -345509.683) (137d44'49.42"E,  5d49'44.25"S)
Center      (     -21.140, -301211.809) (137d26'4.37"E,  5d 4'53.85"S)

このコードは、そのようなgdalinfoのファイルに対して機能します。私は時々、座標が度、分、秒ではなく、度と小数であると信じています。その状況に合わせてコードを調整するのは簡単なはずです。

import numpy as np
import subprocess

def GetCornerCoordinates(FileName):
    GdalInfo = subprocess.check_output('gdalinfo {}'.format(FileName), shell=True)
    GdalInfo = GdalInfo.split('/n') # Creates a line by line list.
    CornerLats, CornerLons = np.zeros(5), np.zeros(5)
    GotUL, GotUR, GotLL, GotLR, GotC = False, False, False, False, False
    for line in GdalInfo:
        if line[:10] == 'Upper Left':
            CornerLats[0], CornerLons[0] = GetLatLon(line)
            GotUL = True
        if line[:10] == 'Lower Left':
            CornerLats[1], CornerLons[1] = GetLatLon(line)
            GotLL = True
        if line[:11] == 'Upper Right':
            CornerLats[2], CornerLons[2] = GetLatLon(line)
            GotUR = True
        if line[:11] == 'Lower Right':
            CornerLats[3], CornerLons[3] = GetLatLon(line)
            GotLR = True
        if line[:6] == 'Center':
            CornerLats[4], CornerLons[4] = GetLatLon(line)
            GotC = True
        if GotUL and GotUR and GotLL and GotLR and GotC:
            break
    return CornerLats, CornerLons 

def GetLatLon(line):
    coords = line.split(') (')[1]
    coords = coords[:-1]
    LonStr, LatStr = coords.split(',')
    # Longitude
    LonStr = LonStr.split('d')    # Get the degrees, and the rest
    LonD = int(LonStr[0])
    LonStr = LonStr[1].split('\'')# Get the arc-m, and the rest
    LonM = int(LonStr[0])
    LonStr = LonStr[1].split('"') # Get the arc-s, and the rest
    LonS = float(LonStr[0])
    Lon = LonD + LonM/60. + LonS/3600.
    if LonStr[1] in ['W', 'w']:
        Lon = -1*Lon
    # Same for Latitude
    LatStr = LatStr.split('d')
    LatD = int(LatStr[0])
    LatStr = LatStr[1].split('\'')
    LatM = int(LatStr[0])
    LatStr = LatStr[1].split('"')
    LatS = float(LatStr[0])
    Lat = LatD + LatM/60. + LatS/3600.
    if LatStr[1] in ['S', 's']:
        Lat = -1*Lat
    return Lat, Lon

FileName = Image.cub
# Mine's an ISIS3 cube file.
CornerLats, CornerLons = GetCornerCoordinates(FileName)
# UpperLeft, LowerLeft, UpperRight, LowerRight, Centre
print CornerLats
print CornerLons

そしてそれは私に与えます:

[-4.33429444 -5.82895833 -4.33429444 -5.82895833 -5.081625  ] 
[ 137.12275833  137.12203333  137.74633889  137.74706111  137.43454722]

回答:


29

外部プログラムを呼び出さずにそれを行う別の方法を次に示します。

これは、ジオトランスフォームから四隅の座標を取得し、osr.CoordinateTransformationを使用して経度/緯度に再投影します。

from osgeo import gdal,ogr,osr

def GetExtent(gt,cols,rows):
    ''' Return list of corner coordinates from a geotransform

        @type gt:   C{tuple/list}
        @param gt: geotransform
        @type cols:   C{int}
        @param cols: number of columns in the dataset
        @type rows:   C{int}
        @param rows: number of rows in the dataset
        @rtype:    C{[float,...,float]}
        @return:   coordinates of each corner
    '''
    ext=[]
    xarr=[0,cols]
    yarr=[0,rows]

    for px in xarr:
        for py in yarr:
            x=gt[0]+(px*gt[1])+(py*gt[2])
            y=gt[3]+(px*gt[4])+(py*gt[5])
            ext.append([x,y])
            print x,y
        yarr.reverse()
    return ext

def ReprojectCoords(coords,src_srs,tgt_srs):
    ''' Reproject a list of x,y coordinates.

        @type geom:     C{tuple/list}
        @param geom:    List of [[x,y],...[x,y]] coordinates
        @type src_srs:  C{osr.SpatialReference}
        @param src_srs: OSR SpatialReference object
        @type tgt_srs:  C{osr.SpatialReference}
        @param tgt_srs: OSR SpatialReference object
        @rtype:         C{tuple/list}
        @return:        List of transformed [[x,y],...[x,y]] coordinates
    '''
    trans_coords=[]
    transform = osr.CoordinateTransformation( src_srs, tgt_srs)
    for x,y in coords:
        x,y,z = transform.TransformPoint(x,y)
        trans_coords.append([x,y])
    return trans_coords

raster=r'somerasterfile.tif'
ds=gdal.Open(raster)

gt=ds.GetGeoTransform()
cols = ds.RasterXSize
rows = ds.RasterYSize
ext=GetExtent(gt,cols,rows)

src_srs=osr.SpatialReference()
src_srs.ImportFromWkt(ds.GetProjection())
#tgt_srs=osr.SpatialReference()
#tgt_srs.ImportFromEPSG(4326)
tgt_srs = src_srs.CloneGeogCS()

geo_ext=ReprojectCoords(ext,src_srs,tgt_srs)

metagetaプロジェクトのコード、この回答の osr.CoordinateTransformationアイデア


素晴らしいです、ありがとう。また、gdalinfoの出力に適切な行が存在するかどうかに関係なく機能します。
-EddyTheB

これはtgt_srs = src_srs.CloneGeogCS()の方が良いと思います。私の最初のラスターは火星の画像なので、EPSG(4326)を使用するのは理想的ではありませんが、CloneGeogCS()は投影座標から地理座標に変化するだけです。
EddyTheB

確かに。CloneGeogCSを使用するように回答を更新しました。ただし、GetExtent関数とReprojectCoords関数の使用を実証しようとしていました。必要なものをターゲットsrsとして使用できます。
user2856

はい、ありがとう、そうでなければ見つけられなかったでしょう。
-EddyTheB

投影がなく、RPCを指定するデータセットがある場合はどうなりますか?wkt関数からのインポートは失敗します。トランスを使用して範囲を計算することは可能ですが、上記の方法に方法があるかどうか疑問に思っていましたか?
トーマス

41

これは、はるかに少ないコード行で実行できます

src = gdal.Open(path goes here)
ulx, xres, xskew, uly, yskew, yres  = src.GetGeoTransform()
lrx = ulx + (src.RasterXSize * xres)
lry = uly + (src.RasterYSize * yres)

ulxuly左上隅で、lrxlry右下隅です

osrライブラリ(gdalの一部)を使用して、ポイントを任意の座標系に変換できます。単一のポイントの場合:

from osgeo import ogr
from osgeo import osr

# Setup the source projection - you can also import from epsg, proj4...
source = osr.SpatialReference()
source.ImportFromWkt(src.GetProjection())

# The target projection
target = osr.SpatialReference()
target.ImportFromEPSG(4326)

# Create the transform - this can be used repeatedly
transform = osr.CoordinateTransformation(source, target)

# Transform the point. You can also create an ogr geometry and use the more generic `point.Transform()`
transform.TransformPoint(ulx, uly)

ラスター画像全体を再投影することは、はるかに複雑な問題になりますが、GDAL> = 2.0は、これに対しても簡単な解決策を提供しますgdal.Warp


これは、エクステントに対するPythonの答えです-再投影のための同等のPythonのソリューションは素晴らしいでしょう、と言いました-私はPostGISで結果を使用するので、未変換のエクステントを渡してST_Transform(ST_SetSRID(ST_MakeBox2D([結果] ),28355),4283)それを渡します。(1つの言-「T」はsrc.GetGeoTransform()大文字にする必要があります)。
GT。

@GT。例を追加しました
ジェームズ

1

私はこのようにしてきました...少しハードコーディングされていますが、gdalinfoで何も変更がなければ、UTM投影画像で機能します!

imagefile= /pathto/image
p= subprocess.Popen(["gdalinfo", "%s"%imagefile], stdout=subprocess.PIPE)
out,err= p.communicate()
ul= out[out.find("Upper Left")+15:out.find("Upper Left")+38]
lr= out[out.find("Lower Right")+15:out.find("Lower Right")+38]

2
これはgdalinfo、ユーザーのパス(特にウィンドウズでは常にそうではない)で利用可能であることと、厳密なインターフェースを持たない印刷出力の解析の両方に依存するため、かなり脆弱です。gdalがより明確で堅牢な方法でこれを行うことができる包括的なPythonバインディングを提供する場合は不要です
ジェームズ

1

ラスタを回転させると、6つのアフィン変換係数のそれぞれを考慮する必要があるため、数学が少し複雑になります。アフィンを使用して、回転したアフィン変換/ジオトランスフォームを変換することを検討してください。

from affine import Affine

# E.g., from a GDAL DataSet object:
# gt = ds.GetGeoTransform()
# ncol = ds.RasterXSize
# nrow = ds.RasterYSize

# or to work with a minimal example
gt = (100.0, 17.320508075688775, 5.0, 200.0, 10.0, -8.660254037844387)
ncol = 10
nrow = 15

transform = Affine.from_gdal(*gt)
print(transform)
# | 17.32, 5.00, 100.00|
# | 10.00,-8.66, 200.00|
# | 0.00, 0.00, 1.00|

これで、4つのコーナー座標ペアを生成できます。

c0x, c0y = transform.c, transform.f  # upper left
c1x, c1y = transform * (0, nrow)     # lower left
c2x, c2y = transform * (ncol, nrow)  # lower right
c3x, c3y = transform * (ncol, 0)     # upper right

また、グリッドベースの境界(xmin、ymin、xmax、ymax)も必要な場合:

xs = (c0x, c1x, c2x, c3x)
ys = (c0y, c1y, c2y, c3y)
bounds = min(xs), min(ys), max(xs), max(ys)

0

Python用のOSGEO / GDALモジュールの最新バージョンでは、システムコールを使用せずにコードからGDALユーティリティを直接呼び出すことができると考えています。たとえば、サブプロセスを使用して呼び出す代わりに:

gdalinfo gdal.Info(the_name_of_the_file)を呼び出して、ファイルのメタデータ/注釈を公開できます。

または、サブプロセスを使用して呼び出す代わりに:gdalwarpは、gdal.Warpを計算してラスターのワーピングを実行できます。

内部機能として現在利用可能なGDALユーティリティのリスト:http : //erouault.blogspot.com/2015/10/gdal-and-ogr-utilities-as-library.html

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.