【GIS】GDAL Python 影像裁剪
# -*- coding: utf-8 -*-
"""
Created on Fri Nov 30 11:45:03 2018 @author: Administrator
""" from osgeo import gdal
from osgeo import osr
import numpy as np
import math
import time lonMeter = 0.00001141
latMeter = 0.00000899 #MeterParam = 0.00001 * 42496 / (124.44282531738276-124.3288421630859)
MeterParam = 3.7282702222226876 def getSRSPair(dataset):
'''
获得给定数据的投影参考系和地理参考系
:param dataset: GDAL地理数据
:return: 投影参考系和地理参考系
'''
prosrs = osr.SpatialReference()
prosrs.ImportFromWkt(dataset.GetProjection())
geosrs = prosrs.CloneGeogCS()
return prosrs, geosrs def geo2lonlat(dataset, x, y):
'''
将投影坐标转为经纬度坐标(具体的投影坐标系由给定数据确定)
:param dataset: GDAL地理数据
:param x: 投影坐标x
:param y: 投影坐标y
:return: 投影坐标(x, y)对应的经纬度坐标(lon, lat)
'''
prosrs, geosrs = getSRSPair(dataset)
ct = osr.CoordinateTransformation(prosrs, geosrs)
coords = ct.TransformPoint(x, y)
return coords[:2] def lonlat2geo(dataset, lon, lat):
'''
将经纬度坐标转为投影坐标(具体的投影坐标系由给定数据确定)
:param dataset: GDAL地理数据
:param lon: 地理坐标lon经度
:param lat: 地理坐标lat纬度
:return: 经纬度坐标(lon, lat)对应的投影坐标
'''
prosrs, geosrs = getSRSPair(dataset)
ct = osr.CoordinateTransformation(geosrs, prosrs)
coords = ct.TransformPoint(lon, lat)
return coords[:2] def imagexy2geo(dataset, row, col):
'''
根据GDAL的六参数模型将影像图上坐标(行列号)转为投影坐标或地理坐标(根据具体数据的坐标系统转换)
:param dataset: GDAL地理数据
:param row: 像素的行号
:param col: 像素的列号
:return: 行列号(row, col)对应的投影坐标或地理坐标(x, y)
'''
trans = dataset.GetGeoTransform()
px = trans[0] + col * trans[1] + row * trans[2]
py = trans[3] + col * trans[4] + row * trans[5]
return px, py def geo2imagexy(dataset, x, y):
'''
根据GDAL的六 参数模型将给定的投影或地理坐标转为影像图上坐标(行列号)
:param dataset: GDAL地理数据
:param x: 投影或地理坐标x
:param y: 投影或地理坐标y
:return: 影坐标或地理坐标(x, y)对应的影像图上行列号(row, col)
'''
trans = dataset.GetGeoTransform()
a = np.array([[trans[1], trans[2]], [trans[4], trans[5]]])
b = np.array([x - trans[0], y - trans[3]])
return np.linalg.solve(a, b) # 使用numpy的linalg.solve进行二元一次方程的求解 def imagexy2lonlat(dataset,row, col):
'''
影像行列转经纬度:
:通过影像行列转平面坐标
:平面坐标转经纬度
'''
coords = imagexy2geo(dataset, row, col)
coords2 = geo2lonlat(dataset,coords[0], coords[1])
return (coords2[0], coords2[1]) def lonlat2imagexy(dataset,x, y):
'''
影像行列转经纬度:
:通过经纬度转平面坐标
:平面坐标转影像行列
'''
coords = lonlat2geo(dataset, x, y)
coords2 = geo2imagexy(dataset,coords[0], coords[1])
return (int(round(abs(coords2[0]))), int(round(abs(coords2[1])))) if __name__ == '__main__':
gdal.AllRegister()
dataset = gdal.Open(r"D:\RSData\DAQING_SHAERTU\萨尔图区_大图:拼接\L19.tif") print('数据投影:')
projection = dataset.GetProjection()
print(projection) print('数据的大小(行,列):')
print('(%s %s)' % (dataset.RasterYSize, dataset.RasterXSize)) geotransform = dataset.GetGeoTransform()
print('地理坐标:')
print(geotransform) x = 464201
y = 5818760
lon = 122.47242
lat = 52.51778
row = 0
col = 0 # print('投影坐标 -> 经纬度:')
# coords = geo2lonlat(dataset, x, y)
# print('(%s, %s)->(%s, %s)' % (x, y, coords[0], coords[1]))
#
# print('经纬度 -> 投影坐标:')
# coords = lonlat2geo(dataset, lon, lat)
# print('(%s, %s)->(%s, %s)' % (lon, lat, coords[0], coords[1]))
#
# print('图上坐标 -> 投影坐标:')
# coords = imagexy2geo(dataset, row, col)
# print('(%s, %s)->(%s, %s)' % (row, col, coords[0], coords[1]))
#
# print('投影坐标 -> 图上坐标:')
# coords = geo2imagexy(dataset, x, y)
# print('(%s, %s)->(%s, %s)' % (x, y, coords[0], coords[1])) # print('图上坐标 -> 投影坐标:')
# coords = imagexy2geo(dataset, row, col)
# print('(%s, %s)->(%s, %s)' % (row, col, coords[0], coords[1]))
# print('投影坐标 -> 经纬度:')
# coords2 = geo2lonlat(dataset,coords[0], coords[1])
# print('(%s, %s)->(%s, %s)' % (coords[0], coords[1], coords2[0], coords2[1])) # coords = imagexy2lonlat(dataset, row, col)
# print('影像像素 -> 经纬度:')
# print('(%s, %s)->(%s, %s)' % ( row, col, coords[0], coords[1]))
# coords = imagexy2lonlat(dataset, dataset.RasterXSize, dataset.RasterYSize)
# print('影像像素 -> 经纬度:')
# print('(%s, %s)->(%s, %s)' % ( dataset.RasterXSize, dataset.RasterYSize, coords[0], coords[1]))
#
# coords = lonlat2imagexy(dataset, 124.3288421630859, 46.391464001559044)
# print('经纬度 -> 影像像素 :')
# print('(%s, %s)->(%s, %s)' % ( 124.3288421630859, 46.391464001559044, coords[0], coords[1]))
# coords = lonlat2imagexy(dataset, 124.44282531738276, 46.32796494040744)
# print('经纬度 -> 影像像素 :')
# print('(%s, %s)->(%s, %s)' % ( 124.44282531738276, 46.32796494040744, coords[0], coords[1])) #经纬度转像素
xoffset=0
yoffset=0 x,y = 125.059,46.894 xoffset,yoffset = lonlat2imagexy(dataset, x,y)
print('坐标转换-对应行列像素位置')
print('(%s, %s)->(%s, %s)' % (x,y, xoffset,yoffset)) width=int(500 * MeterParam)
height=int(500 * MeterParam) if xoffset - width <= 0 and yoffset - height <= 0 :
print("左上角")
xoffset = 0
yoffset = 0
elif xoffset - width <= 0 and yoffset - height > 0 :
print("左边")
xoffset = 0
elif xoffset - width > 0 and yoffset - height <= 0 :
print("顶边")
yoffset = 0
else :
print("中间区域")
xoffset = xoffset - width
yoffset = yoffset - height width = width * 2
height = height * 2 print('切割范围')
print('宽高(%s, %s)->偏移起点(%s, %s)' % (width, height, xoffset,yoffset))
# xoffset,yoffset,width,height = 175360/2,123136/2,1000,1000 newData = np.zeros([width,height,3])
band = dataset.GetRasterBand(1)
r=band.ReadAsArray(xoffset,yoffset,width,height)
NoData = band.GetNoDataValue()
newData[:,:,0] = r band = dataset.GetRasterBand(2)
g=band.ReadAsArray(xoffset,yoffset,width,height) band = dataset.GetRasterBand(3)
b=band.ReadAsArray(xoffset,yoffset,width,height) ticks = time.time()
resultPath = "D:\\RS%s.jpg" % (int(ticks)) newData[:,:,0] = r
newData[:,:,1] = g
newData[:,:,2] = b format = "GTiff"
driver = gdal.GetDriverByName(format)
ds = driver.Create(resultPath, width, height, 3, gdal.GDT_Float32)
geotransform1 = geotransform
px = geotransform[0] + xoffset * geotransform[1] + yoffset * geotransform[2]
py = geotransform[3] + xoffset * geotransform[4] + yoffset * geotransform[5]
geotransform1 = (px, 0.29858214173896974, 0.0, py, 0.0, -0.29858214173896974)
# print(geotransform1[0])
ds.SetGeoTransform(geotransform1)
ds.SetProjection(projection)
lay01= ds.GetRasterBand(1)
lay02= ds.GetRasterBand(2)
lay03= ds.GetRasterBand(3)
# ds.GetRasterBand(1).SetNoDataValue(0)
# ds.GetRasterBand(2).SetNoDataValue(0)
# ds.GetRasterBand(3).SetNoDataValue(0)
lay01.WriteArray(b)
lay02.WriteArray(g)
lay03.WriteArray(r)
# ds.FlushCache()
# ds = None
del ds import cv2
import matplotlib.pyplot as plt img2=cv2.merge([r,g,b])
plt.imshow(img2)
plt.xticks([]),plt.yticks([]) # 不显示坐标轴
plt.show() ticks = time.time()
# cv2.imwrite("D:\\RS%s.jpg" % (int(ticks)) , img2) print("OK")
转自:https://blog.csdn.net/theonegis/article/details/54427906
【GIS】GDAL Python 影像裁剪的更多相关文章
- GDAL python教程(1)——用OGR读写矢量数据
本教程的讲义和源码都是取自Utah State University的openGIS课程 相关资料,包括讲义.源码.数据样例,请从此处下载http://www.gis.usu.edu/~chrisg/ ...
- ArcGIS + Python 批量裁剪、添加X/Y坐标脚本
前言 前一段时间,同事拿来的数据范围太大,用不了那么多(只需要一个乡镇的,结果拿来区县的),太多了加载也是问题.所以就让我给处理下. 由于文件较多,手动裁剪的话,我一个一个用ArcGIS工具箱中的工具 ...
- ARCGIS多种影像裁剪
在互联网上下载的遥感影像都进行过分幅处理,下载下来的影像多是规则的四方形,而在进行遥感影像研究时,多是针对特定区域来进行,比如研究北京市的遥感影像,不在北京市范围内的影像对于研究者就没有利用意义,如果 ...
- AE + GDAL实现影像按标准图幅分割(上)
最近有个项目,其中有个功能是要将遥感影像按标准图幅分割,一开始用AE的接口,慢的让人抓狂,就改用GDAL,速度提升很大.我主要通过http://blog.csdn.net/liminlu0314/学习 ...
- C#+GDAL读取影像(1)
环境:VS2010,C#,GDAL1.7 读取影像: using System; using System.Collections.Generic; using System.ComponentMod ...
- GDAL读取影像并插值
影像读取 并缩放 读取大影像某一部分,并缩放到指定大小,我们有时会用如下代码: #include "gdal.h" #include "gdal_priv.h" ...
- 利用GDAL实现影像的几何校正
一.概述 遥感影像和地理坐标进行关联的方式一般有好几种,一种是直接给出了仿射变换系数,即6个參数,左上角地理坐标,纵横方向上的分辨率,以及旋转系数.在这样的情况下,求出某一像素点的地理坐标非常easy ...
- Ubuntu中安装gdal python版本
安装过程: python包是从C++包中编译出来的,所以需要将源码下载进行编译安装 1.GDAL中的矢量数据处理OGR依赖于Geos,在安装GDAL之前要安装Geos Geos的下载地址:http:/ ...
- AE + GDAL实现影像按标准图幅分割(下)
在上篇实现了遥感影像的切割,本篇讲切割前的准备.主要分为以下几步: (1)将影像的投影坐标转换为地理坐标,以便于之后的图幅划分.AE坐标转换函数如下 private bool Proj2Geo(ISp ...
随机推荐
- Android progressbar条形带背景渐变进度风格进度条
效果图: 代码如下: <ProgressBar android:id="@+id/progressBar" style="?android:attr/progres ...
- 解决华为手机图片选择无效及产生的open failed: EACCES (Permission denied)错误
在华为手机上调起图片选择时原来的效果如下 原来的代码是 Intent intent = new Intent(); intent.setAction(Intent.ACTION_GET_CONTENT ...
- android 避免线程的重复创建(HandlerThread、线程池)
最近在android开发中,用到都是new Thread(){...}.start()这种方式.本来这样是可以,但是最近突然爆出Performing stop of activity that is ...
- 14款优秀的JavaScript调试工具大盘点
JavaScript是一种非常简单的语言,一般说来任何人都可以在几小时内掌握它的基本知识. 然而就像其他任何语言一样,JavaScript存在着一些可以轻易避免的常见错误和不好的做法.开发人员喜欢使用 ...
- C++头文件的工作原理
一.C++编译模式通常,在一个C++程序中,只包含两类文件——.cpp文件和.h文件.其中,.cpp文件被称作C++源文件,里面放的都是C++的源代码:而.h文件则被称作C++头文件,里面放的也是C+ ...
- 巧用style的另类写法
看到style,不少人可能会说这个我知道,就是控件写属性的话可以通过style来实现代码的复用,单独把这些属性及其参数写成style就可以便捷的调用. <?xml version="1 ...
- Linux 常用小命令
1. 查看目录的总和 du -sh 路径 2. 查看linux目录下所有某种类型的文件的行数--> 就是想看自己写了多少行代码 find /opt/code/zk_css -name '*.p ...
- 【转】【WPF】关于依赖属性的ValidateValueCallback,PropertyChangedCallback和CoerceValueCallback的执行顺序
三个回调对应依赖属性的验证过程,改变过程和强制转换过程. class Dobj : DependencyObject { //依赖属性包装 public int MyProperty { get { ...
- 字节码加载和class实例的顺序问题
刷头条的时候看到了这个: 你做会错的一道Java面试题:字节码加载和class实例的顺序问题 以前也看到过,应该是阿里的校招笔试题,当时懒得理这种工作中毫无意义的东西. 今天突然来了兴趣,就想看看能 ...
- 第三百五十四节,Python分布式爬虫打造搜索引擎Scrapy精讲—数据收集(Stats Collection)
第三百五十四节,Python分布式爬虫打造搜索引擎Scrapy精讲—数据收集(Stats Collection) Scrapy提供了方便的收集数据的机制.数据以key/value方式存储,值大多是计数 ...