AtmosphericCorrection icon indicating copy to clipboard operation
AtmosphericCorrection copied to clipboard

6s模型大气校正python版本,支持GF1、2,Landsat-8,Sentinel-2等影像

Results 18 AtmosphericCorrection issues
Sort by recently updated
recently updated
newest added

我用作者的代码跑高分影响大气校正的时候,水的反射率随着辐射定标的系数变高也随之变高,结果反射率数值都很高请问是为什么

GF-1校正脚本中这句应该不用90去减吧,我直接用脚本运行出来植被的校正结果和FLAASH校正差距较大。 `s.geometry.solar_z = 90-float(dom.getElementsByTagName('SolarZenith')[0].firstChild.data)` xml中给出的就是太阳天顶角吧,不是太阳高度角,应该不需要计算,直接拿来用就行,调整后差距明显减小。 还有我没有将卫星方位角和天顶角设为0,而是使用了xml中提供的角度。 我是个学生,有错误还请指正。

File "F:/数据样例/GF1pms_sample/AtmosphericCorrection-master/test.py", line 78, in Block AtcCofa, AtcCofb, AtcCofc = AtmosphericCorrection(m, metedata, config, SatelliteID, SensorID) File "F:/数据样例/GF1pms_sample/AtmosphericCorrection-master/test.py", line 237, in AtmosphericCorrection s.run() File "D:\Program Files\anaconda3\envs\AtmosphericCorrection-master\lib\site-packages\Py6S\sixs.py", line 357, in run self.outputs...

校正后的GF-2数据,植被的地表反射率光谱曲线与FLAASH校正曲线基本吻合,但是水体的光谱曲线差异较大,有些水体的近红外波段校正后的数据偏高。 ![image](https://user-images.githubusercontent.com/53697915/145354744-f0a318df-7910-47aa-bf41-92462575450f.png)

我需要做20、21年的大气校正,大佬怎么更新那个json文件呀

in base.py # DEM分辨率 pixelWidth = geotransform[1] pixelHight = geotransform[5] # DEM起始点:左上角,X:经度,Y:纬度 originX = geotransform[0] originY = geotransform[3] # 研究区左上角在DEM矩阵中的位置 yoffset1 = int((originY - pointUL['lat']) / pixelWidth) xoffset1 = int((pointUL['lon']...