从CLLocation数组创建GPX文件

问题描述 投票:8回答:5

我的应用程序需要使用application共享设备中的CLLocations(Route)数组。我没有在此之前使用GPX的经验。 GPX是最好的格式吗?如何从给定的CLLocations数组创建GPX文件? Objective C中是否有标准的GPX解析器?从我在网上搜索的内容和SO分别回答这些问题

1.cant say
2. I have seen some webpages converting data of points in GPX format but could not find how they are doing it.
3. No

如果我得到其他答案/意见,我会很高兴。我知道这些都是很多问题。任何帮助或建议将非常感激。

iphone ios parsing core-location gpx
5个回答
7
投票

Watanabe Toshinori刚刚成为你最好的朋友(我也是),代码在这里:

http://github.com/FLCLjp/iOS-GPX-Framework

http://github.com/FLCLjp/GPX-Logger

http://github.com/FLCLjp/GPX-Viewer


3
投票

回答您的具体问题:

  1. 是的,GPX是一种非常好的共享位置数据的格式。这就是它的用途。
  2. 我没有代码来执行此操作,但您需要迭代CLLocations数组并构建xml数据结构。使用一个支持写入的xml解析器。 (见下面的链接)。
  3. Objective C中没有标准的GPX解析器,但GPX只是xml,因此您可以使用在iOS或OSX下工作的任何xml解析器。 Ray Wenderlich有a very good tutorial on on using xml under iOS,它解释了如何根据需要选择合适的解析器。这不是GPX特有的,但GPX只是xml的一种风味;原则是一样的。

3
投票

GPX示例:

<gpx xmlns="http://www.topografix.com/GPX/1/1"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.topografix.com/GPX/1/1 http://www.topografix.com/GPX/1/1/gpx.xsd"
    version="1.1"
    creator="YourCompanyName">

     <wpt lat="Your latitude" lon="Your longitude">

       <time>Your Time</time>

       <name>Your Location name.</name>

    </wpt>

</gpx>

gpx(GPS交换格式)文件以.gpx扩展名结尾

您所要做的就是迭代CLLocations数组并创建标记(wpx)并将文件另存为.gpx

我希望这有帮助


2
投票

这里是swift 4,万一有人需要用UIAlert来输入文件名

    func handleCancel(alertView: UIAlertAction!)
    {
        print("Cancelled !!")
    }

    let alert = UIAlertController(title: "Export GPX", message: "Enter a name for the file", preferredStyle: .alert)

    alert.addTextField { (textField) in
        textField.text = ""
    }
    alert.addAction(UIAlertAction(title: "Cancel", style: .cancel, handler:handleCancel))
    alert.addAction(UIAlertAction(title: "Done", style: .default, handler:{ (UIAlertAction) in
        if alert.textFields?[0].text != nil {
            let fileName = "\(String(describing: alert.textFields![0].text!)).GPX"
            let path = NSURL(fileURLWithPath: NSTemporaryDirectory()).appendingPathComponent(fileName)
            var gpxText : String = String("<?xml version=\"1.0\" encoding=\"UTF-8\"?><gpx version=\"1.1\" creator=\"yourAppNameHere\" xmlns=\"http://www.topografix.com/GPX/1/1\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:gte=\"http://www.gpstrackeditor.com/xmlschemas/General/1\" xsi:schemaLocation=\"http://www.topografix.com/GPX/1/1 http://www.topografix.com/GPX/1/1/gpx.xsd\">")
            gpxText.append("<trk><trkseg>")
            for locations in self.locationsArray{
                let newLine : String = String("<trkpt lat=\"\(String(format:"%.6f", locations.locLatitude))\" lon=\"\(String(format:"%.6f", locations.locLongitude))\"><ele>\(locations.locAltitude)</ele><time>\(String(describing: locations.locTimestamp!))</time></trkpt>")
            gpxText.append(contentsOf: newLine)
            }
            gpxText.append("</trkseg></trk></gpx>")
            do {
                try gpxText.write(to: path!, atomically: true, encoding: String.Encoding.utf8)

                let vc = UIActivityViewController(activityItems: [path!], applicationActivities: [])

                self.present(vc, animated: true, completion: nil)

            } catch {

                print("Failed to create file")
                print("\(error)")
            }

        } else {
            print("There is no data to export")

        }


    }))
    self.present(alert, animated: true, completion: {
        print("completion block")
    })
}


func textFieldHandler(textField: UITextField!)
{
      if (textField) != nil {
    textField.text = ""
  }
}

-1
投票

使用Xcode 5,添加新文件 - >资源 - > GPX文件。

© www.soinside.com 2019 - 2024. All rights reserved.