从 python 中的分散数据创建一个 Geotiff 文件

Create a Geotiff file from scattered data in python

我有一个点数据集(纬度、经度、值),我想从这些点创建一个 Geotiff 文件。

纬度、经度和值为float32数字

我想生成一个在这些点上进行插值的自定义栅格。 https://www.gdal.org/grid_tutorial.html

我想获得上面 link 中的网格,并且网格中的每个点都有一个值(我猜是从原始点计算出的某种插值)

您在问题中指出的教程是 gdal_grid 实用程序背后的理论:

https://www.gdal.org/gdal_grid.html

查看页面底部的示例,了解如何从分散的数据中插入 geotiff。

如何在python中使用:

https://gis.stackexchange.com/questions/254330/python-gdal-grid-correct-use