原文网址:http://gisgeography.com/free-satellite-imagery-data-list/ 国外数据: 1.USGS Earth Explorer 网址:https://earthexplorer.usgs.gov/ 数据:包括Landsat系列,ASTER DEM ...
分类:
其他好文 时间:
2020-02-06 16:20:25
阅读次数:
239
迅速发展的前端开发,在每?年,都为开发者带来了新的关键词。2019 年已步?尾声,2020 年前端发展的关键词?将有哪些呢?发展的方向又会是什么呢?参考2019年大前端的发展,不出意外,前端依旧会围绕?程序、超级APP、跨端开发、前端?程化以及新技术运用等几个方面进行展开(可以参考2019年大前端技 ...
分类:
其他好文 时间:
2020-02-04 23:40:44
阅读次数:
117
求简单环,即求点=边数的点双分量,加上判断点和边的模板即可 const int maxm = 1e5+5; int head[maxm<<1], edgecnt, dfn[maxm], low[maxm], bcc_cnt, bccnum[maxm], dfs_clock, s[maxm], top ...
分类:
其他好文 时间:
2020-02-04 13:47:50
阅读次数:
76
Windows系统编译 下载安装: node v9.8.0 yarn 1.9.4 安装windows编译工具 npm install global windows build tools 安装项目依赖 yarn install 开始编译,打包 npm run build npm run releas ...
看下面的一段代码: int statusArr[100] = {1} 能达到全都初始化为1的结果么? 结果是只有第一个元素初始化了为1,其他都是0. 之前经常写 int a[100]= {0} 这么写可以,为什么? 因为c++有个基本的语法规则,数组初始化列表中的元素个数小于指定的数组长度时,不足的 ...
分类:
编程语言 时间:
2020-02-02 01:19:39
阅读次数:
80
Deep Learning for End-to-End Automatic Target Recognition from Synthetic Aperture Radar Imagery 从合成孔径雷达图像进行端到端自动目标识别的深度学习 合成孔径雷达(SAR)自动目标识别(ATR)的标准体系结 ...
分类:
其他好文 时间:
2020-02-01 23:43:03
阅读次数:
152
小编整理了一些numpy常用的函数,也是方便小编以后查看。 为了方便 import numpy as np 。 1 np.array(object, dtype = None, copy = True, order = None, subok = False, ndmin = 0) 常用的有dtyp ...
分类:
其他好文 时间:
2020-02-01 12:29:30
阅读次数:
123
sar 是一个系统活动报告工具,既可以实时查看系统的当前活动,又可以配置保存和报告历史统计数据。 安装:yum install sysstat -y 常用选项: -n DEV:显示网卡相关的统计信息 -r -S:显示内存、swap相关的使用情况 示例一:统计当前网络接口的收发情况: [root@lo ...
分类:
其他好文 时间:
2020-02-01 12:24:00
阅读次数:
74
在分析 CPU、内存、磁盘等的性能指标时,有几种工具是高频出现的,如 top、vmstat、pidstat,这里稍微总结一下: CPU:top、vmstat、pidstat、sar、perf、jstack、jstat; 内存:top、free、vmstat、cachetop、cachestat、sa ...
分类:
其他好文 时间:
2020-02-01 00:35:20
阅读次数:
110
1 #include<cstdio> 2 #include<iostream> 3 #include<algorithm> 4 #include<queue> 5 #include<map> 6 #include<vector> 7 #include<set> 8 #include<string> ...
分类:
其他好文 时间:
2020-01-31 18:49:43
阅读次数:
71