将具有多种功能的Kml转换为Geojson [英] Convert Kml with multiple features to Geojson

查看:228
本文介绍了将具有多种功能的Kml转换为Geojson的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我使用此代码将具有单个功能的kml文件转换为GeoJson文件.

I use this code to convert a kml file with a single feature to a GeoJson file.

String kmlToGeoJson(String fileName)
        throws IOException, ParserConfigurationException, SAXException, XMLStreamException {

    FileInputStream reader = new FileInputStream(fileName);
    PullParser parser = new PullParser(new KMLConfiguration(),reader, SimpleFeature.class);

    FeatureJSON fjson = new FeatureJSON();
    FileWriter tmp = new FileWriter(fileName + ".geojson");
    BufferedWriter writer = new BufferedWriter(tmp);

    SimpleFeature simpleFeature = (SimpleFeature) parser.parse();

    while (simpleFeature != null) {
        fjson.writeFeature(simpleFeature, writer);
        simpleFeature = (SimpleFeature) parser.parse();
    }

    return "success";
}

但是,当我使用具有多种功能的Kml文件时:

However, when I use a Kml file with multiple features like this one :

<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://www.opengis.net/kml/2.2">
  <Document>
    <name>KmlFile</name>
    <Style id="west_campus_style">
      <IconStyle>
        <Icon>
          <href>https://maps.google.com/mapfiles/kml/pushpin/ylw-pushpin.png
          </href>
        </Icon>
      </IconStyle>
      <BalloonStyle>
        <text>$[video]</text>
      </BalloonStyle>
    </Style>
    <Placemark>
      <name>Google West Campus 1</name>
      <styleUrl>#west_campus_style</styleUrl>
      <ExtendedData>
        <Data name="video">
          <value><![CDATA[<iframe width="480" height="360"
            src="https://www.youtube.com/embed/ZE8ODPL2VPI" frameborder="0"
            allowfullscreen></iframe><br><br>]]></value>
        </Data>
      </ExtendedData>
      <Point>
        <coordinates>-122.0914977709329,37.42390182131783,0</coordinates>
      </Point>
    </Placemark>
    <Placemark>
      <name>Google West Campus 2</name>
      <styleUrl>#west_campus_style</styleUrl>
      <ExtendedData>
        <Data name="video">
          <value><![CDATA[<iframe width="480" height="360"
            src="https://www.youtube.com/embed/nb4gvrNrDWw" frameborder="0"
            allowfullscreen></iframe><br><br>]]></value>
        </Data>
      </ExtendedData>
      <Point>
        <coordinates>-122.0926995893311,37.42419403634421,0</coordinates>
      </Point>
    </Placemark>
    <Placemark>
      <name>Google West Campus 3</name>
      <styleUrl>#west_campus_style</styleUrl>
      <ExtendedData>
        <Data name="video">
          <value><![CDATA[<iframe width="480" height="360"
            src="https://www.youtube.com/embed/0hhiEjf7_NA" frameborder="0"
            allowfullscreen></iframe><br><br>]]></value>
        </Data>
      </ExtendedData>
      <Point>
        <coordinates>-122.0922532985281,37.42301710721216,0</coordinates>
      </Point>
    </Placemark>
  </Document>
</kml>

我得到了这个Geojson文件:

I get this Geojson file :

{ "type":"Feature",
         "geometry":{
                   "type":"Point",
                   "coordinates":[-122.0915,37.4239,0.0]},
         "properties":{"name":"Google West Campus 1",
                      "visibility":true,
                      "open":true,
                      "Style":"FeatureTypeStyleImpl[ name=name, [], rules=<1>                   (<RuleImpl> null\n)]"},
         "id":"fid--579a589e_150ad9a2e4f_-8000"
           }
{"type":"Feature",
"geometry":{
            "type":"Point",
            "coordinates":[-122.0927,37.4242,0.0]},
"properties":{
             "name":"Google West Campus 2",               
             "visibility":true, 
             "open":true,
             "Style":"FeatureTypeStyleImpl[ name=name, [], rules=<1>(<RuleImpl> null\n)]"},
"id":"fid--579a589e_150ad9a2e4f_-7fff"
}
{"type":"Feature",
"geometry":{
           "type":"Point",
           "coordinates":[-122.0923,37.423,0.0]},
"properties":{"name":"Google West Campus 3",
              "visibility":true,
              "open":true,
              "Style":"FeatureTypeStyleImpl[ name=name, [], rules=<1>(<RuleImpl> null\n)]"},
"id":"fid--579a589e_150ad9a2e4f_-7ffe"}
{"type":"Feature",
"properties":          
          {"name":"KmlFile",
          "visibility":true,
          "open":true,
         "name":"KmlFile",
         "Feature":"[]"},
"id":"fid--579a589e_150ad9a2e4f_-7ffd"}

就好像整个kml文件都被视为单一功能,功能之间没有逗号. 如何获得将整个文件视为多功能文件的信息 我尝试用SimpleFeatureCollection.class替换SimpleFeature.class,但是返回的Geojson文件为空.

It's like the whole kml file is considered a Single feature, with no comma between the features. How do I get it to consider the whole file as a Multiple Feature File I tried replacing SimpleFeature.class with SimpleFeatureCollection.class, buth the returned Geojson file is empty then.

推荐答案

我认为您需要类似的东西来生成FeatureCollection:

I think that you need something like this to produce a FeatureCollection:

        FileInputStream reader = new FileInputStream(args[0]);
        PullParser parser = new PullParser(new KMLConfiguration(), reader, SimpleFeature.class);

        FeatureJSON fjson = new FeatureJSON();
        FileWriter tmp = new FileWriter(args[0] + ".geojson");
        BufferedWriter writer = new BufferedWriter(tmp);
        ArrayList<SimpleFeature> features = new ArrayList<>();
        SimpleFeature simpleFeature = (SimpleFeature) parser.parse();
        while (simpleFeature != null) {
            System.out.println(simpleFeature);
            features.add(simpleFeature);
            simpleFeature = (SimpleFeature) parser.parse();
        }
        SimpleFeatureCollection fc = DataUtilities.collection(features);
        fjson.writeFeatureCollection(fc, System.out);

这篇关于将具有多种功能的Kml转换为Geojson的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆