如何在Python中从原始数据创建COG文件?
我想知道是否有任何 python 库或工具可以帮助将原始数据转换为云优化的 GeoTIFF。我有很多 dat 文件,其中包含纬度、经度和一些有关我希望能够在地图上渲染的事件的其他元数据。
I would like to know if there are any python libraries or tools to help convert raw data into a cloud optimized GeoTIFF. I have a lot of dat files with latitude, longitude, and a few other bits of metadata about an event that I would like to be able to render on a map.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可以使用GDAL。我发现这两个链接很有帮助:
https://geoexamples.com /other/2019/02/08/cog-tutorial.html
https://gdal.org/tutorials/raster_api_tut.html
最后我的代码大致如下所示。我确信您需要调整、自定义和添加更多内容(我在仍在搜索如何添加日期时间时遇到了您的问题),但这只是一个开始。
GDAL can be used. I found these two links helped a lot:
https://geoexamples.com/other/2019/02/08/cog-tutorial.html
https://gdal.org/tutorials/raster_api_tut.html
In the end my code looked roughly like this. I'm sure you will need to adjust, customize, and add more (I came across your question while still searching for how to add a DateTime), but it's a start.