07 2021 档案

摘要:最小熵原理(五):“层层递进”之社区发现与聚类 社区检测与高密子图挖掘(上) 阅读全文
posted @ 2021-07-26 16:32 机器狗mo 阅读(191) 评论(0) 推荐(0)
摘要:https://numpy.org/doc/stable/user/quickstart.html 阅读全文
posted @ 2021-07-26 16:00 机器狗mo 阅读(22) 评论(0) 推荐(0)
摘要:https://gist.github.com/nzw0301/333afc00bd508501268fa7bf40cafe4e 阅读全文
posted @ 2021-07-20 09:54 机器狗mo 阅读(37) 评论(0) 推荐(0)
摘要:#!/usr/bin/env python3 # -*- coding: utf-8 -*- import math import osmium as o import networkx as nx import geoleaflet import geojson RE = 6378137.0 # 阅读全文
posted @ 2021-07-19 16:55 机器狗mo 阅读(317) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2021-07-18 12:54 机器狗mo 阅读(115) 评论(0) 推荐(0)
摘要:def point_on_line_seg(a, b, p): ap = p - a ab = b - a t = np.dot(ap, ab) / np.dot(ab, ab) # if you need the the closest point belonging to the segment 阅读全文
posted @ 2021-07-14 15:32 机器狗mo 阅读(440) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2021-07-10 18:09 机器狗mo 阅读(42) 评论(0) 推荐(0)
摘要:处理OpenStreetMap geo数据的工具包 阅读全文
posted @ 2021-07-09 10:05 机器狗mo 阅读(514) 评论(0) 推荐(0)