-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
2863 lines (1418 loc) · 106 KB
/
Copy pathindex.html
File metadata and controls
2863 lines (1418 loc) · 106 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html class="theme-next gemini use-motion" lang="zh-Hans">
<head>
<meta charset="UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"/>
<meta name="theme-color" content="#222">
<link rel="stylesheet" media="all" href="/lib/Han/dist/han.min.css?v=3.3">
<meta http-equiv="Cache-Control" content="no-transform" />
<meta http-equiv="Cache-Control" content="no-siteapp" />
<link href="/lib/fancybox/source/jquery.fancybox.css?v=2.1.5" rel="stylesheet" type="text/css" />
<link href="/lib/font-awesome/css/font-awesome.min.css?v=4.6.2" rel="stylesheet" type="text/css" />
<link href="/css/main.css?v=5.1.4" rel="stylesheet" type="text/css" />
<link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon-next.png?v=5.1.4">
<link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32-next.png?v=5.1.4">
<link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16-next.png?v=5.1.4">
<link rel="mask-icon" href="/images/logo.svg?v=5.1.4" color="#222">
<link rel="manifest" href="/images/manifest.json">
<meta name="keywords" content="Hexo, NexT" />
<link rel="alternate" href="/atom.xml" title="MicroG for Earthquake Sciences" type="application/atom+xml" />
<meta name="description" content="microg.club">
<meta property="og:type" content="website">
<meta property="og:title" content="MicroG for Earthquake Sciences">
<meta property="og:url" content="https://igp-gravity.github.io/index.html">
<meta property="og:site_name" content="MicroG for Earthquake Sciences">
<meta property="og:description" content="microg.club">
<meta property="og:locale" content="zh-Hans">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="MicroG for Earthquake Sciences">
<meta name="twitter:description" content="microg.club">
<script type="text/javascript" id="hexo.configurations">
var NexT = window.NexT || {};
var CONFIG = {
root: '/',
scheme: 'Gemini',
version: '5.1.4',
sidebar: {"position":"left","display":"post","offset":12,"b2t":false,"scrollpercent":false,"onmobile":false},
fancybox: true,
tabs: true,
motion: {"enable":true,"async":false,"transition":{"post_block":"fadeIn","post_header":"slideDownIn","post_body":"slideDownIn","coll_header":"slideLeftIn","sidebar":"slideUpIn"}},
duoshuo: {
userId: '0',
author: '博主'
},
algolia: {
applicationID: '',
apiKey: '',
indexName: '',
hits: {"per_page":10},
labels: {"input_placeholder":"Search for Posts","hits_empty":"We didn't find any results for the search: ${query}","hits_stats":"${hits} results found in ${time} ms"}
}
};
</script>
<link rel="canonical" href="https://igp-gravity.github.io/"/>
<title>MicroG for Earthquake Sciences</title>
<script type="text/javascript">
var _hmt = _hmt || [];
(function() {
var hm = document.createElement("script");
hm.src = "https://hm.baidu.com/hm.js?4211a1b8d1ba7bcd27e90bcb006d376e";
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(hm, s);
})();
</script>
<link rel="stylesheet" type="text/css" href="/assets/css/DPlayer.min.css"><script src="/assets/js/DPlayer.min.js"></script></head>
<body itemscope itemtype="http://schema.org/WebPage" lang="zh-Hans">
<div class="container sidebar-position-left
page-home">
<div class="headband"></div>
<header id="header" class="header" itemscope itemtype="http://schema.org/WPHeader">
<div class="header-inner"><div class="site-brand-wrapper">
<div class="site-meta ">
<div class="custom-logo-site-title">
<a href="/" class="brand" rel="start">
<span class="logo-line-before"><i></i></span>
<span class="site-title">MicroG for Earthquake Sciences</span>
<span class="logo-line-after"><i></i></span>
</a>
</div>
<p class="site-subtitle">Work better more insights</p>
</div>
<div class="site-nav-toggle">
<button>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
</button>
</div>
</div>
<nav class="site-nav">
<ul id="menu" class="menu">
<li class="menu-item menu-item-home">
<a href="/" rel="section">
<i class="menu-item-icon fa fa-fw fa-home"></i> <br />
首页
</a>
</li>
<li class="menu-item menu-item-about">
<a href="/about/" rel="section">
<i class="menu-item-icon fa fa-fw fa-user"></i> <br />
关于
</a>
</li>
<li class="menu-item menu-item-tags">
<a href="/tags/" rel="section">
<i class="menu-item-icon fa fa-fw fa-tags"></i> <br />
标签
</a>
</li>
<li class="menu-item menu-item-categories">
<a href="/categories/" rel="section">
<i class="menu-item-icon fa fa-fw fa-th"></i> <br />
分类
</a>
</li>
<li class="menu-item menu-item-archives">
<a href="/archives/" rel="section">
<i class="menu-item-icon fa fa-fw fa-archive"></i> <br />
归档
</a>
</li>
<li class="menu-item menu-item-sitemap">
<a href="/sitemap.xml" rel="section">
<i class="menu-item-icon fa fa-fw fa-sitemap"></i> <br />
站点地图
</a>
</li>
<li class="menu-item menu-item-search">
<a href="javascript:;" class="popup-trigger">
<i class="menu-item-icon fa fa-search fa-fw"></i> <br />
搜索
</a>
</li>
</ul>
<div class="site-search">
<div class="popup search-popup local-search-popup">
<div class="local-search-header clearfix">
<span class="search-icon">
<i class="fa fa-search"></i>
</span>
<span class="popup-btn-close">
<i class="fa fa-times-circle"></i>
</span>
<div class="local-search-input-wrapper">
<input autocomplete="off"
placeholder="搜索..." spellcheck="false"
type="text" id="local-search-input">
</div>
</div>
<div id="local-search-result"></div>
</div>
</div>
</nav>
</div>
</header>
<main id="main" class="main">
<div class="main-inner">
<div class="content-wrap">
<div id="content" class="content">
<section id="posts" class="posts-expand">
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<div class="post-block">
<link itemprop="mainEntityOfPage" href="https://igp-gravity.github.io/2019/02/24/ispec20190224.html">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="SHI CHEN at CEA-IGP">
<meta itemprop="description" content="">
<meta itemprop="image" content="/images/chenshi.gif">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="MicroG for Earthquake Sciences">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2019/02/24/ispec20190224.html" itemprop="url">Datist地震科学版十大特性</a></h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建于" itemprop="dateCreated datePublished" datetime="2019-02-24T20:01:18+08:00">
2019-02-24
</time>
</span>
<span class="post-comments-count">
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-comment-o"></i>
</span>
<a href="/2019/02/24/ispec20190224.html#comments" itemprop="discussionUrl">
<span class="post-comments-count valine-comment-count" data-xid="/2019/02/24/ispec20190224.html" itemprop="commentCount"></span>
</a>
</span>
<div class="post-wordcount">
<span class="post-meta-item-icon">
<i class="fa fa-file-word-o"></i>
</span>
<span class="post-meta-item-text">字数统计:</span>
<span title="字数统计">
716 字
</span>
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-clock-o"></i>
</span>
<span class="post-meta-item-text">阅读时长 ≈</span>
<span title="阅读时长">
2 分钟
</span>
</div>
</div>
</header>
<div class="post-body han-init-context" itemprop="articleBody">
<h1 id="数据专家地震科学版(DatistEQ)特性"><a href="#数据专家地震科学版(DatistEQ)特性" class="headerlink" title="数据专家地震科学版(DatistEQ)特性"></a>数据专家地震科学版(DatistEQ)特性</h1><p>数据专家地震科学版(DatistEQ)作为地震行业面向业务人员的流程编写、日常数据处理和分析业务平台,新发行的2019Q1版本具有以下十大个特点:</p>
<h2 id="1、免注册授权模式。"><a href="#1、免注册授权模式。" class="headerlink" title="1、免注册授权模式。"></a>1、免注册授权模式。</h2><p>通过微信扫描二维码,自动获取一年期授权文件,二次登陆免认证。</p>
<h2 id="2、自定义节点扩展。"><a href="#2、自定义节点扩展。" class="headerlink" title="2、自定义节点扩展。"></a>2、自定义节点扩展。</h2><p>支持自定义节点注册到本地工具箱,配合本地Python环境,可以使用Python生态系统中的更多专业分析工具。配合GMT等第三方绘图工具,可以拓展更多平台应用。</p>
<h2 id="3、优化用户体验。"><a href="#3、优化用户体验。" class="headerlink" title="3、优化用户体验。"></a>3、优化用户体验。</h2><p>提供多种运行模式,改进了内存回收机制。启动速度更快,新增的内存运行模式加速流程执行,提升用户体验。</p>
<h2 id="4、改版流程商店。"><a href="#4、改版流程商店。" class="headerlink" title="4、改版流程商店。"></a>4、改版流程商店。</h2><p>对原有的流程商店改版为:地震共享平台。支持流程、节点、工程和数据源多种类型数据的共享。并且按照地震行业四大学科与业务特点进行了分类。统一微信企业号授权,扫码后自动拥有共享平台授权。</p>
<h2 id="5、支持云端流程存储。"><a href="#5、支持云端流程存储。" class="headerlink" title="5、支持云端流程存储。"></a>5、支持云端流程存储。</h2><p>地震共享平台支持私有流程云端存储,适合移动办工和多台终端的协同工作,每个用户享使用私有云存储空间。</p>
<h2 id="6、个性化数据源面板。"><a href="#6、个性化数据源面板。" class="headerlink" title="6、个性化数据源面板。"></a>6、个性化数据源面板。</h2><p>根据用户的微信认证单位或学科组标签,自动同步数据源面板配置,用户无需记录和配置数据库参数。</p>
<h2 id="7、同步工程列表。"><a href="#7、同步工程列表。" class="headerlink" title="7、同步工程列表。"></a>7、同步工程列表。</h2><p>根据用户的微信认证单位或学科组标签,自动下载工程列表中的流程集合,可以将不同学科组的常用分析流程DMS直接同步到本地,直接开展专业的数据分析工作。</p>
<h2 id="8、改进本地GIS支持。"><a href="#8、改进本地GIS支持。" class="headerlink" title="8、改进本地GIS支持。"></a>8、改进本地GIS支持。</h2><p>改进的GIS本地矢量地图模块,增加了全国活动断裂,活动地块边界带,世界地图基础数据等地学行业图形资源。</p>
<h2 id="9、新增行业绘图图版。"><a href="#9、新增行业绘图图版。" class="headerlink" title="9、新增行业绘图图版。"></a>9、新增行业绘图图版。</h2><p>新增统计图模板、地球化学三角图版和脚本绘图语言等,支持更多的行业专题图绘制应用。</p>
<h2 id="10、定制化教学模式。"><a href="#10、定制化教学模式。" class="headerlink" title="10、定制化教学模式。"></a>10、定制化教学模式。</h2><p>以地震行业日常分析数据案例入手,通过在线视频形式讲解常用节点用法,让用户可以自主学习流程编制方法,并配有专题网站(datist.readthedocs.org),提供常见问题解答。</p>
<h2 id="下载地址:"><a href="#下载地址:" class="headerlink" title="下载地址:"></a>下载地址:</h2><p>建议安装到D:\DatistEQ目录,避免C盘可能产生的无写入权限问题。现有版本可以不必卸载,便于对比功能差异。</p>
<p><a href="https://datist-download.oss-cn-beijing.aliyuncs.com/2019/Datist%202019.1%20Setup.exe" target="_blank" rel="noopener">DatistEQ2019Q1新版软件Download</a></p>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</div>
</article>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<div class="post-block">
<link itemprop="mainEntityOfPage" href="https://igp-gravity.github.io/2019/02/11/ispec20190211.html">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="SHI CHEN at CEA-IGP">
<meta itemprop="description" content="">
<meta itemprop="image" content="/images/chenshi.gif">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="MicroG for Earthquake Sciences">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2019/02/11/ispec20190211.html" itemprop="url">流程编辑工具:Datist地震科学版</a></h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建于" itemprop="dateCreated datePublished" datetime="2019-02-11T08:53:14+08:00">
2019-02-11
</time>
</span>
<span class="post-comments-count">
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-comment-o"></i>
</span>
<a href="/2019/02/11/ispec20190211.html#comments" itemprop="discussionUrl">
<span class="post-comments-count valine-comment-count" data-xid="/2019/02/11/ispec20190211.html" itemprop="commentCount"></span>
</a>
</span>
<div class="post-wordcount">
<span class="post-meta-item-icon">
<i class="fa fa-file-word-o"></i>
</span>
<span class="post-meta-item-text">字数统计:</span>
<span title="字数统计">
583 字
</span>
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-clock-o"></i>
</span>
<span class="post-meta-item-text">阅读时长 ≈</span>
<span title="阅读时长">
2 分钟
</span>
</div>
</div>
</header>
<div class="post-body han-init-context" itemprop="articleBody">
<h1 id="数据专家(Datist)地震科学版简介"><a href="#数据专家(Datist)地震科学版简介" class="headerlink" title="数据专家(Datist)地震科学版简介"></a>数据专家(Datist)地震科学版简介</h1><p>Datist,即数据专家,是服务于大数据时代场景式(Context)数据治理与融合的工具。该软件能够根据用户场景需求组织数据与加工业务流程,通过可视化的节点与函数的组合来完成数据的获取、组织、整合、提纯及有形化表达。Datist地震科学版是经过17-18年两年的实践积累,由地震会商技术系统项目组和长安大学专门为地震行业数据分析而研发的一个独立产品,凡是在地震科研助手微信企业号中的成员,下载安装包后,都可以通过扫描二维码的方式,自动获得授权文件,免费使用。</p>
<p>数据专家的基本原理就是把数据处理过程中涉及的处理方法抽象成一个个的节点之间的连接网络,来解决业务系统构建中的各种问题。而Datist地震科学版为行业用户提供了一个开放的平台,允许用户自定义组建自己的数据处理系统,完成特定的数据分析、处理任务。</p>
<p>大家看完地震会上技术系统培训视频第一集,如果对流程编辑感兴趣,请在开始学习第二到四集培训视频之前下载Datist地震科学版软件,并一起跟着视频的例子来学习流程编辑工具的用法。</p>
<h2 id="1、特点:"><a href="#1、特点:" class="headerlink" title="1、特点:"></a>1、特点:</h2><ul>
<li><p>针对地震行业特点,进行多项针对性的优化;</p>
</li>
<li><p>支持自定义节点开发,方便扩展;</p>
</li>
<li><p>支持微信扫描二维码自动授权模式;</p>
</li>
<li><p>优化编译程序和系统设置,启动和运行速度加快;</p>
</li>
<li><p>优化后的绘图、GIS插件;</p>
</li>
<li><p>新增地震行业常用矢量底图数据。</p>
</li>
</ul>
<p>更多信息请查阅<a href="http://datist.readthedocs.org" target="_blank" rel="noopener">Datist官方文档 </a></p>
<h2 id="2、安装步骤:"><a href="#2、安装步骤:" class="headerlink" title="2、安装步骤:"></a>2、安装步骤:</h2><ul>
<li>第一步:下载后安装,第一次登陆,请打开企业微信进入“地震科研助手”,通过扫描二维码自动获取授权文件</li>
</ul>
<p><img src="/images/datisteq1.png" alt="Alt text"></p>
<ul>
<li>第二步:进入程序界面后,进入“帮助”菜单,点击“关于”,授权信息如下图所示</li>
</ul>
<p><img src="/images/datisteq2.png" alt="Alt text"> </p>
<h2 id="3、下载地址:"><a href="#3、下载地址:" class="headerlink" title="3、下载地址:"></a>3、下载地址:</h2><p><a href="https://datist-download.oss-cn-beijing.aliyuncs.com/2019/Datist%202019.1%20Setup.exe" target="_blank" rel="noopener">软件Download地址</a> </p>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</div>
</article>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<div class="post-block">
<link itemprop="mainEntityOfPage" href="https://igp-gravity.github.io/2019/02/10/ispec20190210.html">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="SHI CHEN at CEA-IGP">
<meta itemprop="description" content="">
<meta itemprop="image" content="/images/chenshi.gif">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="MicroG for Earthquake Sciences">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2019/02/10/ispec20190210.html" itemprop="url">地震会商系统视频培训教程之五</a></h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建于" itemprop="dateCreated datePublished" datetime="2019-02-10T07:54:36+08:00">
2019-02-10
</time>
</span>
<span class="post-comments-count">
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-comment-o"></i>
</span>
<a href="/2019/02/10/ispec20190210.html#comments" itemprop="discussionUrl">
<span class="post-comments-count valine-comment-count" data-xid="/2019/02/10/ispec20190210.html" itemprop="commentCount"></span>
</a>
</span>
<div class="post-wordcount">
<span class="post-meta-item-icon">
<i class="fa fa-file-word-o"></i>
</span>
<span class="post-meta-item-text">字数统计:</span>
<span title="字数统计">
145 字
</span>
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-clock-o"></i>
</span>
<span class="post-meta-item-text">阅读时长 ≈</span>
<span title="阅读时长">
1 分钟
</span>
</div>
</div>
</header>
<div class="post-body han-init-context" itemprop="articleBody">
<h1 id="第1季第5集-现代化软件开发与可持续的集成方法"><a href="#第1季第5集-现代化软件开发与可持续的集成方法" class="headerlink" title="第1季第5集-现代化软件开发与可持续的集成方法"></a>第1季第5集-现代化软件开发与可持续的集成方法</h1><ul>
<li>难度:一般 </li>
<li>时长:约35分钟</li>
<li>对象:业务人员 </li>
<li>演示例子:无</li>
</ul>
<blockquote>
<p>要点提示:1、DevOps的软件开发理念;2、Python语言与Github仓库;3、Geoist开源项目计划。</p>
</blockquote>
<h2 id="知识点:"><a href="#知识点:" class="headerlink" title="知识点:"></a>知识点:</h2><ul>
<li>1、DevOps开发理念vs瀑布式开发,敏捷式开发工具;</li>
<li>2、Python与Anaconda集成环境;</li>
<li>3、Github仓库的使用,管理你的代码;</li>
<li>4、CI/CD的实现方法;</li>
<li>5、地学家软件包计划,如何参与Geoist软件包开发。</li>
</ul>
<div id="dplayer4" class="dplayer hexo-tag-dplayer-mark" style="margin-bottom: 20px;"></div><script>(function(){var player = new DPlayer({"container":document.getElementById("dplayer4"),"theme":"#FADFA3","loop":true,"video":{"url":"/attachs/ispecs1e5.mp4","pic":"/images/ispec.png"}});window.dplayers||(window.dplayers=[]);window.dplayers.push(player);})()</script>
<p><a href="/attachs/ispecs1e5.pdf">视频教程PPT下载</a> </p>
</div>
<footer class="post-footer">
<div class="post-eof"></div>
</footer>
</div>
</article>
<article class="post post-type-normal" itemscope itemtype="http://schema.org/Article">
<div class="post-block">
<link itemprop="mainEntityOfPage" href="https://igp-gravity.github.io/2019/02/09/ispec20190209.html">
<span hidden itemprop="author" itemscope itemtype="http://schema.org/Person">
<meta itemprop="name" content="SHI CHEN at CEA-IGP">
<meta itemprop="description" content="">
<meta itemprop="image" content="/images/chenshi.gif">
</span>
<span hidden itemprop="publisher" itemscope itemtype="http://schema.org/Organization">
<meta itemprop="name" content="MicroG for Earthquake Sciences">
</span>
<header class="post-header">
<h1 class="post-title" itemprop="name headline">
<a class="post-title-link" href="/2019/02/09/ispec20190209.html" itemprop="url">地震会商系统视频培训教程之四</a></h1>
<div class="post-meta">
<span class="post-time">
<span class="post-meta-item-icon">
<i class="fa fa-calendar-o"></i>
</span>
<span class="post-meta-item-text">发表于</span>
<time title="创建于" itemprop="dateCreated datePublished" datetime="2019-02-09T10:56:36+08:00">
2019-02-09
</time>
</span>
<span class="post-comments-count">
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-comment-o"></i>
</span>
<a href="/2019/02/09/ispec20190209.html#comments" itemprop="discussionUrl">
<span class="post-comments-count valine-comment-count" data-xid="/2019/02/09/ispec20190209.html" itemprop="commentCount"></span>
</a>
</span>
<div class="post-wordcount">
<span class="post-meta-item-icon">
<i class="fa fa-file-word-o"></i>
</span>
<span class="post-meta-item-text">字数统计:</span>
<span title="字数统计">
127 字
</span>
<span class="post-meta-divider">|</span>
<span class="post-meta-item-icon">
<i class="fa fa-clock-o"></i>
</span>
<span class="post-meta-item-text">阅读时长 ≈</span>
<span title="阅读时长">
1 分钟
</span>
</div>
</div>
</header>
<div class="post-body han-init-context" itemprop="articleBody">
<h1 id="第1季第4集-学会利用“轮子”来帮助你完成更多工作"><a href="#第1季第4集-学会利用“轮子”来帮助你完成更多工作" class="headerlink" title="第1季第4集-学会利用“轮子”来帮助你完成更多工作"></a>第1季第4集-学会利用“轮子”来帮助你完成更多工作</h1><ul>
<li>难度:较难 </li>
<li>时长:约50分钟</li>
<li>对象:业务人员 </li>
<li>演示例子:有</li>
</ul>
<blockquote>
<p>要点提示:1、第三方工具集成方法;2、前兆数据处理与曲线绘制;3、自定义节点开发方法。</p>
</blockquote>
<h2 id="知识点:"><a href="#知识点:" class="headerlink" title="知识点:"></a>知识点:</h2><ul>
<li>1、流程变量、eCharts与GMT6.0集成</li>
<li>2、Python语言与自定义节点</li>
<li>3、自定义节点开发介绍</li>
</ul>
<div id="dplayer3" class="dplayer hexo-tag-dplayer-mark" style="margin-bottom: 20px;"></div><script>(function(){var player = new DPlayer({"container":document.getElementById("dplayer3"),"theme":"#FADFA3","loop":true,"video":{"url":"/attachs/ispecs1e4.mp4","pic":"/images/ispec.png"}});window.dplayers||(window.dplayers=[]);window.dplayers.push(player);})()</script>
<p><a href="/attachs/ispecs1e4.pdf">视频教程PPT下载</a><br><a href="/attachs/ispecs1e4.rar">演示流程实例DMS下载</a> </p>
</div>