0

我正在尝试使用 Matlab 在 GoogleEarth 上绘制飞机飞行轨迹来构建 KML 文件。我对 Matlab 很陌生。到目前为止,我的代码已成功使用 XML 节点格式化正确的 KML 文件,但我很难将多行坐标从 csv 或 xls 文件获取到 KML 文件。我只能将一个坐标写入文件或水平方向写入格式不正确的所有坐标。

在脚本运行后,我已经能够将坐标复制并粘贴到写入的 KML 文件中,但我需要能够告诉脚本这样做。

当前代码不健壮,我还不知道如何在 Matlab 中捕获异常并防止代码失败。我也意识到我使用 for 循环来创建保存我的坐标的 char 数组效率非常低。如果有人知道一种提高效率的方法,那也会有所帮助。

trajectoryData = struct('Longitude',[],'Latitude',[],'Altitude',[]);
data = xlsread('Table.xls');
[m,n]=size(data);
trajectoryData.Longitude = data(:,1);
trajectoryData.Latitude = data(:,2);
trajectoryData.Altitude = data(:,3);

xDoc = com.mathworks.xml.XMLUtils.createDocument('kml');
xDocRootNode = xDoc.getDocumentElement;
documentNode = xDoc.createElement('Document');
nameNode = xDoc.createElement('name');
styleNode = xDoc.createElement('Style');
lineStyleNode = xDoc.createElement('LineStyle');
polyStyleNode = xDoc.createElement('PolyStyle');
colorNode = xDoc.createElement('color');
widthNode = xDoc.createElement('width');
placemarkNode = xDoc.createElement('Placemark');
visibilityNode = xDoc.createElement('visibility');
styleUrlNode = xDoc.createElement('styleUrl');
altitudeNode = xDoc.createElement('altitudeMode');
coordinatesNode = xDoc.createElement('coordinates');
lineStringNode = xDoc.createElement('LineString');
extrudeNode = xDoc.createElement('extrude');
tessellateNode = xDoc.createElement('tessellate');

nameNode.setTextContent('FlightID 26');
colorNode.setTextContent('7f00ff00');
widthNode.setTextContent('4');
visibilityNode.setTextContent('1');
styleUrlNode.setTextContent('#yellowLineGreenPoly');
extrudeNode.setTextContent('1');
tessellateNode.setTextContent('1');
altitudeNode.setTextContent('absolute');

xDocRootNode.appendChild(documentNode);
documentNode.appendChild(nameNode);
documentNode.appendChild(styleNode);
documentNode.appendChild(placemarkNode);
styleNode.appendChild(lineStyleNode);
styleNode.appendChild(polyStyleNode);
polyStyleNode.appendChild(colorNode);
lineStyleNode.appendChild(colorNode);
lineStyleNode.appendChild(widthNode);
lineStringNode.appendChild(altitudeNode);
lineStringNode.appendChild(extrudeNode);
lineStringNode.appendChild(tessellateNode);
lineStringNode.appendChild(coordinatesNode);
placemarkNode.appendChild(visibilityNode);
placemarkNode.appendChild(styleUrlNode);
placemarkNode.appendChild(lineStringNode);



for i=1:numel(data(1:end,1))
     coord = char(coord,strcat(num2str(trajectoryData.Longitude(i,1)),',',...
        num2str(trajectoryData.Latitude(i,1)),',',num2str(trajectoryData.Altitude(i,1))))
     for j=1:27
        coordinateNode = xDoc.createTextNode(coord(i,j));
        coordinatesNode.appendChild(coordinateNode);
     end


end

xDocRootNode.appendChild(documentNode);

xmlwrite('KMLFile2.kml',xDoc);  

这是脚本的输出,因为它是:

<coordinates> latitude,longitude,altitude latitude,longitude,altitude </coordinates>

我只需要一种像这样格式化kml的方法:

<coordinates>
    latitude,longitude,altitude
    latitude,longitude,altitude
</coordinates>
4

1 回答 1

0

从纯 KML 的角度来看,水平书写坐标没有问题,只要它们至少相隔 1 个空格。

但是,如果您想更改格式,我相信您可以简单地将换行符添加\n到您正在构建 KML 坐标字符串的区域。

它看起来像这样:

    coord = char(coord,strcat( ...
                  num2str(trajectoryData.Longitude(i,1)), ',' ,...
                  num2str(trajectoryData.Latitude(i,1)) , ',' ,...
                  num2str(trajectoryData.Altitude(i,1)) , ' \n'));

这应该将换行符注入您的 KML,创建您想要的格式。

于 2013-07-01T20:28:08.703 回答