Mapping a raster with latitude and longitude coordinates

조회 수: 1 (최근 30일)
Peter Dorofy
Peter Dorofy 2015년 8월 6일
편집: Peter Dorofy 2015년 8월 13일
I have a satellite image file (2034x1354) where I pulled out reflectance values,latitude,longitude coordinates. I am having a difficult time trying to display/map this image. I have done research online and still cannot figure it out.
Here are the results:
Ref = 2030x1354 single
latitude = 2030x1354 single
longitude = 2030x1354 single
and reshaped to Vectors:
vRef = 1x2748620 single
vLat = 1x2748620 single
vLon = 1x2748620 single
I have tried:
[latgrid,longrid] = meshgrid(latitude,longitude)
geoshow = (latgrid,longrid,Ref,'DisplayType','texturemap')
Not surprisingly, I get an error "Requested 2748620x2748620 (28144.2GB) array exceeds maximum..."
Any ideas?
Thanks

채택된 답변

Walter Roberson
Walter Roberson 2015년 8월 7일
I would expect
geoshow(latitude, longitude, Ref, 'DisplayType', 'texturemap')
  댓글 수: 2
Rob Comer
Rob Comer 2015년 8월 9일
I agree. There's no need to call meshgrid, because your 2D latitude-longitude arrays already constitute a mesh. Skipping this step will eliminate the latgrid and longrid arrays. That's good, because even if they fit in memory, these arrays would be both enormous and ill-formed.
Peter Dorofy
Peter Dorofy 2015년 8월 13일
편집: Peter Dorofy 2015년 8월 13일
Thanks everyone. Walter that worked. I actually did this before I posted, but it was not working. Probably because I did not save the script before executing.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by