我正在尝试使用 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>