搜索结果
查询Tags标签: coordinates,共有 13条记录-
Appendix D: Graphics matrix operations
Great Microprocessors of the Past and Present (V 13.4.0) (cpushack.com) 3-D points are generally stored in four element vectors, defined as:[X, Y, Z, W]...where X, Y, and Z are the point 3-D coordinates, and W is the weight, and is used to normalise t…
2022/3/2 23:17:02 人评论 次浏览 -
Gopher II
Gopher II(二分图匹配-匈牙利算法)Description The gopher family, having averted the canine threat, must face a new predator. The are n gophers and m gopher holes, each at distinct (x,y) coordinates. A hawk arrives and if a gopher does not reach a hole …
2022/1/19 23:55:16 人评论 次浏览 -
Gopher II
Gopher II(二分图匹配-匈牙利算法)Description The gopher family, having averted the canine threat, must face a new predator. The are n gophers and m gopher holes, each at distinct (x,y) coordinates. A hawk arrives and if a gopher does not reach a hole …
2022/1/19 23:55:16 人评论 次浏览 -
uni-app使用wx-canvas实现微信小程序上显示地图map和坐标geo
源码 <template><view class="echart-box"><canvas class="ec-canvas" :id="chartId" :canvasId="chartId" @error="error"></canvas></view> </template> <script> import…
2021/11/3 12:09:39 人评论 次浏览 -
uni-app使用wx-canvas实现微信小程序上显示地图map和坐标geo
源码 <template><view class="echart-box"><canvas class="ec-canvas" :id="chartId" :canvasId="chartId" @error="error"></canvas></view> </template> <script> import…
2021/11/3 12:09:39 人评论 次浏览 -
从SQLFlow的json格式中学习数据血缘json格式设计
0. 数据血缘可视化这块目前比较优秀的就是SQLFlow(马哈鱼数据血缘分析器)了。我们可以从SQLFlow的json格式中学习数据血缘json格式设计。 饿了么数据血缘,这里面有饿了么元数据管理数据血缘的json格式设计 1.实例 如何获取SQLFlow的json?在可视化画布上右键–》Downlo…
2021/10/10 16:54:54 人评论 次浏览 -
从SQLFlow的json格式中学习数据血缘json格式设计
0. 数据血缘可视化这块目前比较优秀的就是SQLFlow(马哈鱼数据血缘分析器)了。我们可以从SQLFlow的json格式中学习数据血缘json格式设计。 饿了么数据血缘,这里面有饿了么元数据管理数据血缘的json格式设计 1.实例 如何获取SQLFlow的json?在可视化画布上右键–》Downlo…
2021/10/10 16:54:54 人评论 次浏览 -
leetcode 1232. Check If It Is a Straight Line(python)
描述 You are given an array coordinates, coordinates[i] = [x, y], where [x, y] represents the coordinate of a point. Check if these points make a straight line in the XY plane. Example 1:Input: coordinates = [[1,2],[2,3],[3,4],[4,5],[5,6],[6,7]] Outpu…
2021/9/4 17:08:48 人评论 次浏览 -
leetcode 1232. Check If It Is a Straight Line(python)
描述 You are given an array coordinates, coordinates[i] = [x, y], where [x, y] represents the coordinate of a point. Check if these points make a straight line in the XY plane. Example 1:Input: coordinates = [[1,2],[2,3],[3,4],[4,5],[5,6],[6,7]] Outpu…
2021/9/4 17:08:48 人评论 次浏览 -
mongodb地理空间
新建地理空间数据 db.location.insert([{"name":"广州","location":{"type":"Point","coordinates":[113.23,23.44]}},{"name":"上海","location":{"type":"P…
2021/8/6 19:06:05 人评论 次浏览 -
mongodb地理空间
新建地理空间数据 db.location.insert([{"name":"广州","location":{"type":"Point","coordinates":[113.23,23.44]}},{"name":"上海","location":{"type":"P…
2021/8/6 19:06:05 人评论 次浏览 -
权属面积批量修改0.1
import win32com.client import pythoncom import tkinter as tk from tkinter import messagebox import numpy import math 打开选择文件夹对话框 window = tk.Tk() window.title("权属面积批量修改0.1") window.geometry(380x30+800+200) # 290 160为窗口大…
2021/6/27 6:15:52 人评论 次浏览 -
模拟退火算法Python编程(4)旅行商问题
1、旅行商问题(Travelling salesman problem, TSP)旅行商问题是经典的组合优化问题,要求找到遍历所有城市且每个城市只访问一次的最短旅行路线,即对给定的正权完全图求其总权重最小的Hamilton回路:设有 n个城市和距离矩阵 D=[dij],其中dij表示城市i到城市j的距离(i,j…
2021/5/4 12:27:20 人评论 次浏览