Home | History | Annotate | Download | only in earth
      1 <!DOCTYPE html>
      2 <html>
      3 <!--
      4 Copyright (c) 2013 The Chromium Authors. All rights reserved.
      5 Use of this source code is governed by a BSD-style license that can be
      6 found in the LICENSE file.
      7 -->
      8 <head>
      9   <meta http-equiv="Pragma" content="no-cache">
     10   <meta http-equiv="Expires" content="-1">
     11   <meta charset="UTF-8">
     12   <title>{{title}}</title>
     13   <script type="text/javascript" src="common.js"></script>
     14   <script type="text/javascript" src="example.js"></script>
     15 </head>
     16 <body {{attrs}} data-width="640" data-height="640">
     17   <h1>{{title}}</h1>
     18   <h2>Status: <code id="statusField">NO-STATUS</code></h2>
     19   <div>
     20     This demo renders a rotating globe using the Graphics2D interface.
     21     Image Credit:
     22     NASA Goddard Space Flight Center Image by Reto Stckli (land surface,
     23     shallow water, clouds). Enhancements by Robert Simmon (ocean color,
     24     compositing, 3D globes, animation).
     25     Data and technical support: MODIS Land Group; MODIS Science Data,
     26     Support Team; MODIS Atmosphere Group; MODIS Ocean Group Additional data:
     27     USGS EROS Data Center (topography); USGS Terrestrial Remote Sensing
     28     Flagstaff Field Center (Antarctica); Defense Meteorological
     29     Satellite Program (city lights).
     30     <br>
     31     Zoom:
     32     <input type="range" id="zoomRange"
     33         min="1.0" max="50.0" step="0.5" value="14.0" />
     34     Light:
     35     <input type="range" id="lightRange"
     36         min="0.2" max="2.0" step=".01" value="1.0" />
     37     <br>
     38     Number of threads (0 is main thread):
     39     <input type="radio" name="threadCount" id="radio0" value="0"
     40         checked="checked">
     41     <label for="radio0">0</label>
     42     <input type="radio" name="threadCount" id="radio1" value="1">
     43     <label for="radio1">1</label>
     44     <input type="radio" name="threadCount" id="radio2" value="2">
     45     <label for="radio2">2</label>
     46     <input type="radio" name="threadCount" id="radio3" value="4">
     47     <label for="radio3">4</label>
     48     <input type="radio" name="threadCount" id="radio4" value="6">
     49     <label for="radio4">6</label>
     50     <input type="radio" name="threadCount" id="radio5" value="8">
     51     <label for="radio5">8</label>
     52     <input type="radio" name="threadCount" id="radio6" value="12">
     53     <label for="radio6">12</label>
     54     <input type="radio" name="threadCount" id="radio7" value="16">
     55     <label for="radio7">16</label>
     56     <input type="radio" name="threadCount" id="radio8" value="24">
     57     <label for="radio8">24</label>
     58     <input type="radio" name="threadCount" id="radio9" value="32">
     59     <label for="radio9">32</label>
     60     <br>
     61     <input type="submit" id="benchmark" value="Run Benchmark">
     62     <label id="result" name="result"> </label>
     63   </div>
     64   <!-- The NaCl plugin will be embedded inside the element with id "listener".
     65       See common.js.-->
     66   <div id="listener"></div>
     67 </body>
     68 </html>
     69