02 2023 档案

摘要:输入以下命令可在Ubuntu系统中进行下载,但受到网络限制并不能有效下载或者下载很慢 python3 scripts/download_examples.py 通过阅读python脚本,可将下载网址拷贝到windows进行下载: https://peanpod.s3.ap-southeast-2.a 阅读全文
posted @ 2023-02-24 15:59 打工的小猪 阅读(117) 评论(0) 推荐(0) 编辑
摘要:PEA软件可用于实时精密卫星钟差估计,精密卫星定轨,精密单点定位,电离层建模以及DCB估计等。 Ginan开发人员推荐使用Ubuntu18.04或Ubuntu20.04搭建,本文使用Ubuntu20.04系统 PEA安装参考博客:https://blog.sciencenet.cn/blog-348 阅读全文
posted @ 2023-02-23 16:30 打工的小猪 阅读(233) 评论(0) 推荐(0) 编辑
摘要:#! /bin/bash case $1 in 1) **** ;; 2) **** ;; 3) **** ;; esac 阅读全文
posted @ 2023-02-21 22:22 打工的小猪 阅读(16) 评论(0) 推荐(0) 编辑
摘要:#! /bin/bash test_1=1 test_2=2 test = $(expr $test_1 - $test_2) #减法 test = $(expr $test_1 + $test_2) #加法 test = $(expr $test_1 - 1) #test_1 减1 test =  阅读全文
posted @ 2023-02-21 22:12 打工的小猪 阅读(713) 评论(0) 推荐(0) 编辑
摘要:test_1=1 test=`echo $test_1|awk '{printf("%03d\n",$test_1)}'` 输出为001。 阅读全文
posted @ 2023-02-21 20:13 打工的小猪 阅读(94) 评论(0) 推荐(0) 编辑