当前位置: 首页 > news >正文

一级域名建站网站建设行吗后台的企业网站模板

一级域名建站网站建设行吗,后台的企业网站模板,如何建立公众号的步骤,新手做网站免费教程BikeDNA#xff08;四#xff09;初始化参考数据 这本笔记本#xff1a; 加载定义研究区域的多边形#xff0c;然后为研究区域创建网格叠加。加载参考数据。处理参考数据以创建分析所需的网络结构和属性。 先决条件和条件 输入/输出 config.yml 必须提前设置。 此笔记本…BikeDNA四初始化参考数据 这本笔记本 加载定义研究区域的多边形然后为研究区域创建网格叠加。加载参考数据。处理参考数据以创建分析所需的网络结构和属性。 先决条件和条件 输入/输出 config.yml 必须提前设置。 此笔记本的输出文件保存到 …/data/REFERENCE/[study_area]/processed/ 子文件夹中并在笔记本 2b、3a 和 3b 中使用。 当根据参考数据创建网络时每条边都会分配一个唯一的边 ID。 要将边缘 ID 与原始数据中的 ID 相关联请使用具有网络边缘的数据帧 ref_edges 和 span stylefont-family:courier; ”ref_edges_simplified可以使用。 加载研究区域数据并创建分析网格 这一步 从配置文件“config.yml”加载分析设置。读取研究区域的数据。创建研究区域的网格覆盖网格单元大小在“config.yml”中定义。 Troubleshooting 如果在下面的单元格中位于 src 文件夹中的函数未正确加载检查 pip install -e . 是否已运行 成功请参阅 README.md 中的说明。 # Load libraries, settings and dataimport pickle import warningsimport contextily as cx import geopandas as gpd import matplotlib.pyplot as plt import networkx as nx import osmnx as ox import numpy as npfrom src import evaluation_functions as eval_func from src import graph_functions as graph_func from src import simplification_functions as simp_func from src import plotting_functions as plot_func%run ../settings/plotting.py %run ../settings/yaml_variables.py %run ../settings/paths.pywarnings.filterwarnings(ignore)加载研究区域的数据 研究区域由用户提供的多边形定义。 它将用于计算全局结果即基于研究区域所有数据的质量指标。 # Read polygon for study areastudy_area_poly gpd.read_file(study_area_poly_fp)if study_area_poly.crs None:print(Please assign a crs to the study area polygon!)if study_area_poly.crs ! study_crs:study_area_poly study_area_poly.to_crs(study_crs)assert study_area_poly.crs study_crsarea study_area_poly.area.values[0] print(fThe size of the study area is {area / 1000000:.2f} km2.)The size of the study area is 181.38 km2.# Plot study areaset_renderer(renderer_map) print(This study area will be used for the analysis:)fig, ax plt.subplots(1, figsizepdict[fsmap])study_area_poly.plot(axax, edgecolorpdict[base], facecolornone,alphapdict[alpha_back],hatch/)ax.set_axis_off()cx.add_basemap(ax, crsstudy_area_poly.crs, sourcecx_tile_1)ax.set_title(f{area_name} study area ({area / 1000000:.2f} sqkm))plot_func.save_fig(fig, ref_results_static_maps_fp area_size_reference)This study area will be used for the analysis:创建分析网格 User configurations 网格用于计算许多质量指标的本地结果即网格单元级别。 网格单元的单元大小必须在配置文件中指定。 较小的网格单元会增加计算时间但会给出更精细的结果。 网格单元大小不应小于您预期数据质量实际差异的比例。 # Create and plot gridset_renderer(renderer_map) grid eval_func.create_grid_geometry(study_area_poly, grid_cell_size)grid[grid_id] grid.indexfig, ax plt.subplots(1, figsizepdict[fsmap])grid_cell_area (grid_cell_size / 1000) ** 2 # in km2 print(fThe grid contains {len(grid)} square cells with a side length of {grid_cell_size} m and an area of {grid_cell_area:.2f} km2. ) print(This grid will be used for local (grid cell level) analysis:)grid.plot(axax, facecolornone, edgecolorpdict[base], alphapdict[alpha_back],linewidth0.5)ax.set_axis_off()cx.add_basemap(ax, crsstudy_area_poly.crs, sourcecx_tile_1)ax.set_title(f{area_name} study area ({len(grid)} grid cells, side length {grid_cell_size}m) )plot_func.save_fig(fig, ref_results_static_maps_fp area_grid_reference)The grid contains 2088 square cells with a side length of 300 m and an area of 0.09 km2. This grid will be used for local (grid cell level) analysis:加载并预处理参考数据 这一步 根据参考数据创建网络。将其投影到所选的 CRS。将数据剪切到定义研究区域的多边形。根据几何类型以及是否允许双向行进来测量边缘的基础设施长度。简化网络。创建由相交网格单元索引的所有边和节点数据集的副本。 网络数据模型 在 BikeDNA 中所有输入数据都转换为由节点和边组成的网络结构。 边代表实际的基础设施例如自行车道和路径而节点代表边的起点和终点以及所有交叉路口。 有关更多详细信息请阅读有关网络数据模型的更多信息。 网络简化 将一组线串转换为网络图形格式时并非所有顶点节点都具有相同的含义。 对于边的几何形状所有节点都用于定义边的形状。 然而对于网络的拓扑仅需要那些作为端点或与其他边的交点的节点而所有其他所谓的“间隙”节点不添加任何信息。 为了比较网络中节点和边之间的结构和真实比率需要简化的网络表示仅包括端点和交叉点处的节点或者重要属性值发生变化的位置。 简化网络的另一个优点是节点和边的数量大幅减少这使得计算例程更快。 请注意简化函数仅简化并合并具有相同重要属性例如几何类型、自行车方向和保护级别值的边。 非简化网络左和简化网络右 作为简化例程的一部分如果同一对节点之间存在多条边“平行边”或“多重边”则仅保留其中一条边。 要了解有关此处使用的修改后的 OSMnx 简化 (Boeing, 2017) 的更多信息我们参考此 GitHub repository其中包含简化函数、逻辑解释和演示。 # Read reference data org_ref_data gpd.read_file(reference_fp)# Create data with LineStrings only defined by end and start coordinate ref_data graph_func.unzip_linestrings(org_ref_data, reference_id_col)# Create column with id called osmid ref_data[osmid] ref_data[new_edge_id] ref_data.drop([new_edge_id], axis1, inplaceTrue)# Reproject if ref_data.crs None:print(Please assign a crs to the study area polygon!)if ref_data.crs ! study_crs:ref_data ref_data.to_crs(study_crs)assert ref_data.crs study_crs# Clip reference data to study area poly ref_data ref_data.clip(study_area_poly)ref_data ref_data[ref_data.geometry.length!0.0]# Convert to osmnx graph object graph_ref graph_func.create_osmnx_graph(ref_data)ref_nodes, ref_edges ox.graph_to_gdfs(graph_ref)# Overview of data graph_area eval_func.get_graph_area(ref_nodes, study_area_poly, study_crs) print(fThe {reference_name} data covers an area of {graph_area / 1000000:.2f} km2. ) print(\n)# Classify edges as protected or unprotected ref_edges eval_func.define_protected_unprotected(ref_edges, ref_bicycle_infrastructure_type ) for key, value in ref_edges.protected.value_counts().items():perc np.round(100*value/len(ref_edges),2)print(fEdges where the protection level is {key}: {value} out of {len(ref_edges)} ({perc}%)) print(\n)# Summarize attribute values - if there are columns with values for each row instead of a global setting if bicycle_bidirectional in ref_edges.columns:for key, value in ref_edges[bicycle_bidirectional].value_counts().items():perc np.round(100*value/len(ref_edges),2)print(fEdges where bicycle_bidirectional is {key}: {value} out of {len(ref_edges)} ({perc}%)) else: print(Using global settings for cycling direction.) print(\n)if reference_geometries in ref_edges.columns:for key, value in ref_edges[reference_geometries].value_counts().items():perc np.round(100*value/len(ref_edges),2)print(fEdges where the geometry type is {key}: {value} out of {len(ref_edges)}({perc}%)) else:print(Using global settings for geometry type.) print(\n)# Add attributes to graph protected_dict ref_edges[protected].to_dict() nx.set_edge_attributes(graph_ref, protected_dict, protected)# Add multiple edge attribute to each edge of the graph for e in graph_ref.edges:graph_ref.edges[e][multiedge] 0# Count multiple edges and store info at key 0 # (simplification routine keeps only key 0) for u, v, k in graph_ref.edges:if k 0:graph_ref.edges[u, v, 0][multiedge] 1# Remove geometry attribute (required by simplification function) for n1, n2, d in graph_ref.edges(dataTrue):d.pop(geometry, None)# Simplify - the graph is simplified as much as possible, but without combining edges with conflicting values of bicycle infrastructure types simplify_cols [reference_geometries, bicycle_bidirectional, protected] simplify_cols [s for s in simplify_cols if s in ref_edges.columns] graph_ref_simplified simp_func.simplify_graph(graph_ref, attributessimplify_cols, remove_ringsFalse )graph_ref ox.get_undirected(graph_ref) ref_nodes, ref_edges ox.graph_to_gdfs(graph_ref) graph_ref_simplified ox.get_undirected(graph_ref_simplified)ref_nodes_simplified, ref_edges_simplified ox.graph_to_gdfs(graph_ref_simplified)ref_edges[length] ref_edges.geometry.length ref_edges_simplified[length] ref_edges_simplified.geometry.length# Measure the length of bicycle infrastructure (!from length of edges) if (reference_geometries not in [true_geometries, centerline]and type(bicycle_bidirectional) str ):ref_edges_simplified[infrastructure_length] ref_edges_simplified.apply(lambda x: eval_func.measure_infrastructure_length(edgex.geometry,geometry_typex[reference_geometries],bidirectionalx[bicycle_bidirectional],bicycle_infrastructureyes,),axis1,)elif (reference_geometries in [true_geometries, centerline]and type(bicycle_bidirectional) bool ):ref_edges_simplified[infrastructure_length] ref_edges_simplified.apply(lambda x: eval_func.measure_infrastructure_length(edgex.geometry,geometry_typereference_geometries,bidirectionalbicycle_bidirectional,bicycle_infrastructureyes,),axis1,)elif (reference_geometries in [true_geometries, centerline]and type(bicycle_bidirectional) str ):ref_edges_simplified[infrastructure_length] ref_edges_simplified.apply(lambda x: eval_func.measure_infrastructure_length(edgex.geometry,geometry_typereference_geometries,bidirectionalx[bicycle_bidirectional],bicycle_infrastructureyes,),axis1,)elif (reference_geometries not in [true_geometries, centerline]and type(bicycle_bidirectional) bool ):ref_edges_simplified[infrastructure_length] ref_edges_simplified.apply(lambda x: eval_func.measure_infrastructure_length(edgex.geometry,geometry_typex[reference_geometries],bidirectionalbicycle_bidirectional,bicycle_infrastructureyes,),axis1,)else:print(fInvalid data types for the variables reference_geometetries and/or bicycle_bidirectional!)print(fThe length of the {reference_name} network is {ref_edges_simplified.infrastructure_length.sum()/1000 :.2f} km. )# Creating coulumns with unique feature id (required by some functions) ref_edges[edge_id] ref_edges.reset_index().index ref_edges_simplified[edge_id] ref_edges_simplified.reset_index().indexref_id_dict ref_edges[edge_id].to_dict() nx.set_edge_attributes(graph_ref, ref_id_dict, edge_id)ref_id_dict_s ref_edges_simplified[edge_id].to_dict() nx.set_edge_attributes(graph_ref_simplified, ref_id_dict_s, edge_id)# Saving data to graphs ref_l_dict ref_edges[length].to_dict() nx.set_edge_attributes(graph_ref, ref_l_dict, length)ref_l_dict_s ref_edges_simplified[length].to_dict() nx.set_edge_attributes(graph_ref_simplified, ref_l_dict_s, length)ref_il_dict ref_edges_simplified[infrastructure_length].to_dict() nx.set_edge_attributes(graph_ref_simplified, ref_il_dict, infrastructure_length)The GeoDanmark data covers an area of 169.76 km2.Edges where the protection level is protected: 46097 out of 53580 (86.03%) Edges where the protection level is unprotected: 7483 out of 53580 (13.97%)Using global settings for cycling direction.Using global settings for geometry type.The length of the GeoDanmark network is 626.48 km.# Plot global statistics (by network length)set_renderer(renderer_plot) ymax ref_edges.length.sum() * 1.2 /1000 # conversion m to km# attribute: bidirectional if bicycle_bidirectional in ref_edges.columns:x []y []for value in np.unique(ref_edges[bicycle_bidirectional]):x.append(str(value))y.append(ref_edges[ref_edges[bicycle_bidirectional]value].length.sum()/1000) # conversion m to kmplot_func.make_bar_plot(data y,bar_labels x,y_label Network edge lengths [km],x_positions [i for i in range(len(x))],title f{area_name}\n {reference_name} edges by bidirectionality,bar_colors len(x)*[pdict[ref_base]],filepath ref_results_plots_fp edge_global_bidirectional,ylim ymax,figsizepdict[fsbar_small]);# attribute: protection x [] y []for value in np.unique(ref_edges.protected):x.append(value)y.append(ref_edges[ref_edges[protected]value].length.sum()/1000) # conversion m to kmplot_func.make_bar_plot(data y,bar_labels x,y_label Network edge lengths [km],x_positions [i for i in range(len(x))],title f{area_name}\n {reference_name} edges by infrastructure type,bar_colors len(x)*[pdict[ref_base]],filepath ref_results_plots_fp edge_global_infrastructuretype,ylim ymax,figsizepdict[fsbar_small] );# attribute: bicycle geometries (mapping type) if reference_geometries in ref_edges.columns:x []y []for value in np.unique(ref_edges[reference_geometries]):x.append(value)y.append(ref_edges[ref_edges[reference_geometries]value].length.sum()/1000) # conversion m to kmplot_func.make_bar_plot(data y,bar_labels x,y_label Network edge lengths [km],x_positions [i for i in range(len(x))],title f{area_name}\n {reference_name} edges by mapping type,bar_colors len(x)*[pdict[ref_base]],filepath ref_results_plots_fp edge_global_mappingtype,ylim ymax,figsizepdict[fsbar_small]);# Plot networkset_renderer(renderer_map) fig, ax plt.subplots(1, figsizepdict[fsmap])ref_edges_simplified.plot(axax, colorpdict[ref_base], linewidthpdict[line_base]) ref_nodes_simplified.plot(axax, colorpdict[ref_emp], markersizepdict[mark_emp])study_area_poly.plot(axax, edgecolorpdict[base], facecolorNone, linewidth1)ax.set_axis_off()cx.add_basemap(ax, crsstudy_area_poly.crs, sourcecx_tile_2)ax.set_title(f{area_name}, {reference_name} network)plot_func.save_fig(fig, ref_results_static_maps_fp area_network_reference)# Joining grid cell id to network elementsref_edges_simp_joined gpd.overlay(ref_edges_simplified.reset_index(), grid, howintersection, keep_geom_typeTrue ) ref_edges_joined gpd.overlay(ref_edges.reset_index(), grid, howintersection, keep_geom_typeTrue )ref_nodes_simp_joined gpd.overlay(ref_nodes_simplified.reset_index(), grid, howintersection, keep_geom_typeTrue ) ref_nodes_joined gpd.overlay(ref_nodes.reset_index(), grid, howintersection, keep_geom_typeTrue )# Count features in each grid cell all_data_ref [ref_edges_joined,ref_nodes_joined,ref_edges_simp_joined,ref_nodes_simp_joined, ] labels_ref [ref_edges, ref_nodes, ref_simplified_edges, ref_simplified_nodes]for data, label in zip(all_data_ref, labels_ref):df eval_func.count_features_in_grid(data, label)grid eval_func.merge_results(grid, df, left)# Recomputing infrastructure length for data joined to grid ref_edges_simp_joined[length] ref_edges_simp_joined[geometry].lengthif (reference_geometries not in [true_geometries, centerline]and type(bicycle_bidirectional) str ):ref_edges_simp_joined[infrastructure_length] ref_edges_simp_joined.apply(lambda x: eval_func.measure_infrastructure_length(edgex.geometry,geometry_typex[reference_geometries],bidirectionalx[bicycle_bidirectional],bicycle_infrastructureyes,),axis1,)elif (reference_geometries in [true_geometries, centerline]and type(bicycle_bidirectional) bool ):ref_edges_simp_joined[infrastructure_length] ref_edges_simp_joined.apply(lambda x: eval_func.measure_infrastructure_length(edgex.geometry,geometry_typereference_geometries,bidirectionalbicycle_bidirectional,bicycle_infrastructureyes,),axis1,)elif (reference_geometries in [true_geometries, centerline]and type(bicycle_bidirectional) str ):ref_edges_simp_joined[infrastructure_length] ref_edges_simp_joined.apply(lambda x: eval_func.measure_infrastructure_length(edgex.geometry,geometry_typereference_geometries,bidirectionalx[bicycle_bidirectional],bicycle_infrastructureyes,),axis1,)elif (reference_geometries not in [true_geometries, centerline]and type(bicycle_bidirectional) bool ):ref_edges_simp_joined[infrastructure_length] ref_edges_simp_joined.apply(lambda x: eval_func.measure_infrastructure_length(edgex.geometry,geometry_type[reference_geometries],bidirectionalbicycle_bidirectional,bicycle_infrastructureyes,),axis1,)else:print(fInvalid data types for the variables reference_geometries and/or bicycle_bidirectional!)assert round(ref_edges_simplified.infrastructure_length.sum() / 1000, 1) round(ref_edges_simp_joined.infrastructure_length.sum() / 1000, 1 )# Save reference data exec(open(../settings/save_refdata.py).read())GeoDanmark nodes and edges saved successfully! GeoDanmark networks saved successfully! Reference grid saved successfully!from time import strftime print(Time of analysis: strftime(%a, %d %b %Y %H:%M:%S))Time of analysis: Mon, 18 Dec 2023 20:19:22
http://www.zqtcl.cn/news/49269/

相关文章:

  • 松江建设管理中心网站企业网站做的好
  • 做pc端网站机构便宜网站建设公司
  • 西宁网站建设开发公司seo网站推广收费
  • 西安官方网站建设wordpress焦点图
  • 北京品牌网站电子产品网站开发背景
  • 网站建设 项目背景福州市网站建设
  • asp网站加速上海公司名字
  • 商城网站建设好么什么网站做简历比较好
  • 网站建设与软件开发哪个好赚钱网站的页面由什么组成
  • 国家城乡和住房建设部网站首页go语言网站开发
  • o2o网站建设流程wordpress网站加cnzz
  • vue 网站开发狗和女人做的网站
  • 网站开发详细设计wordpress 注册 登录
  • 衡器行业网站建设模板建设银行企业网站打不开
  • 彩票网站开发制作网站硬件防火墙
  • 鼎成中考开卷通有关网站做的电子书wordpress首页内容怎么修改
  • 十大购物网站北京做网站找哪家好
  • 网站建设的地方网站模板设计
  • 百度网站怎么优化排名气象网站建设的自查报告
  • 网站开发vue青岛公司的网站设计
  • 网站建设怎么自学普通网站 用多说
  • 网站开发前台实训做旅游网站需要什么
  • t恤在线制作网站公司网站开发文档
  • 网站设置flash插件wordpress去标题版权
  • 学校校园网站建设服务辽宁建设工程信息网查
  • 朵朵软件网站建设培训课程
  • 做网站需要交钱吗附近学电脑培训班
  • 域名有了怎么建网站火车头wordpress 4.7
  • 网站建设格局wordpress打开图片预览代码
  • 怎么建设像天猫的网站网页制作与网站建设宝典 第2版