上一页 1 2 3 4 5 6 7 8 9 ··· 21 下一页
摘要: import matplotlib.pyplot as plt from osmnx import settings, config from osmnx import geocoder, graph_from_point, graph_from_place, graph_from_address, 阅读全文
posted @ 2021-06-05 22:30 土博姜山山 阅读(211) 评论(0) 推荐(0) 编辑
摘要: # Obtain a transportation network from an osm file. # get osm file 方式1:OpenStreetMap Homepage # .osm.pbf下载地址 方式2:http://download.openstreetmap.fr/extr 阅读全文
posted @ 2021-06-05 21:52 土博姜山山 阅读(183) 评论(1) 推荐(1) 编辑
摘要: #### 基于Douglas-Peucker算法对矢量数据简化 #### # 当原始的矢量数据因为形状复杂,包含的点较多时,会导致其文件体积较大, # 如果我们需要在在线地图上叠加它们,太大体积的矢量数据不仅会拖慢网络传输速度, # 也会给图形的渲染带来更大的压力,这时对矢量数据进行简化就非常有必要 阅读全文
posted @ 2021-06-05 20:41 土博姜山山 阅读(282) 评论(0) 推荐(0) 编辑
摘要: # shapefile文件信息的读取 # 相比pyshp库,geopandas库的数据读取、展示、分析、拓展的效果要更好。 # geopandas可以读取zip中的shapefile, # 还可以读取GeoJson、ArcGIS中地理数据库gdb,以及QGIS中GeoPackage 存放的矢量数据。 阅读全文
posted @ 2021-06-05 20:40 土博姜山山 阅读(581) 评论(0) 推荐(0) 编辑
摘要: import os from PIL import Image import psycopg2 as ps from io import StringIO, BytesIO def table_exist(table_name=None, conn=None): if conn is not Non 阅读全文
posted @ 2021-06-04 16:19 土博姜山山 阅读(229) 评论(0) 推荐(0) 编辑
摘要: # 骨架提取-skeleton # 骨架提取属于形态学处理范畴,放在skimage.morphology子模块内 # 骨架提取,也叫二值图像细化。将一个连通区域细化成一个像素的宽度,用于特征提取和目标拓扑表示。 # skimage.morphology子模块提供了两个函数用于骨架提取,分别是Skel 阅读全文
posted @ 2021-06-03 10:17 土博姜山山 阅读(1965) 评论(0) 推荐(0) 编辑
摘要: 北京市各街道区划名称 按<gbcode街道名称>形式组织 东城区 110101东城区全区 110101001东华门街道 110101002景山街道 110101003交道口街道 110101004安定门街道 110101005北新桥街道 110101006东四街道 110101007朝阳门街道 11 阅读全文
posted @ 2021-06-02 16:29 土博姜山山 阅读(2104) 评论(0) 推荐(0) 编辑
摘要: import argparse import logging import time from random import random from PIL import Image, ImageFilter from skimage import io import numpy as np def 阅读全文
posted @ 2021-05-22 16:10 土博姜山山 阅读(78) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-05-22 14:15 土博姜山山 阅读(124) 评论(0) 推荐(0) 编辑
摘要: import psycopg2 import geopandas as gpd import numpy as np from fitter import Fitter import matplotlib.pyplot as plt from utils_cls import RRP, RPA, T 阅读全文
posted @ 2021-05-21 20:10 土博姜山山 阅读(93) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 21 下一页