タグ付けされた質問 「matplotlib-basemap」

1
Pythonでラスターマップをプロットしますか?
Pyhtonを使用してラスターマップをプロットしようとしています。画像は表示されますが、保存されていません。また、ピクセルが正確な場所に表示されていません。以下のような画像が表示されます(これは間違っていますが、緯度経度のラベルは正しいです)。 以下は、ArcGISからエクスポートした正しい向きです。 ピクセルを正しい場所に配置するのにいくつかの間違いがありますが、私はそれを取得できません。それを修正するには? これが私のスクリプトです。 from mpl_toolkits.basemap import Basemap import matplotlib.pyplot as plt from osgeo import gdal from numpy import linspace from numpy import meshgrid import numpy as ################################################################################# ds = gdal.Open('Path\\To\\Raster.tif') data = ds.ReadAsArray() gt = ds.GetGeoTransform() proj = ds.GetProjection() ################################################################################# xres = gt[1] yres = gt[5] xmin = gt[0] …
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.