- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我想将 Excel 文件转换为 geojson 文件。字典是这样的:
[
{"NoAdresse": 42537006584, "NoUsager": 42537000086, "LatEffective": 45.83675, "LongDebut": 4.91956, "LatDebut": 45.75529, "LongEffective": 4.84574, "IdVehicule": "246Veh", "LatArrivee": 45.83492, "NoDemande": 42537000003, "LongArrivee": 4.84762},
{"NoAdresse": 42537007718, "NoUsager": 42537002720, "LatEffective": 45.83955, "LongDebut": 4.84574, "LatDebut": 45.83675, "LongEffective": 4.83098, "IdVehicule": "246Veh", "LatArrivee": 45.83935, "NoDemande": 42537000004, "LongArrivee": 4.83084},
{"NoAdresse": 42537005803, "NoUsager": 42537002424, "LatEffective": 45.98730, "LongDebut": 4.83098, "LatDebut": 45.83955, "LongEffective": 4.72695, "IdVehicule": "246Veh", "LatArrivee": 45.98174, "NoDemande": 42537000006, "LongArrivee": 4.73942},
{"NoAdresse": 42537005803, "NoUsager": 42537003576, "LatEffective": 45.98730, "LongDebut": 4.83098, "LatDebut": 45.83955, "LongEffective": 4.72695, "IdVehicule": "246Veh", "LatArrivee": 45.98174, "NoDemande": 42537000005, "LongArrivee": 4.73942},
{"NoAdresse": 42537004215, "NoUsager": 42537003576, "LatEffective": 45.93778, "LongDebut": 4.72695, "LatDebut": 45.9873, "LongEffective": 4.62676, "IdVehicule": "246Veh", "LatArrivee": 45.93784, "NoDemande": 42537000005, "LongArrivee": 4.62625},
{"NoAdresse": 42537004215, "NoUsager": 42537002424, "LatEffective": 45.93778, "LongDebut": 4.72695, "LatDebut": 45.9873, "LongEffective": 4.62676, "IdVehicule": "246Veh", "LatArrivee": 45.93784, "NoDemande": 42537000006, "LongArrivee": 4.62625},
{"NoAdresse": 42537004215, "NoUsager": 42537002720, "LatEffective": 45.93778, "LongDebut": 4.72695, "LatDebut": 45.9873, "LongEffective": 4.62676, "IdVehicule": "246Veh", "LatArrivee": 45.93784, "NoDemande": 42537000004, "LongArrivee": 4.62625},
{"NoAdresse": 42537004215, "NoUsager": 42537000086, "LatEffective": 45.93778, "LongDebut": 4.72695, "LatDebut": 45.9873, "LongEffective": 4.62676, "IdVehicule": "246Veh", "LatArrivee": 45.93784, "NoDemande": 42537000003, "LongArrivee": 4.62625},
{"NoAdresse": 42537000007, "NoUsager": 42537002425, "LatEffective": 45.72941, "LongDebut": 4.77845, "LatDebut": 45.77335, "LongEffective": 4.88396, "IdVehicule": "164Veh", "LatArrivee": 45.72815, "NoDemande": 42537000070, "LongArrivee": 4.88241},
{"NoAdresse": 42537000007, "NoUsager": 42537002425, "LatEffective": 45.69349, "LongDebut": 4.88396, "LatDebut": 45.72941, "LongEffective": 4.94466, "IdVehicule": "164Veh", "LatArrivee": 45.69429, "NoDemande": 42537000070, "LongArrivee": 4.94216}]
我使用这段代码来实现这一点:
import json
from xlrd import open_workbook
book = open_workbook('forum.xlsx')
sheet = book.sheet_by_index(0)
keys = [sheet.cell(0,col_index).value for col_index in xrange(sheet.ncols)]
dict_list = []
for row_index in xrange(1,sheet.nrows):
d = {keys[col_index]: sheet.cell(row_index,col_index).value
for col_index in xrange(sheet.ncols)}
dict_list.append(d)
j = json.dumps(dict_list)
with open('data.json','w') as f:
f.write(j)
然后我想将其放入以下形式的 geojson 文件中:
{ "type": "FeatureCollection",
"features": [{
"type": "Feature",
"geometry": {
"type": "LineString",
"coordinates": [[LatDebut, LongDebut],[LatEffective,LongEffective]]
},
"properties": {
"NoAdresse": "XXX",
"NoUsager": "XXX",
"NoDemand":"XXX",
"IdVehicule":"XXX"
}
}, {
...
}]
}
我不知道该怎么做,也不知道是否有另一种方法可以直接从 Excel 转换为 geojson 文件。此外,我想添加一个属性“Tour”,每次“IdVehicle”更改时它都会更改。我知道这个要求太多了,但我被困了这么久,任何帮助将不胜感激。
谢谢
最佳答案
因此,如果您知道如何将字典“按摩”到您想要的最终结构中 - 将所有“其他元素”移动到某些属性成员中 - 那么我认为它就像
# work on dict_list to produce some dict_in_geojson_form
# ... then:
with open('data.json','w') as f:
json.dump(dict_in_geojson_form, f)
如果序列化仍然不清楚,您可能还想看看 Python dump dict to json file或How do I write JSON data to a file in Python? ...
高级更新:根据修改后的请求进行一些简单的转换并添加了游览枚举。请参阅下面的示例代码(拆分在不同的代码框中,以便不必滚动...:
#! /usr/bin/env python
"""Map a specific stream to seom GeoJSON target structure and stream the
output in chunks as elements are complete (any new vehicle id increments
the tour label which works like an enumeration in the properties of the
features GeoJSON representation)."""
from __future__ import print_function
import copy
import json
import sys
NO_ADDRESS = 'NoAdresse'
NO_USAGE = 'NoUsager'
ID_VEHICLE = 'IdVehicule'
NO_DEMAND = 'NoDemande'
TOUR_LABEL = 'Tour'
PROPERTY_KEYS = (NO_ADDRESS, NO_USAGE, ID_VEHICLE, NO_DEMAND)
LAT_DEBUT = 'LatDebut'
LONG_DEBUT = 'LongDebut'
LAT_EFFECTIVE = 'LatEffective'
LONG_EFFECTIVE = 'LongEffective'
COORD_KEYS_DEBUT = (LAT_DEBUT, LONG_DEBUT)
COORD_KEYS_EFFECTIVE = (LAT_EFFECTIVE, LONG_EFFECTIVE)
PROPERTIES_KEY = 'properties'
GEOMETRY_KEY = 'geometry'
COORDINATES_KEY = 'coordinates'
FEATURES_KEY = 'features'
GEOJSON_FRAME_PREFIX = """{
"type": "FeatureCollection",
"features": [
"""
FEATURE_TEMPLATE = {
"type": "Feature",
GEOMETRY_KEY: {
"type": "LineString",
"coordinates": []
},
"properties": {
NO_ADDRESS: None,
NO_USAGE: None,
NO_DEMAND: None,
ID_VEHICLE: None,
TOUR_LABEL: None
}}
GEOJSON_LIST_SEP = ',\n'
GEOJSON_FRAME_POSTFIX = ']\n}\n'
def event_source():
"""Sample input line source generator. Might anything yielding
python dictionaries matching "this questions" event specification."""
event_seq = [
{NO_ADDRESS: 42537006584, NO_USAGE: 42537000086,
LAT_EFFECTIVE: 45.83675, LONG_DEBUT: 4.91956,
LAT_DEBUT: 45.75529, LONG_EFFECTIVE: 4.84574,
ID_VEHICLE: "246Veh", "LatArrivee": 45.83492,
NO_DEMAND: 42537000003, "LongArrivee": 4.84762},
{NO_ADDRESS: 42537007718, NO_USAGE: 42537002720,
LAT_EFFECTIVE: 45.83955, LONG_DEBUT: 4.84574,
LAT_DEBUT: 45.83675, LONG_EFFECTIVE: 4.83098,
ID_VEHICLE: "246Veh", "LatArrivee": 45.83935,
NO_DEMAND: 42537000004, "LongArrivee": 4.83084},
# ...
{NO_ADDRESS: 42537000007, NO_USAGE: 42537002425,
LAT_EFFECTIVE: 45.69349, LONG_DEBUT: 4.88396,
LAT_DEBUT: 45.72941, LONG_EFFECTIVE: 4.94466,
ID_VEHICLE: "164Veh", "LatArrivee": 45.69429,
NO_DEMAND: 42537000070, "LongArrivee": 4.94216}]
for event in event_seq:
yield event
def feature_from(event):
"""Transform event to feature, applying the "business" rules."""
feature = copy.deepcopy(FEATURE_TEMPLATE)
for property_key in PROPERTY_KEYS:
feature[PROPERTIES_KEY][property_key] = event[property_key]
coords_debut = [event[k] for k in COORD_KEYS_DEBUT]
coords_effective = [event[k] for k in COORD_KEYS_EFFECTIVE]
feature[GEOMETRY_KEY][COORDINATES_KEY].append(coords_debut)
feature[GEOMETRY_KEY][COORDINATES_KEY].append(coords_effective)
return feature
def feature_gen(events):
"""Generator creates features from events (might be a good place
to hook into validty checks in real lif processing)."""
for event in events:
yield feature_from(event)
def tour_gen(features):
"""Generator emits the feature in chunks per complete tour as detected
by a change in vehicle id."""
id_vehicle_active = None
tour_enumeration = None
for feature in features:
id_vehicle_received = feature[PROPERTIES_KEY][ID_VEHICLE]
if id_vehicle_active is None:
id_vehicle_active = id_vehicle_received
tour_enumeration = 1
tour = []
if id_vehicle_active != id_vehicle_received:
yield tour
tour = []
tour_enumeration += 1
id_vehicle_active = id_vehicle_received
feature[PROPERTIES_KEY][TOUR_LABEL] = tour_enumeration
tour.append(feature)
else:
feature[PROPERTIES_KEY][TOUR_LABEL] = tour_enumeration
tour.append(feature)
if tour:
yield tour
def geojson_out(text, stream=sys.stdout):
"""Expected JSON text is output here."""
stream.write(text)
def main():
"""Poor man's streaming falls back on hardcoded GeoJSON "frame"
string as pre and post fix to the feature stream. the latter
elements are accumulated in chunks carrying common "tour"
enumeration label.
The frame structure in Python lingo is:
geo_dict = {"type": "FeatureCollection", "features": []}
The features will be injected in the list and in this implementation
need some stateful separator injection hack, to yield valid JSON
(which does not allow trailing comma after last array elememt).
"""
with open('yumyum.geojson', 'wt') as f_out:
geojson_out(GEOJSON_FRAME_PREFIX, stream=f_out)
json_array_nanny_needed = False # Semi-auto, means semi-manual =(
for features in tour_gen(feature_gen(event_source())):
for feature in features:
if json_array_nanny_needed:
geojson_out(GEOJSON_LIST_SEP, stream=f_out)
geojson_out(json.dumps(feature, sort_keys=True), stream=f_out)
json_array_nanny_needed = True # HACK A DID ACK
geojson_out(GEOJSON_FRAME_POSTFIX, stream=f_out)
if __name__ == '__main__':
main()
处理的想法应该在文档字符串中......
人们还可以收集/聚合/过滤每个车辆 ID 的坐标,或者......它是 Python 一种通用编程语言;-)
在我的机器上 yumyum.txt 内的输出是:
$ cat yumyum.geojson
{
"type": "FeatureCollection",
"features": [
{"geometry": {"coordinates": [[45.75529, 4.91956], [45.83675, 4.84574]], "type": "LineString"}, "properties": {"IdVehicule": "246Veh", "NoAdresse": 42537006584, "NoDemande": 42537000003, "NoUsager": 42537000086, "Tour": 1}, "type": "Feature"},
{"geometry": {"coordinates": [[45.83675, 4.84574], [45.83955, 4.83098]], "type": "LineString"}, "properties": {"IdVehicule": "246Veh", "NoAdresse": 42537007718, "NoDemande": 42537000004, "NoUsager": 42537002720, "Tour": 1}, "type": "Feature"},
{"geometry": {"coordinates": [[45.72941, 4.88396], [45.69349, 4.94466]], "type": "LineString"}, "properties": {"IdVehicule": "164Veh", "NoAdresse": 42537000007, "NoDemande": 42537000070, "NoUsager": 42537002425, "Tour": 2}, "type": "Feature"}]
}
关于python - 如何将 python dict 转换为标准形式的 geojson 文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38072738/
今天我在一个 Java 应用程序中看到了几种不同的加载文件的方法。 文件:/ 文件:// 文件:/// 这三个 URL 开头有什么区别?使用它们的首选方式是什么? 非常感谢 斯特凡 最佳答案 file
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引起辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the he
我有一个 javascript 文件,并且在该方法中有一个“测试”方法,我喜欢调用 C# 函数。 c# 函数与 javascript 文件不在同一文件中。 它位于 .cs 文件中。那么我该如何管理 j
需要检查我使用的文件/目录的权限 //filePath = path of file/directory access denied by user ( in windows ) File fil
我在一个目录中有很多 java 文件,我想在我的 Intellij 项目中使用它。但是我不想每次开始一个新项目时都将 java 文件复制到我的项目中。 我知道我可以在 Visual Studio 和
已关闭。此问题不符合Stack Overflow guidelines 。目前不接受答案。 这个问题似乎不是关于 a specific programming problem, a software
我有 3 个组件的 Twig 文件: 文件 1: {# content-here #} 文件 2: {{ title-here }} {# content-here #}
我得到了 mod_ldap.c 和 mod_authnz_ldap.c 文件。我需要使用 Linux 命令的 mod_ldap.so 和 mod_authnz_ldap.so 文件。 最佳答案 从 c
我想使用PIE在我的项目中使用 IE7。 但是我不明白的是,我只能在网络服务器上使用 .htc 文件吗? 我可以在没有网络服务器的情况下通过浏览器加载的本地页面中使用它吗? 我在 PIE 的文档中看到
我在 CI 管道中考虑这一点,我应该首先构建和测试我的应用程序,结果应该是一个 docker 镜像。 我想知道使用构建环境在构建服务器上构建然后运行测试是否更常见。也许为此使用构建脚本。最后只需将 j
using namespace std; struct WebSites { string siteName; int rank; string getSiteName() {
我是 Linux 新手,目前正在尝试使用 ginkgo USB-CAN 接口(interface) 的 API 编程功能。为了使用 C++ 对 API 进行编程,他们提供了库文件,其中包含三个带有 .
我刚学C语言,在实现一个程序时遇到了问题将 test.txt 文件作为程序的输入。 test.txt 文件的内容是: 1 30 30 40 50 60 2 40 30 50 60 60 3 30 20
如何连接两个tcpdump文件,使一个流量在文件中出现一个接一个?具体来说,我想“乘以”一个 tcpdump 文件,这样所有的 session 将一个接一个地按顺序重复几次。 最佳答案 mergeca
我有一个名为 input.MP4 的文件,它已损坏。它来自闭路电视摄像机。我什么都试过了,ffmpeg , VLC 转换,没有运气。但是,我使用了 mediainfo和 exiftool并提取以下信息
我想做什么? 我想提取 ISO 文件并编辑其中的文件,然后将其重新打包回 ISO 文件。 (正如你已经读过的) 我为什么要这样做? 我想开始修改 PSP ISO,为此我必须使用游戏资源、 Assets
给定一个 gzip 文件 Z,如果我将其解压缩为 Z',有什么办法可以重新压缩它以恢复完全相同的 gzip 文件 Z?在粗略阅读了 DEFLATE 格式后,我猜不会,因为任何给定的文件都可能在 DEF
我必须从数据库向我的邮件 ID 发送一封带有附件的邮件。 EXEC msdb.dbo.sp_send_dbmail @profile_name = 'Adventure Works Admin
我有一个大的 M4B 文件和一个 CUE 文件。我想将其拆分为多个 M4B 文件,或将其拆分为多个 MP3 文件(以前首选)。 我想在命令行中执行此操作(OS X,但如果需要可以使用 Linux),而
快速提问。我有一个没有实现文件的类的项目。 然后在 AppDelegate 我有: #import "AppDelegate.h" #import "SomeClass.h" @interface A
我是一名优秀的程序员,十分优秀!