Skip to content

Commit 4448757

Browse files
authored
Add files via upload
1 parent cc63db7 commit 4448757

File tree

100 files changed

+5128
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

100 files changed

+5128
-0
lines changed

LICENSE

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
This is free and unencumbered software released into the public domain.
2+
3+
Anyone is free to copy, modify, publish, use, compile, sell, or
4+
distribute this software, either in source code form or as a compiled
5+
binary, for any purpose, commercial or non-commercial, and by any
6+
means.
7+
8+
In jurisdictions that recognize copyright laws, the author or authors
9+
of this software dedicate any and all copyright interest in the
10+
software to the public domain. We make this dedication for the benefit
11+
of the public at large and to the detriment of our heirs and
12+
successors. We intend this dedication to be an overt act of
13+
relinquishment in perpetuity of all present and future rights to this
14+
software under copyright law.
15+
16+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19+
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
20+
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21+
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22+
OTHER DEALINGS IN THE SOFTWARE.
23+
24+
For more information, please refer to <http://unlicense.org>

cgiFiles.cfm

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2+
<html xmlns="http://www.w3.org/1999/xhtml">
3+
<head>
4+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
5+
<title>CGI files</title>
6+
</head>
7+
8+
<body>
9+
<cfsetting showdebugoutput="no" />
10+
<cfset CGIfolder = '\\194.66.252.148\e$\cgi_iugs\wwwroot' />
11+
<cfdirectory directory="#CGIfolder#" action="list" recurse="yes" name="cgiFiles" sort="directory ASC" />
12+
<cfloop query="cgiFiles">
13+
<cfset folderPath = RemoveChars(directory,1,len(CGIfolder)) />
14+
<cfset URLpath = replace(folderPath,'\','/','All') />
15+
<cfoutput>http://cgi-iugs.org#URLpath#/#name# : #dateLastModified#<br />
16+
</cfoutput>
17+
</cfloop>
18+
</body>
19+
</html>

contact.html

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<!DOCTYPE html>
2+
<html xmlns="http://www.w3.org/1999/xhtml">
3+
<head>
4+
<!--#include file="/headIncludes.htm"-->
5+
<title>CGI | Contact Us</title>
6+
<meta name="description" content="The Commission for the Management and Application of Geoscience Information" />
7+
<meta name="keywords" content="CGI, The Commission for the Management and Application of Geoscience Information, GeoSciML" />
8+
</head>
9+
<body>
10+
<div id="widthBox">
11+
<!--#include file="/header.htm"-->
12+
<div id="breadcrumbs"><a href="/home.html">Home</a> &raquo; <a href="/contact.html">Contact Us</a></div>
13+
<div id="content">
14+
<article>
15+
<section>
16+
<h1> Contact Us</h1>
17+
<dl class="largeLinks">
18+
<dt><i class="fa fa-phone fa-3x green"></i><span class="largeText">General Enquiries</span></dt>
19+
<dd>Email the CGI Secretariat - <a href="mailto:[email protected]">[email protected]</a></dd>
20+
<dt><i class="fa fa-pencil fa-3x red"></i><span class="largeText">Working Group contacts</span></dt>
21+
<dd> GeoSciML - <a href="mailto:[email protected]">Eric Boisvert</a></dd>
22+
<dd>EarthResourceML - <a href="mailto:[email protected]">Jouni Vuollo</a></dd>
23+
<dd>Geoscience Terminology - <a href="mailto:[email protected]">Mark Rattenbury</a></dd>
24+
<dd>Geoscience Domain Working Group - <a href="mailto:[email protected]">Mika&euml;l Beaufils</a></dd>
25+
</dl>
26+
</section>
27+
</article>
28+
</div>
29+
<!--#include file="/menu.htm"-->
30+
<!--#include file="/footer.htm"-->
31+
</div>
32+
</body>
33+
</html>

cookieConsent.htm

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
<link rel="stylesheet" type="text/css" href="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.0.3/cookieconsent.min.css" />
2+
<script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.0.3/cookieconsent.min.js"></script>
3+
<script>
4+
window.addEventListener("load", function(){
5+
window.cookieconsent.initialise({
6+
"palette": {
7+
"popup": {
8+
"background": "#000"
9+
},
10+
"button": {
11+
"background": "#f1d600"
12+
}
13+
},
14+
15+
"type": "opt-in",
16+
revokable:true,
17+
onStatusChange: function(status) {
18+
if(this.hasConsented())
19+
{
20+
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
21+
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
22+
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
23+
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
24+
25+
ga('create', 'UA-45671132-1', 'auto');
26+
ga('send', 'pageview');
27+
}
28+
}
29+
30+
})
31+
});
32+
</script>

council_members.htm

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<dl class="largeLinks">
2+
<dt> <a href="/participation/council_members/fRobida.html">Fran&ccedil;ois Robida</a></dt>
3+
<dd>(Chair) France</dd>
4+
<dt> <a href="/participation/council_members/zMinghua.html">Dr Zhang Minghua</a> </dt>
5+
<dd>(Co-Secretary General) China</dd>
6+
<dt> <a href="/participation/council_members/kMhopjeni.html">Kombada Mhopjeni</a> </dt>
7+
<dd>(Co-Secretary General) Namibia</dd>
8+
<dt> <a href="/participation/council_members/oRaymond.html">Ollie Raymond</a></dt>
9+
<dd>(Treasurer and Web Manager) Australia</dd>
10+
<dt> <a href="/participation/council_members/kMiyazaki.html">Kazuhiro Miyazaki</a></dt>
11+
<dd>Japan</dd>
12+
<dt> <a href="/participation/council_members/dPercy.html">David Percy</a></dt>
13+
<dd>USA</dd>
14+
<dt> <a href="/participation/council_members/hThorleifson.html">Harvey Thorleifson</a></dt>
15+
<dd>USA</dd>
16+
<dt> <a href="/participation/council_members/rTomas.html">Robert Tomas</a> </dt>
17+
<dd>Czech Republic</dd>
18+
</dl>

error.html

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<!DOCTYPE html>
2+
<html xmlns="http://www.w3.org/1999/xhtml">
3+
<head>
4+
<!--#include file="/headIncludes.htm"-->
5+
<title>Error! | Commission for the Management and Application of Geoscience Information (CGI)</title>
6+
<meta name="description" content="The Commission for the Management and Application of Geoscience Information" />
7+
<meta name="keywords" content="CGI, The Commission for the Management and Application of Geoscience Information, GeoSciML" />
8+
</head>
9+
<body>
10+
<div id="widthBox">
11+
<!--#include file="/header.htm"-->
12+
<div id="breadcrumbs"><a href="/home.html">Home</a> &raquo; <a href="/error.html">Error</a></div>
13+
<div id="content">
14+
<article>
15+
<section>
16+
<h1>Error</h1>
17+
<p>Sorry, there has been an error. Please email the <a href="mailto:[email protected]">webmaster</a> to explain what you were doing when the error occurred. If this is a broken link on this site, please send the referring link.</p>
18+
<p>Thank you!</p>
19+
</section>
20+
</article>
21+
</div>
22+
<!--#include file="/menu.htm"-->
23+
<!--#include file="/footer.htm"-->
24+
</div>
25+
</body>
26+
</html>

footer.htm

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<div id="footer">
2+
<footer>
3+
<p class="disclaimer">CGI &copy; 2017. This site is hosted by the <a href="http://www.bgs.ac.uk/hosted.html" target="_blank">British Geological Survey</a> but responsibility for the content of the site lies with CGI not with the British Geological Survey.<br />
4+
Questions, suggestions or comments regarding the contents of this site should be directed to <a href="mailto:[email protected]">the CGI secretariat</a>.</p>
5+
</footer>
6+
</div>

headIncludes.cfm

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!--[if lt IE 9]>
2+
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"></script>
3+
<script src="https://cdnjs.cloudflare.com/ajax/libs/livingston-css3-mediaqueries-js/1.0.0/css3-mediaqueries.min.js"></script>
4+
<![endif]-->
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
6+
<meta name="viewport" content="width=device-width,initial-scale=1">
7+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
8+
<meta name="HandheldFriendly" content="true" />
9+
<link rel="stylesheet" href="/css/cgi_iugs.css" type="text/css" />
10+
<link rel="stylesheet" href="/css/font-awesome/css/font-awesome.min.css" type="text/css" />
11+
<cfinclude template="/cookieConsent.htm">

headIncludes.htm

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<!--[if lt IE 9]>
2+
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js"></script>
3+
<script src="https://cdnjs.cloudflare.com/ajax/libs/livingston-css3-mediaqueries-js/1.0.0/css3-mediaqueries.min.js"></script>
4+
<![endif]-->
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
6+
<meta name="viewport" content="width=device-width,initial-scale=1">
7+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
8+
<meta name="HandheldFriendly" content="true" />
9+
<link rel="stylesheet" href="/css/cgi_iugs.css" type="text/css" />
10+
<link rel="stylesheet" href="/css/font-awesome/css/font-awesome.min.css" type="text/css" />
11+
<!--#include file="/cookieConsent.htm"-->

header.htm

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<div id="header">
2+
<header>
3+
<div id="headerLogos">
4+
<span><a href="/tech_collaboration/geosciml.html"><img src="/images/geosciml.jpg" border="0" height="100" alt="GeoSciML logo" title="GeoSciML home page" /></a></span>
5+
<span><a href="http://www.iugs.org/" target="_blank"><img src="/images/IUGS.jpg" border="0" height="100" alt="IUGS logo" title="IUGS Home Page" /></a></span>
6+
<span id="linkedInLogo"><a href="https://www.linkedin.com/groups/6539642" target="_blank" title="Follow us on LinkedIn"><img src="/images/linkedin.jpg" alt="LinkedIn logo" /></a></span>
7+
<span id="ERML"><img src="/images/erml-logo.jpg" border="0" alt="ERML logo" title="ERML logo" /></span> </div>
8+
</header>
9+
</div>

index.html

+110
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,110 @@
1+
<!DOCTYPE html>
2+
<html xmlns="http://www.w3.org/1999/xhtml">
3+
<head>
4+
<!--#include file="/headIncludes.htm"-->
5+
<title>Commission for the Management and Application of Geoscience Information (CGI)</title>
6+
<meta name="description" content="The Commission for the Management and Application of Geoscience Information" />
7+
<meta name="keywords" content="CGI, The Commission for the Management and Application of Geoscience Information, GeoSciML" />
8+
<link href="/js/jquery.lightbox-0.5.css" rel="stylesheet" type="text/css" />
9+
<script src="/js/jquery-latest.min.js" type="text/javascript"></script>
10+
<script src="/js/jquery.lightbox-0.5.pack.js" type="text/javascript" language="JavaScript"></script>
11+
</head>
12+
<body>
13+
<div id="widthBox">
14+
<!--#include file="/header.htm"-->
15+
<div id="breadcrumbs"><a href="/home.html">Home</a></div>
16+
<div id="content">
17+
<article>
18+
<section>
19+
<div class="leftColumn">
20+
<div class="box">
21+
<h1>Welcome to the CGI</h1>
22+
<div id="joinBtn"><a href="/participation/home.html">Join Now</a></div>
23+
<p>CGI's mission is to foster the interoperability and exchange of geoscience information, by active community leadership, collaboration, education, and the development and promotion of geoscience information standards and best practice.</p>
24+
<p> Explore our website for resources about data sharing, <a href="/misc/standards.html">standards</a>, and best practice in geoscience information management.</p>
25+
<p>If you have any feedback, comments, or suggestions, please send them to us via our <a href="/contact.html">Contact Us</a> page.</p>
26+
</div>
27+
</div>
28+
<div class="rightColumn">
29+
<div class="box bordered">
30+
<h2>Current Working Groups</h2>
31+
<div>
32+
<p><a href="/tech_collaboration/geosciml.html">GeoSciML</a> &mdash; a collaborative OGC-CGI standards working group developing a geological data transfer standard &mdash;
33+
<label><a href="mailto:[email protected]?subject=Application to join the GeoSciML Standards Working Group">Join</a></label>
34+
</p>
35+
</div>
36+
<div>
37+
<p><a href="/tech_collaboration/earthResourceML.html">EarthResourceML</a> &mdash; developing a data transfer standard for mineral resources and mining information &mdash;
38+
<label><a href="mailto:[email protected]?subject=Application to join the EarthResourceML Working Group">Join</a></label>
39+
</p>
40+
</div>
41+
<div>
42+
<p><a href="/tech_collaboration/geoscience_terminology_working_group.html">Geoscience Terminology</a> &mdash; developing multilingual vocabularies for geoscience and earth resources information &mdash;
43+
<label><a href="mailto:[email protected]?subject=Application to join the Geoscience Terminology Working Group">Join</a></label>
44+
</p>
45+
</div>
46+
<div>
47+
<p><a href="/tech_collaboration/geosciencedwg.html">CGI/OGC Geoscience Domain Working Group</a> &mdash; aims to connect people to
48+
develop, improve and promote technologies for geoscience data description and sharing in OGC.
49+
The group is hosted by the OGC and co-chaired with CGI. <a href="https://portal.opengeospatial.org/?m=projects&a=view&project_id=539" target="_blank">Join</a> (requires an OGC login) or email the <a href="mailto:[email protected]">chair</a>.</p>
50+
</div>
51+
</div>
52+
</div>
53+
<br clear="all" />
54+
<div class="bordered">
55+
<h2>News</h2>
56+
<div class="box">
57+
<div>
58+
<h3>CGI council elections</h3>
59+
<P>Nominations for CGI Council for 2020&ndash;24 are open. Any CGI member can nominate to serve on the council to help organise CGI's standards programme and the outreach activities of the CGI. Councillors must have support to be able to attend annual council meetings (the next one will be at the 36th IGC in Delhi in March 2020) and to devote time to implement CGI's mission. <a href="http://www.cgi-iugs.org/misc/councilapp.html">Full procedures</a></P>
60+
61+
</div>
62+
<div class="clear">
63+
<div class="imgBoxRight20">
64+
<img src="/images/36thIGC-Delhi.png" alt="36th IGC logo" />
65+
</div>
66+
<h3>36th International Geological Congress</h3>
67+
<h4>2&ndash;8 March, 2020, Delhi, India</h4>
68+
<p>Abstracts are invited to the special symposium <a href="https://www.36igc.org/science-program" target="_blank">Advances in geoscience data sharing and processing</a> (Theme 45.10) at the 36th International Geological Congress (IGC). The symposium will highlight new techniques, standards, and algorithms for managing, delivering, visualising and analysing geoscience data both globally and regionally, including 'big' data. The symposium is jointly organised by CGI, IAMG, and OneGeology.</p>
69+
</div>
70+
<div class="clear">
71+
<h3>CGI Award for Young Earth Scientists at the 36th IGC</h3>
72+
<p>CGI sponsors an award to assist early career scientists to present at conferences such as the IGC on the use of CGI standards in data delivery and analysis. The award covers up to US$2000 towards the cost of travel and accommodation at the IGC in Delhi. Registration cost is covered by the Young Earth Scientists (YES) Network. <a href="/docs/CGI_YES_award_2019-20.pdf">Full details</a>.</p>
73+
<p>Applications for the 36th IGC award close on 15 October 2019. </p>
74+
</div>
75+
<div class="clear">
76+
<div class="imgBoxRight20">
77+
<img src="/images/erml-logo.jpg" alt="EarthResourceML logo" />
78+
</div>
79+
<h3>New EarthResourceML-Lite v2.0.1 data model and schemas released</h3>
80+
<p><A href="http://earthresourceml.org/" target="_blank">EarthResourceML-Lite</A> is a data model and schema for simple map services (e.g. WMS and WFS Simple Features). It is an abridged version of the full EarthResourceML model and can be used to deliver simplified views on mineral occurrences and their commodities, mines, mining activities and mine waste products.</p>
81+
</div>
82+
<div class="clear">
83+
<h3>Recent CGI Meetings</h3>
84+
<div class="imgBoxRight40"><img src="/images/ERML-meeting-Madrid.jpg" alt="ERML meeting, Madrid" />
85+
<p>
86+
<label>Members of the EarthResourceML Working group met at IGME (the Spanish Geological Survey) in Madrid in May. L-R: Wang Yongzhi, Jouni Vuollo (chair), Mark Rattenbury, Ollie Raymond, Katarzyna Sadlowska, and Zhang Minghua.</label>
87+
</p>
88+
</div>
89+
<p>The CGI Council and two of its standards working groups &mdash; Geoscience Terminology and EarthResourceML &mdash; convened in May in Madrid in conjunction with the <a href="http://www.geology.cz/gic" target="_blank">34th Geoscience Information Consortium</a> (GIC) conference at the Spanish Geological Survey, IGME. Progress was made towards publishing several new geoscience vocabularies. Progress was also made towards publication of a new version of EarthResourceML (version 3.0), to address some issues identified by current users of the EarthResourceML v2.0 data transfer standard. </p>
90+
</div>
91+
<div class="clear">
92+
<h3>IUGS Deep-time Digital Earth program (DDE)</h3>
93+
<div class="imgBoxRight40"><img src="/images/DDE.jpg" alt="Announcing the opening of DDE" />
94+
<p>
95+
<label>IUGS President Qiuming Cheng announcing the DDE program at the opening of the DDE Forum.</label>
96+
</p>
97+
</div>
98+
<p>CGI is a founding partner in the new IUGS big science program, the <a href="https://iugs.org/uploads/Reports/IUGS_Deep_Time_Digital_Earth_Launched.pdf" target="_blank">Deep-time Digital Earth</a> (DDE). DDE was kicked off at the recent IUGS Executive Council meeting in Beijing.</p>
99+
</div>
100+
101+
</div>
102+
</div>
103+
</section>
104+
</article>
105+
</div>
106+
<!--#include file="/menu.htm"-->
107+
<!--#include file="/footer.htm"-->
108+
</div>
109+
</body>
110+
</html>

js/functions.js

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
// JavaScript Document
2+
function compose(t1,t2,t3,t4)
3+
{
4+
document.write( "<a href=\"mailto:" + t1 + "@" + t2 + "." + t3 + "\">" );
5+
document.write(t4);
6+
document.write( "</a>" );
7+
}
8+
9+

js/images/lightbox-blank.gif

43 Bytes
Loading

js/images/lightbox-btn-close.gif

399 Bytes
Loading

js/images/lightbox-btn-next.gif

812 Bytes
Loading

js/images/lightbox-btn-prev.gif

832 Bytes
Loading

js/images/lightbox-ico-loading.gif

3.9 KB
Loading

js/jQuerySlideshow.css

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
@charset "utf-8";
2+
/* CSS Document */
3+
#slideshow {
4+
width:96%;
5+
height:265px;
6+
}
7+
#slideshow img {
8+
background-color: #bbd3eb;
9+
margin-left:auto;
10+
margin-right:auto;
11+
text-align:center;
12+
}
13+
#slideshow img:hover {
14+
cursor:pointer;
15+
}
16+
.hideDiv {
17+
display:none;
18+
}
19+
p#caption {clear:both; font-size:90%;}

js/jquery-latest.min.js

+44
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)