码迷,mamicode.com
首页 >  
搜索关键字:geometry    ( 736个结果
postgresql和postgis
1,空间函数转经纬度 '{"type":"FeatureCollection","features":[{"type":"Feature","properties":{},"geometry":'||ST_AsGeoJSON(coverage)||'}]}' coverage, '{ "geomet ...
分类:数据库   时间:2020-06-16 18:34:03    阅读次数:88
数学的概念
数学,就我所知,分为初等数学、高等数学。数学专业还会学习 数学分析、解析几何。更厉害的数学,还听说过 黎曼几何(Riemannian geometry)。 本文会整理各种数学的概念,以便自己及大众了解所有现有数学概念。 数学计算 和 CPU、GPU指令的关系如何?怎么转换的?编译器做转换? ~慢慢补 ...
分类:其他好文   时间:2020-06-15 09:34:18    阅读次数:77
Using geometry objects with geoprocessing tools
Using geometry objects with geoprocessing tools In many geoprocessing workflows, you may need to run a specific operation using coordinate and geometr... ...
分类:其他好文   时间:2020-06-14 18:35:28    阅读次数:66
ros模型建立——urdf
首先创建软件包来存储机器人模型 catkin_create_pkg mastering_ros_robot_description_pkg roscpp tf geometry_msgs urdf rviz xacro 安装为安装的软件包 1 sudo apt install ros-melodic ...
分类:其他好文   时间:2020-05-29 11:50:51    阅读次数:100
简单组件使用案例
from tkinter import * master = Tk() master.geometry("700x600") # Label 标签组件 l_show = Label(master,text="小怪兽") l_show.pack(side="left") # Entry 单行文本组件 ...
分类:其他好文   时间:2020-05-27 20:56:27    阅读次数:75
Python-GUI程序设计-3
代码1: import tkinter.filedialog from tkinter import * from tkinter import messagebox def OpenFile(): filename=filedialog.askopenfilename() messagebox.s ...
分类:编程语言   时间:2020-05-25 17:30:16    阅读次数:67
Python3的tkinter库教程1
大家好,我说到就到 我是爱学编程的小圆子鸭 首先上代码 # 今天我们教Python tkinter库 # python2tkinter库导入方式: # import Tkinter # 因为我是python3的 所以就把他给注译掉了 # Python3 import tkinter # 先用一个变量 ...
分类:编程语言   时间:2020-05-23 09:42:47    阅读次数:81
PostgreSQL 添加postgis插件实现获取经纬度间的距离
概念: geometry和geography的区别 geometry:planar 平面坐标系【supported by SQL Server conforms to the Open Geospatial Consortium (OGC) Simple Features for SQL Speci ...
分类:数据库   时间:2020-05-20 18:52:05    阅读次数:145
Python GUI编程(Tkinter)Scale控件
import tkinterwin = tkinter.Tk()win.title("sunck")win.geometry("400x400+200+20")'''供用户通过拖拽指示器改变变量的值,可以水平,也可以竖直tkinter.HORIZONTAL 水平tkinter.VERTICAL 竖直 ...
分类:编程语言   时间:2020-05-19 16:46:43    阅读次数:113
Python GUI编程(Tkinter)Menu顶层菜单
import tkinterwin = tkinter.Tk()win.title("sunck")win.geometry("400x400+200+20")#菜单条menubar = tkinter.Menu(win)win.config(menu=menubar)def func(): pri ...
分类:编程语言   时间:2020-05-19 16:43:53    阅读次数:104
736条   上一页 1 2 3 4 5 6 ... 74 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!