上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 21 下一页
摘要: import skmob.io.file as file# https://scikit-mobility.github.io/scikit-mobility/ import psycopg2 import os import pandas as pd from io import StringIO 阅读全文
posted @ 2021-03-28 20:16 土博姜山山 阅读(432) 评论(0) 推荐(0) 编辑
摘要: import psycopg2 import pandas as pd from io import StringIO import numpy as np import os def table_exist(table_name=None, conn=None, cur=None): try: c 阅读全文
posted @ 2021-03-24 13:42 土博姜山山 阅读(127) 评论(0) 推荐(0) 编辑
摘要: 时间-UTC-时间戳-日期查询 select timestamp '2004-10-19 10:23:54'; 查询系统当前完整时间 select now(); select current_timestamp; 查询系统当前日期 select current_date; 查询系统当前时间 sele 阅读全文
posted @ 2021-03-16 22:19 土博姜山山 阅读(372) 评论(0) 推荐(0) 编辑
摘要: 地理坐标系4326--投影坐标系3857/2436 空间参考坐标系查询网址: https://spatialreference.org/和http://epsg.io/ EPSG:4326 (WGS84) 地理坐标系,WGS84 是目前最流行的地理坐标系统。在国际上,每个坐标系统都会被分配一个 EP 阅读全文
posted @ 2021-03-16 22:15 土博姜山山 阅读(6781) 评论(0) 推荐(0) 编辑
摘要: 所有道路的总长度是多少(以公里为单位)?先设置空间坐标系,然后利用投影坐标系转换 select UpdateGeometrySRID('road_table', 'osm_geom', 4326); SELECT sum(ST_Length(ST_Transform(osm_geom,2436))) 阅读全文
posted @ 2021-03-16 22:14 土博姜山山 阅读(359) 评论(0) 推荐(0) 编辑
摘要: import numpy as np import nvector as nv # 基于 geopandas 取 postgis数据 sql = 'SELECT * FROM node_table' g_out = gpd.read_postgis(sql=sql, con=pgisCon, geo 阅读全文
posted @ 2021-03-16 22:11 土博姜山山 阅读(564) 评论(0) 推荐(0) 编辑
摘要: import osm2gmns as og import pandas as pd import geopandas as gpd import psycopg2 from sqlalchemy import create_engine from shapely.geometry import Po 阅读全文
posted @ 2021-03-16 22:07 土博姜山山 阅读(632) 评论(0) 推荐(0) 编辑
摘要: 第一步: 生成github tokens 在 Settings / Developer settings / Personal access tokens jeshy_git_token 你自己的Token******72245e4c6*****第二步: 需要在 mavn安装目录 编辑配置文件 se 阅读全文
posted @ 2021-01-30 19:54 土博姜山山 阅读(960) 评论(2) 推荐(1) 编辑
摘要: 阅读全文
posted @ 2021-01-29 21:01 土博姜山山 阅读(439) 评论(0) 推荐(1) 编辑
摘要: 本博文 主要记录 本博对JetsonTX2的刷机心路历程(JetPack4.5 2021年1月22日) 1. 购买了JetsonTX2开发套件一套、JetsonTX2核心板与对应的小开发板,JetsonTX2开发套件主要目的是在实验室里进行算法测试与验证,JetsonTX2核心板与对应的小开发板主要 阅读全文
posted @ 2021-01-23 17:00 土博姜山山 阅读(3251) 评论(30) 推荐(2) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 21 下一页