python-visualization / python-visualization/folium

ImageOverlay behaviour with WG84 rasters

オープン
#2,054 コメント 2 件 リアクション 1 件 担当者 0 名 GitHub で見る

まだ誰も着手していません。

主要言語
Python
スター
7.4k
フォーク
2.3k
平均マージ
17時間 22分
マージ済み PR(30日)
11

説明

I have a non-expected result when using this code (the raster used is attached to this message):

raster_path = '2019-06-15.tiff'
with rasterio.open(raster_path) as src:
    raster_data = src.read(1)
    bounds = src.bounds
    
m = folium.Map(location=[(bounds.top + bounds.bottom) / 2, (bounds.left + bounds.right) / 2], zoom_start=10)

# Create an ImageOverlay
img_overlay = ImageOverlay(
    image=raster_data,
    bounds=[[bounds.bottom, bounds.left], [bounds.top, bounds.right]],
    opacity=0.6,
    interactive=False,
    cross_origin=True,
    zindex=1,
    mercator_project=True
)

# Add the overlay to the map
img_overlay.add_to(m)

m.save('map.html')

Indeed, my result html map presents shapes that are not consistent with the same map I could have just by using QGIS.

For instance the result of this code gives this in a specific region:
image

while using QGIS in an EPSG:3857 projection system gives this:
image

My raster has natively an EPSG:4326 projection system. I suspect the issue comes from how ImageOverlay changes the projection system.

Can anyone reproduce this and explain how I could obtain the same result as in QGIS which is the correct reference for me?

Thanks,
Vivien

2019-06-15.zip

コントリビューションガイド

コントリビューションガイドを開く

はじめの一歩

  1. issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
  2. 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
  3. リポジトリをフォークし、ブランチを切って変更します。
  4. issue 番号を参照したプルリクエストを送ります。

調査の方向性

まず、提供された TIFF の例を rasterio と folium.ImageOverlay で再現し、次に EPSG:4326 の扱いを QGIS の EPSG:3857 の結果と比較します。ImageOverlay の投影と bounds の動作を、image-overlay に対する Leaflet の想定と併せて確認してください。相違点が説明され、issue の想定される描画または制限が文書化されていれば完了です。

索引モデルが issue の本文から書いたものです。

評価

技術スタック
javascript, python
領域
data-visualization, web-dev
issue の種類
バグ
難易度
3/5
見積もり時間
1〜2日
活発さ
停滞
明瞭さ
おおむね明確
初心者へのやさしさ
35/100

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。