densitymap_d.m

来自「计量工具箱」· M 代码 · 共 20 行

M
20
字号
% PURPOSE: An example using densitymap
%          to examine the density of
%          a vector-variable over a map
%---------------------------------------------------
% USAGE: densitymap_d
%---------------------------------------------------


clear all;

load('matADTCAN.txt');
carte = matADTCAN;
[xy,txt] = WK1READ('codecoord2.wk1');
long = xy(2:end,2);
latt = xy(2:end,3);
docs = xy(2:end,1);

densitymap(latt,long,docs,50,carte,[],1); % using map polygons

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?