ICode9

精准搜索请尝试: 精确搜索
  • python doy与年月日转换2022-06-20 20:31:45

    1.年月日转DOY def date2doy(year, month, day): month_leapyear = [31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31] month_notleap = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31] doy = 0 if month == 1: pass elif year % 4 == 0 and (

  • doy 12 find 命令 压缩 管道2021-09-28 15:34:16

    今日内容 1、查找文件 ​ 在Linux系统中,按照我们的要求去查询文件 格式: ​ find [查询的路径] [匹配模式] [匹配规则] ​ 匹配模式: ​ -name :按照名字去匹配 ​ *:匹配任意数量的任意字符 ​ ?:匹配任意一个字符 ​ -type :按照文件的类型匹配 常见的文件类型: ​ f :普通文件 ​ d :

  • tps2rinex4c.bat2021-02-18 15:34:42

    @ECHO OFFSETLOCAL ENABLEDELAYEDEXPANSIONPATH=%PATH%;D:\bin;D:\bin\unixutilsset RinVer=3.04set RinVer2=2.11set hpath=%CD%set dfilepath=%CD%\Dfilesset rinpath=%CD%\Rinex-!RinVer!set rinpath2=%CD%\Rinex-!RinVer2!for %%f in (*.tps) do (    for /F %%b in

  • trimble2rinex4c.bat2021-02-18 15:33:11

    @ECHO OFFSETLOCAL ENABLEDELAYEDEXPANSIONREM 定义转换程序的安装路径(注意32位/64位系统的路径差别,注意盘符差别,此处已定义C:/D:盘,兼容32位/64位系统)PATH=C:\Program Files (x86)\Trimble\convertToRINEX;D:\Program Files (x86)\Trimble\convertToRINEX;%PATH%PATH=C:\Program F

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有