rio tiler

作者: hehehehe | 来源:发表于2022-08-18 16:15 被阅读0次

https://github.com/cogeotiff/rio-tiler
https://github.com/developmentseed/rio-viz

https://github.com/DHI-GRAS/terracotta

rio viz /Users/shilulu/Downloads/sand_test.tif --reader rio_tiler.io.COGReader

https://github.com/developmentseed/titiler

http://127.0.0.1:8000/cog/viewer?url=/Users/xxx/Downloads/tmp/20200613clip/B1.tif

gdal2tiles.py

docker cp Downloads/tmp/20200613clip/B2.tif 9ee887fda233:/tmp
gdal_translate -of VRT -ot Byte -scale B1.tif temp.vrt
gdal2tiles.py --zoom 8-14 temp.vrt ./tile/

送大佬上地图

from osgeo import gdal
ds1 = gdal.Open("tmp/20200613clip/B1.tif")
ds2 = gdal.Open("20220819-144742.jpeg")

im_geotrans = ds1.GetGeoTransform()
im_proj = ds1.GetProjection()

driver = gdal.GetDriverByName("GTiff")
output = driver.Create("tmp/20200613clip/aa.tif", ds2.RasterXSize, ds2.RasterYSize, 3, gdal.GDT_Byte)

output.SetGeoTransform(im_geotrans) 
output.SetProjection(im_proj) 

im_data1 = ds2.GetRasterBand(1).ReadAsArray(xoff=0, yoff=0, win_xsize=ds2.RasterXSize, win_ysize=ds2.RasterYSize)
im_data2 = ds2.GetRasterBand(2).ReadAsArray(xoff=0, yoff=0, win_xsize=ds2.RasterXSize, win_ysize=ds2.RasterYSize)
im_data3 = ds2.GetRasterBand(3).ReadAsArray(xoff=0, yoff=0, win_xsize=ds2.RasterXSize, win_ysize=ds2.RasterYSize)


output.GetRasterBand(1).WriteArray(im_data1)
output.GetRasterBand(2).WriteArray(im_data2)
output.GetRasterBand(3).WriteArray(im_data3)
output.FlushCache()
del output

相关文章

  • rio tiler

    https://github.com/cogeotiff/rio-tiler[https://github.com...

  • RIO鸡尾酒文案

    RIO! RIO ...

  • 用rio包进行数据导出

    笔记说明 数据导入利器——rio包中记录了rio包的数据导入功能,本次笔记记录rio包的数据导出功能。主要参考:h...

  • 【营销策略】你见过的最精彩的营销案例是什么

    森哥也来答一波这个问题。 一 rio rio赞助的新歌声,期间广告语“60秒广告由rio赞助不播出”。当时看见的时...

  • 关于Rio

    就在昨天,我的小乌龟因为生病死了。几个月前,我把它从水族馆带回来的时候,疫情形式还不够乐观。我还在发热门诊筛查发热...

  • RIO微醺

    今天买了一听鸡尾酒,口感很惊喜。 喝的第一口很少,害怕像普通的白酒一样辣口,但并不是,甜甜的像夏日的汽水一样,又饮...

  • 娘子 is rio !

    [书里说的美满人生:七成饱、三分醉、十足收成;过上等生活,付中等劳力,享下等情欲。 是这样没错,但我脚踏实地的同时...

  • 娘子is rio!

  • 插画师Mariana Rio作品欣赏

    分享一组放松心情的插画,作品来自插画师 Mariana Rio~ 作者Mariana Rio 的这组作品多为经典的...

  • Rancher极简service mesh产品Rio安装试玩(基

    1、简介: istio 是 service mesh 界的明星项目,今天要试玩的是它的低配版Rio。Rio 是Ra...

网友评论

      本文标题:rio tiler

      本文链接:https://www.haomeiwen.com/subject/xupegrtx.html