我们有一个地理参考的栅格文件和一个纬度-经度坐标列表,我们希望在该栅格文件上绘制这些坐标以获取这些坐标处的栅格值。
这是坐标列表:
mapshow(lon,lat,'DisplayType','point') %x,y
当然,经度在-180至+180之间,纬度在-90至+90之间。
这是栅格文件:
proj = geotiffinfo('global2001.tif');
[raster_tiff,cmap_tiff,reference_tiff] = geotiffread('global2001.tif');
figure
mapshow(raster_tiff,cmap_tiff,reference_tiff)
proj = FileModDate: '20-nov-2018 14:15:52'
FileSize: 121625752
Format: 'tif'
FormatVersion: []
Height: 40032
Width: 80062
BitDepth: 8
ColorType: 'indexed'
ModelType: 'ModelTypeProjected'
PCS: ''
Projection: ''
MapSys: ''
Zone: []
CTProjection: 'CT_Sinusoidal'
ProjParm: [7×1 double]
ProjParmId: {7×1 cell}
GCS: 'WGS 84'
Datum: 'World Geodetic System 1984'
Ellipsoid: 'WGS 84'
SemiMajor: 6378137
SemiMinor: 6.3568e+06
PM: 'Greenwich'
PMLongToGreenwich: 0
UOMLength: 'metre'
UOMLengthInMeters: 1
UOMAngle: 'degree'
UOMAngleInDegrees: 1
TiePoints: [1×1 struct]
PixelScale: [3×1 double]
SpatialRef: [1×1 map.rasterref.MapCellsReference]
RefMatrix: [3×2 double]
BoundingBox: [2×2 double]
CornerCoords: [1×1 struct]
GeoTIFFCodes: [1×1 struct]
GeoTIFFTags: [1×1 struct]
现在,我们使用与栅格文件相同的投影来投影坐标:
mstruct = geotiff2mstruct(proj);
% get current axis
axesm('MapProjection',mstruct.mapprojection,'Frame','on')
h=get(gcf,'CurrentAxes');
assert(ismap(h)==1,'Current axes must be map axes.')
mstruct=gcm;
[x,y] = mfwdtran(mstruct,lat,lon,h,'none');
figure
mapshow(x,y,'DisplayType','point') %x,y
问题是投影坐标从-3变为+3,从-1变为+1,并且光栅文件中的轴从-2变为+2,但幂为7,所以如果我们绘制这些坐标点在该栅格的顶部,我们将所有内容视为大西洋某个地方的单个点。
最后,我们想使用函数latlon2pix来获得每个坐标点的像素值,但是首先,我们需要能够将这两个元素放在一起。有什么想法吗?
geoshow功能不起作用。我们有足够的内存...
答案 0 :(得分:1)
我建议这样做:
% assigning reference for tif file
proj = geotiffinfo('global2001.tif');
% reading the tif into raster_tiff, storing the colormap, save the meta data
[raster_tiff,cmap_tiff,reference_tiff] = geotiffread('global2001.tif');
可以使用projfwd进行投影,并将投影矩阵存储在变量proj中。然后,数据点将以栅格文件的地图坐标(此处为正弦)表示。
% using the projection matrix (proj.RefMatrix) and computing the raster coordinates in meters
[x,y] = projfwd(proj,lat,lon);
使用mapshow可以在顶部绘制两个数据集。
mapshow(raster_tiff,cmap_tiff,reference_tiff);
mapshow(x,y,'DisplayType', 'point', 'Color', 'm',...
'MarkerEdgeColor', 'auto');