@@ -21,18 +21,12 @@ <h2>Tools</h2>
21
21
< div class ="panel-heading "> < h3 > JavaScript</ h3 > </ div >
22
22
23
23
< div class ="list-group ">
24
- < a href ="https://github.com/Reading-eScience-Centre/covjson-reader " class ="list-group-item ">
25
- < h4 class ="list-group-item-heading "> covjson-reader</ h4 >
26
- < p class ="list-group-item-text "> A CovJSON reader supporting subsetting and lazy loading.</ p >
27
- </ a >
28
- < a href ="https://github.com/Reading-eScience-Centre/leaflet-coverage " class ="list-group-item ">
29
- < h4 class ="list-group-item-heading "> leaflet-coverage</ h4 >
30
- < p class ="list-group-item-text "> A Leaflet plugin for visualizing CovJSON and other coverage data.</ p >
31
- </ a >
32
- < a href ="https://github.com/Reading-eScience-Centre/webworldwind-covjson " class ="list-group-item ">
33
- < h4 class ="list-group-item-heading "> webworldwind-covjson (WIP)</ h4 >
34
- < p class ="list-group-item-text "> A Web World Wind plugin for visualizing CovJSON and other coverage data.</ p >
24
+ {% for tool in site.data.tools.javascript %}
25
+ < a href ="{{ tool.url }} " class ="list-group-item ">
26
+ < h4 class ="list-group-item-heading "> {{ tool.name }}</ h4 >
27
+ < p class ="list-group-item-text "> {{ tool.description }}</ p >
35
28
</ a >
29
+ {% endfor %}
36
30
</ div >
37
31
</ div >
38
32
</ div >
@@ -41,10 +35,12 @@ <h4 class="list-group-item-heading">webworldwind-covjson (WIP)</h4>
41
35
< div class ="panel-heading "> < h3 > Java</ h3 > </ div >
42
36
43
37
< div class ="list-group ">
44
- < a href ="https://reading-escience-centre.gitbooks.io/ncwms-user-guide/content/ " class ="list-group-item ">
45
- < h4 class ="list-group-item-heading "> ncWMS</ h4 >
46
- < p class ="list-group-item-text "> A WMS server with CovJSON as output format.</ p >
38
+ {% for tool in site.data.tools.java %}
39
+ < a href ="{{ tool.url }} " class ="list-group-item ">
40
+ < h4 class ="list-group-item-heading "> {{ tool.name }}</ h4 >
41
+ < p class ="list-group-item-text "> {{ tool.description }}</ p >
47
42
</ a >
43
+ {% endfor %}
48
44
</ div >
49
45
</ div >
50
46
</ div >
@@ -53,12 +49,26 @@ <h4 class="list-group-item-heading">ncWMS</h4>
53
49
< div class ="panel-heading "> < h3 > Python</ h3 > </ div >
54
50
55
51
< div class ="list-group ">
56
- < a href ="https://github.com/Reading-eScience-Centre/pycovjson " class ="list-group-item ">
57
- < h4 class ="list-group-item-heading "> pycovjson (WIP)</ h4 >
58
- < p class ="list-group-item-text "> Transforms common scientific data formats like netCDF into CovJSON.</ p >
52
+ {% for tool in site.data.tools.python %}
53
+ < a href ="{{ tool.url }} " class ="list-group-item ">
54
+ < h4 class ="list-group-item-heading "> {{ tool.name }}</ h4 >
55
+ < p class ="list-group-item-text "> {{ tool.description }}</ p >
59
56
</ a >
57
+ {% endfor %}
60
58
</ div >
61
59
</ div >
62
60
</ div >
63
61
</ div >
62
+ < div class ="panel panel-primary ">
63
+ < div class ="panel-heading ">
64
+ < h3 class ="panel-title "> How to add your tool</ h3 >
65
+ </ div >
66
+ < div class ="panel-body ">
67
+ Just submit a pull request for the
68
+ < a href ="https://github.com/covjson/covjson.github.io/blob/master/_data/tools.yaml "> tools.yaml</ a >
69
+ file on GitHub, and once accepted, your tool will appear here immediately.
70
+ < a href ="https://github.com/covjson/covjson.github.io/issues/new "> Create an issue</ a >
71
+ if your tool is written in a language other than the ones above.
72
+ </ div >
73
+ </ div >
64
74
</ div >
0 commit comments