1

我有一些来自研究飞机的不错的数据,我将它们放入 kml 文件中,如下例所示。如果您检查海拔剖面,您会发现扩展数据绘制得很好。

我的问题:我的数据包含缺失值。如果我尝试用空代替丢失的数据,则扩展数据不会出现在配置文件框架中(您可以删除 gx-value 对中的一个浮点数以查看)。

我的问题是:是否有任何技巧可以让 GoogleEarth 绘制没有缺失值(即中断)的配置文件?或者您是否知道向 GE 开发人员提供反馈的方法?

<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://www.opengis.net/kml/2.2" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:gx="http://www.google.com/kml/ext/2.2" xmlns:kml="http://www.opengis.net/kml/2.2" xmlns:xal="urn:oasis:names:tc:ciq:xsdschema:xAL:2.0">
    <Document id="feat_1">
        <Style id="stylesel_0">
            <LineStyle>
                <color>ff0000ff</color>
                <colorMode>normal</colorMode>
                <width>4</width>
            </LineStyle>
        </Style>
        <visibility>1</visibility>
        <Schema id="schema_1" name="Flight Track">
            <gx:SimpleArrayField name="bb" type="int">
                <displayName>Flight Track</displayName>
            </gx:SimpleArrayField>
        </Schema>
        <Placemark id="feat_2">
            <name>example</name>
            <styleUrl>#stylesel_0</styleUrl>
            <gx:Track>
                <gx:coord>-140.0 10.0 0.0</gx:coord>
                <gx:coord>-133.572123903 7.66044443119 4131.75911167</gx:coord>
                <gx:coord>-130.15192247 1.73648177667 9698.46310393</gx:coord>
                <gx:coord>-131.339745962 -5.0 7500.0</gx:coord>
                <gx:coord>-136.579798567 -9.39692620786 1169.77778441</gx:coord>
                <gx:coord>-143.420201433 -9.39692620786 1169.77778441</gx:coord>
                <gx:coord>-148.660254038 -5.0 7500.0</gx:coord>
                <gx:coord>-149.84807753 1.73648177667 9698.46310393</gx:coord>
                <gx:coord>-146.427876097 7.66044443119 4131.75911167</gx:coord>
                <gx:coord>-140.0 10.0 5.99864288729e-28</gx:coord>
                <altitudeMode>absolute</altitudeMode>
                <ExtendedData>
                    <SchemaData schemaUrl="#schema_1">
                        <gx:SimpleArrayData name="ext">
                            <gx:value>0.00217237382056</gx:value>
                            <gx:value>0.107224360838</gx:value>
                            <gx:value>1.99669920652</gx:value>
                            <gx:value>14.0278818114</gx:value>
                            <gx:value>37.1819210687</gx:value>
                            <gx:value>37.1819210687</gx:value>
                            <gx:value>14.0278818114</gx:value>
                            <gx:value>1.99669920652</gx:value>
                            <gx:value>0.107224360838</gx:value>
                            <gx:value>0.00217237382056</gx:value>
                        </gx:SimpleArrayData>
                    </SchemaData>
                </ExtendedData>
            </gx:Track>
        </Placemark>
    </Document>
</kml>
4

1 回答 1

0

这看起来确实像一个错误。

我在http://code.google.com/p/earth-issues/issues/detail?id=1399创建了一个问题

如果您给它加星标,那么您将收到任何更新的通知。

同时,您可能希望预处理您的 KML 数据并将插值放置在您缺少 ExtendedData 的位置。

于 2012-03-30T16:52:26.967 回答