closefaces.m
来自「麻省理工学院的人工智能工具箱,很珍贵,希望对大家有用!」· M 代码 · 共 38 行
M
38 行
function [lat,lon] = closefaces(latin,lonin)
%CLOSEFACES closes all faces of a polygon
% Copyright 1996-2002 Systems Planning and Analysis, Inc. and The MathWorks, Inc.
% $Revision: 1.3 $ $Date: 2002/03/20 21:26:42 $
[lat,lon]=deal(latin,lonin);
if ~iscell(lat)
[lat,lon]=polysplit(lat,lon);
end
for i=1:length(lat)
[latface,lonface]=deal(lat{i},lon{i});
[latfacecell,lonfacecell]=polysplit(latface,lonface);
for j=1:length(latfacecell)
% close open polygons
if latfacecell{j}(1) ~= latfacecell{j}(end) | lonfacecell{j}(1) ~= lonfacecell{j}(end)
latfacecell{j}(end+1)=latfacecell{j}(1);
lonfacecell{j}(end+1)=lonfacecell{j}(1);
end
end
[lat{i},lon{i}]=polyjoin(latfacecell,lonfacecell);
end
if ~iscell(latin)
[lat,lon] = polyjoin(lat,lon);
end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?