<?php
//use environmental variables for my path
// Works as of PHP 4.3.0
$home = getenv('WEB');
#home=$_ENV['WEB'];
set_include_path("$home/html/include");
// Works in all PHP versions
ini_set('include_path', "$home/html/include");

date_default_timezone_set('UTC');
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

<head>
    <meta http-equiv="content-type" content="text/html; charset=utf-8" />
    <meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
    <title>ISC Products and Services</title>
    <link rel="icon" href="/images/favicon.ico" type="image/ico" />
    <link rel="stylesheet" type="text/css" href="/css/iscschema.css">
</head>

<body>
<div id="container">

    <?php include("$home/html/include/header.php"); ?>
    <div id="maingeneral">
        <div id="content">
            <!-- Loading Left Menu -->

            <?php include("include/leftmenu.php"); ?>
            <div id="rightinner">
                <h3 style="border-bottom:1px dotted #bababa;">ISC Products and Services</h3>
                <p>The following is the list of current ISC products and services. We recommend that users use this
                    list to decide which ISC product suits their research needs best:
                </p>

                <ul>
                    <li>
                        <strong><a href="/iscbulletin/">ISC Bulletin</a></strong> - <span style="color: #0069d6">the most complete definitive long-term summary of the Earth’s natural seismicity
                        and other seismic events</span> - used across many fields of Geosciences; the most comprehensive
                        description is given in printed <a href="/iscbulletin/summary/">Summaries of the ISC Bulletin</a>
                    </li>
                    <br />
                    <li>
                        <strong><a href="/iscgem/">ISC-GEM Global Instrumental Earthquake Catalogue</a></strong> - <span style="color: #0069d6">substantially extended and improved list of
                        moderate to large global earthquakes with homogeneous location and magnitude estimates</span>
                        - serves the requirements of seismic hazard and risk modelling studies as well as global
                        and regional earthquake forecasting
                    </li>
                    <br />
                    <li>
                        <strong><a href="/isc-ehb/">ISC-EHB bulletin</a></strong> - <span style="color: #0069d6">teleseismically well-constrained events selected according to strict
                        criteria from the ISC Bulletin and relocated using the EHB algorithm to minimise hypocentre
                        location errors, especially depth errors</span> – widely used in tomographic studies of the inner
                        structure of the Earth as well as general studies of seismicity and tectonics
                    </li>
                    <br />
                    <li>
                        <strong><a href="/registries/">International Seismograph Station Registry</a></strong> – <span style="color: #0069d6">the list of globally unique codes and major
                        parameters of stations engaged in the international data exchange</span> – facilitates use of modern
                        and historical earthquake bulletins as well as the international waveform storage and exchange
                    </li>
                    <br />
                    <li>
                        <strong><a href="/gtevents/">IASPEI Reference Event List (GT)</a></strong> - <span style="color: #0069d6">a database of earthquakes and explosions for which
                        hypocentral information is known with high confidence and with seismic signals recorded at
                        teleseismic distances</span> – used in a variety of calibration tasks for improving earth models,
                        seismic wave travel times and earthquake location
                    </li>
                    <br />
                    <li>
                        <strong><a href="/event_bibliography/overview.php">ISC Event Bibliography</a></strong> - <span style="color: #0069d6">references to scientific publications related to specific natural
                        and anthropogenic events in a given geographical region and time period</span> – used in education,
                        scientific publishing and general multidisciplinary research
                    </li>
                    <br />
                    <li>
                        <strong><a href="/dataset_repository">Dataset Repository</a></strong> - <span style="color: #0069d6">a supplementary archival service</span> - used by individual researchers or groups to submit seismological datasets that they wish to be openly available to scientific community for a long period of time.</span>
                    </li>
                    <br />
                    <li>
                        <strong><a href="/projects/seismocontacts/">International Registry of Seismological Contacts</a></strong> - <span style="color: #0069d6">the worldwide contact details of
                        seismological organisations and seismologists</span> – used in emergencies and for facilitating
                        international scientific cooperation.
                    </li>
                    <br />
                    <li>
                        <strong><a href="/projects/ctbtolink/">CTBTO Link</a></strong> - <span style="color: #0069d6">The CTBTO Link to the ISC Database</span> – a collection of tools for manipulating the seismological datasets maintained at the ISC. (Only available to States Parties of the CTBT)
                    </li>

                </ul>
            </div>
        </div>

    </div>
    <?php include("$home/html/include/footer.php"); ?>
    <?php
    //close the container div
    ?>
</div>
</body>

</html>
