KML 文件中使用的时间格式是什么?
我正在 iPhone 上解析 KML 文件,我需要知道 KML 文件中该字符串的时间格式是:2011-05-16T08:00:59Z
。
我认为它类似于以下内容,但我不知道 Z
代表什么:YYYY-MM-ddTHH:mm:ss
。
I am parsing a KML file on the iPhone, and I need to know what the time format of this string from the KML file is: 2011-05-16T08:00:59Z
.
I think it is somewhere along the lines of the following, but I don't know what the Z
stands for: YYYY-MM-ddTHH:mm:ss
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是 ISO 8601。
Z
代表 祖鲁时间,也称为 UTC 或 GMT,即+0
时区。This is ISO 8601. The
Z
stands for Zulu time, also called UTC or GMT, i.e. the+0
timezone.我在 Python 中使用它来将 Django 对象转换为 KML TimeStamp(注意 TimeStamp 中的大写 S - 这让我困惑了一段时间):
I use this in Python to convert Django objects into KML TimeStamp (notice the capital S in TimeStamp - that threw me for a while):