大地坐标系转空间直角坐标系 import math A_ALIS = 6378137 B_ALIS = 6356752.3142 E = math.sqrt(A_ALIS * A_ALIS - B_ALIS * B_ALIS) / A_ALIS def transform_latlonhei2xyz ...
分类:
其他好文 时间:
2020-03-15 16:21:57
阅读次数:
83
ll一行进行管道输入,grep一行查看管道输出 再看就必须再往里装 ...
分类:
系统相关 时间:
2020-03-15 11:23:26
阅读次数:
50
表结构: projects:项目表 interfaces:接口表,关联项目表的主键ID,在接口表中的字段为:project_id 创建接口序列化器时,关联字段project的创建可以分为以下几种情况: 1、默认为:PrimaryKeyRelatedField from rest_framework ...
分类:
其他好文 时间:
2020-03-14 22:05:36
阅读次数:
54
import turtle turtle.setup(650,350,200,200)turtle.penup()turtle.pensize(1)turtle.pencolor("red")turtle.fillcolor("green")turtle.begin_fill()turtle.set ...
分类:
其他好文 时间:
2020-03-14 21:47:58
阅读次数:
68
1.局部组件的使用 <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <script src="https://c ...
分类:
其他好文 时间:
2020-03-14 16:31:28
阅读次数:
44
在Linux 中彻底卸载GitLab 步骤如下: 停止Git lab ~~~shell sudo gitlab ctl stop ~~~ 卸载Git lab ~~~shell sudo rpm e gitlab ce ~~~ 查看Gilt lab 进程 ~~~shell 查看还在运行的进程 ps e ...
分类:
其他好文 时间:
2020-03-14 11:13:18
阅读次数:
51
1、报错如下: 2、此时你执行npm run dev / npm run build 会报错如下 npm ERR! code ELIFECYCLEnpm ERR! errno 1npm ERR! vue@1.0.0 dev: `webpack-dev-server --inline --progre ...
分类:
其他好文 时间:
2020-03-14 10:57:32
阅读次数:
62
1.设置监控,当某个进程(monitor_sure_onlyme)不在时就自动把它拉起来#!/bin/bashwhile[1]doranktest=`psaux|greprank_test_sure_onlyme|grep-v"grep"`if["$ranktest"==""];then#echoranktestnotexistnohup/home/admin/cpuuse/rank_test_s
分类:
其他好文 时间:
2020-03-14 09:20:02
阅读次数:
51
参考博客:https://segmentfault.com/a/1190000016903385?utm_source=tag newest 文中提出了三种实现跑马灯的方式,分别是1.利用js实现2.利用html标签实现3.利用css实现 文中也给出了3种方法优劣的比较,这里不再赘述 1.利用js实 ...
分类:
其他好文 时间:
2020-03-14 01:14:54
阅读次数:
238
本文主要介绍Kubernetes—配置管理ConfigMap以及pod中的使用方式。 ...
分类:
Web程序 时间:
2020-03-14 01:02:45
阅读次数:
108