├── css ├── op.png ├── ot.png ├── rp.png ├── rt.png ├── uu.png ├── evbig.png ├── op_uns.png ├── ot_uns.png ├── rp_uns.png ├── rt_uns.png ├── evdefault.png ├── smoothness │ └── images │ │ ├── animated-overlay.gif │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_2e83ff_256x240.png │ │ ├── ui-icons_454545_256x240.png │ │ ├── ui-icons_888888_256x240.png │ │ ├── ui-icons_cd0a0a_256x240.png │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ └── ui-bg_highlight-soft_75_cccccc_1x100.png ├── help.css ├── basic.css └── wimodule.css ├── data └── history.csv ├── doc ├── tutorial.rst ├── _static │ ├── wi-overview2.png │ └── generic-overview.png ├── index.rst ├── _toReview │ ├── coding_style.txt │ ├── coding_checks.sh │ └── source │ │ └── beta-testers.txt ├── introduction.rst ├── changelog.rst └── Makefile ├── .gitignore ├── examples ├── webdc3 │ ├── images │ │ ├── background.gif │ │ ├── eida-logo.png │ │ ├── eida-logo2.png │ │ ├── logo_gfz_de.gif │ │ ├── eida-orfeus3.jpg │ │ ├── gfn_logo_dark.png │ │ ├── wordmark_gfz_de.gif │ │ └── Makefile │ ├── gfz-backup.css │ ├── wi-geofon.css │ ├── index.html │ └── geofon.css ├── webdc2012 │ ├── images │ │ ├── gfn_logo_new.gif │ │ ├── neries_logo.gif │ │ └── webdc_banner.gif │ ├── date_functions.js │ ├── webdc.html │ ├── webinterface.css │ └── map_functions.js ├── basic │ ├── basic.css │ └── index.html └── generic │ ├── index.html │ └── help.html ├── wsgi ├── descriptions │ ├── media │ │ ├── wi-overview2.png │ │ └── generic-overview.png │ ├── media-src │ │ └── wi-overview2.odg │ └── webinterface.rst ├── webdc3.wsgi ├── webdc3.conf.sample ├── modules │ └── core.py ├── webinterface.cfg.sample └── wsgicomm.py ├── tools ├── openlayers │ └── theme │ │ └── default │ │ ├── img │ │ ├── blank.gif │ │ ├── close.gif │ │ ├── pan_on.png │ │ ├── ruler.png │ │ ├── pan-panel.png │ │ ├── pan_off.png │ │ ├── zoom-panel.png │ │ ├── add_point_off.png │ │ ├── add_point_on.png │ │ ├── draw_line_off.png │ │ ├── draw_line_on.png │ │ ├── draw_point_off.png │ │ ├── draw_point_on.png │ │ ├── view_next_off.png │ │ ├── view_next_on.png │ │ ├── draw_polygon_off.png │ │ ├── draw_polygon_on.png │ │ ├── editing_tool_bar.png │ │ ├── move_feature_off.png │ │ ├── move_feature_on.png │ │ ├── panning-hand-off.png │ │ ├── panning-hand-on.png │ │ ├── remove_point_off.png │ │ ├── remove_point_on.png │ │ ├── save_features_on.png │ │ ├── view_previous_on.png │ │ ├── drag-rectangle-off.png │ │ ├── drag-rectangle-on.png │ │ ├── navigation_history.png │ │ ├── pan-panel-NOALPHA.png │ │ ├── save_features_off.png │ │ ├── view_previous_off.png │ │ ├── zoom-panel-NOALPHA.png │ │ └── overview_replacement.gif │ │ ├── ie6-style.css │ │ └── google.css ├── jquery │ └── jquery.cookie.js └── jquery-ajax-native.js ├── test ├── samples │ ├── user1.csv │ ├── user0.csv │ ├── eqinfo_sample3.csv │ ├── eqinfo_sample2.csv │ └── eqinfo_sample.csv ├── testParseFile.html ├── testPublic.txt ├── eventconfig.py ├── manage.py ├── testHelpers.py ├── test.html ├── webinterfaceEvent.py ├── unittestTools.py ├── test_inv.py ├── testMetadata.py └── testEvent.html ├── error.html ├── CITATION ├── src ├── main.js ├── config.js ├── interface.js └── console.js ├── README.md ├── Makefile └── TODO /css/op.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/css/op.png -------------------------------------------------------------------------------- /css/ot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/css/ot.png -------------------------------------------------------------------------------- /css/rp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/css/rp.png -------------------------------------------------------------------------------- /css/rt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/css/rt.png -------------------------------------------------------------------------------- /css/uu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/css/uu.png -------------------------------------------------------------------------------- /css/evbig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/css/evbig.png -------------------------------------------------------------------------------- /data/history.csv: -------------------------------------------------------------------------------- 1 | # Date/time, networks, stations, locations, channels 2 | -------------------------------------------------------------------------------- /css/op_uns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/css/op_uns.png -------------------------------------------------------------------------------- /css/ot_uns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/css/ot_uns.png -------------------------------------------------------------------------------- /css/rp_uns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/css/rp_uns.png -------------------------------------------------------------------------------- /css/rt_uns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/css/rt_uns.png -------------------------------------------------------------------------------- /css/evdefault.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/css/evdefault.png -------------------------------------------------------------------------------- /doc/tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/doc/tutorial.rst -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.xml 2 | *.bin 3 | doc/build-doc/ 4 | doc/_build/ 5 | *.pyc 6 | *.cfg 7 | olddoc 8 | -------------------------------------------------------------------------------- /doc/_static/wi-overview2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/doc/_static/wi-overview2.png -------------------------------------------------------------------------------- /doc/_static/generic-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/doc/_static/generic-overview.png -------------------------------------------------------------------------------- /examples/webdc3/images/background.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/examples/webdc3/images/background.gif -------------------------------------------------------------------------------- /examples/webdc3/images/eida-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/examples/webdc3/images/eida-logo.png -------------------------------------------------------------------------------- /examples/webdc3/images/eida-logo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/examples/webdc3/images/eida-logo2.png -------------------------------------------------------------------------------- /examples/webdc3/images/logo_gfz_de.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/examples/webdc3/images/logo_gfz_de.gif -------------------------------------------------------------------------------- /examples/webdc3/images/eida-orfeus3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/examples/webdc3/images/eida-orfeus3.jpg -------------------------------------------------------------------------------- /examples/webdc3/images/gfn_logo_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/examples/webdc3/images/gfn_logo_dark.png -------------------------------------------------------------------------------- /wsgi/descriptions/media/wi-overview2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/wsgi/descriptions/media/wi-overview2.png -------------------------------------------------------------------------------- /css/smoothness/images/animated-overlay.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/css/smoothness/images/animated-overlay.gif -------------------------------------------------------------------------------- /examples/webdc2012/images/gfn_logo_new.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/examples/webdc2012/images/gfn_logo_new.gif -------------------------------------------------------------------------------- /examples/webdc2012/images/neries_logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/examples/webdc2012/images/neries_logo.gif -------------------------------------------------------------------------------- /examples/webdc2012/images/webdc_banner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/examples/webdc2012/images/webdc_banner.gif -------------------------------------------------------------------------------- /examples/webdc3/images/wordmark_gfz_de.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/examples/webdc3/images/wordmark_gfz_de.gif -------------------------------------------------------------------------------- /tools/openlayers/theme/default/img/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/tools/openlayers/theme/default/img/blank.gif -------------------------------------------------------------------------------- /tools/openlayers/theme/default/img/close.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/tools/openlayers/theme/default/img/close.gif -------------------------------------------------------------------------------- /tools/openlayers/theme/default/img/pan_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/tools/openlayers/theme/default/img/pan_on.png -------------------------------------------------------------------------------- /tools/openlayers/theme/default/img/ruler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/tools/openlayers/theme/default/img/ruler.png -------------------------------------------------------------------------------- /wsgi/descriptions/media-src/wi-overview2.odg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/wsgi/descriptions/media-src/wi-overview2.odg -------------------------------------------------------------------------------- /wsgi/descriptions/media/generic-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/wsgi/descriptions/media/generic-overview.png -------------------------------------------------------------------------------- /tools/openlayers/theme/default/img/pan-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/tools/openlayers/theme/default/img/pan-panel.png -------------------------------------------------------------------------------- /tools/openlayers/theme/default/img/pan_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/tools/openlayers/theme/default/img/pan_off.png -------------------------------------------------------------------------------- /css/smoothness/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/css/smoothness/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /css/smoothness/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/css/smoothness/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /css/smoothness/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/css/smoothness/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /css/smoothness/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/css/smoothness/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /css/smoothness/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/css/smoothness/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /tools/openlayers/theme/default/img/zoom-panel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/tools/openlayers/theme/default/img/zoom-panel.png -------------------------------------------------------------------------------- /css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/css/smoothness/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/css/smoothness/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/css/smoothness/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/css/smoothness/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /css/smoothness/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/css/smoothness/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/css/smoothness/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/css/smoothness/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /tools/openlayers/theme/default/img/add_point_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/tools/openlayers/theme/default/img/add_point_off.png -------------------------------------------------------------------------------- /tools/openlayers/theme/default/img/add_point_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/tools/openlayers/theme/default/img/add_point_on.png -------------------------------------------------------------------------------- /tools/openlayers/theme/default/img/draw_line_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/tools/openlayers/theme/default/img/draw_line_off.png -------------------------------------------------------------------------------- /tools/openlayers/theme/default/img/draw_line_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/tools/openlayers/theme/default/img/draw_line_on.png -------------------------------------------------------------------------------- /tools/openlayers/theme/default/img/draw_point_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/tools/openlayers/theme/default/img/draw_point_off.png -------------------------------------------------------------------------------- /tools/openlayers/theme/default/img/draw_point_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/tools/openlayers/theme/default/img/draw_point_on.png -------------------------------------------------------------------------------- /tools/openlayers/theme/default/img/view_next_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/tools/openlayers/theme/default/img/view_next_off.png -------------------------------------------------------------------------------- /tools/openlayers/theme/default/img/view_next_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/tools/openlayers/theme/default/img/view_next_on.png -------------------------------------------------------------------------------- /tools/openlayers/theme/default/img/draw_polygon_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/tools/openlayers/theme/default/img/draw_polygon_off.png -------------------------------------------------------------------------------- /tools/openlayers/theme/default/img/draw_polygon_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/tools/openlayers/theme/default/img/draw_polygon_on.png -------------------------------------------------------------------------------- /tools/openlayers/theme/default/img/editing_tool_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/tools/openlayers/theme/default/img/editing_tool_bar.png -------------------------------------------------------------------------------- /tools/openlayers/theme/default/img/move_feature_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/tools/openlayers/theme/default/img/move_feature_off.png -------------------------------------------------------------------------------- /tools/openlayers/theme/default/img/move_feature_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/tools/openlayers/theme/default/img/move_feature_on.png -------------------------------------------------------------------------------- /tools/openlayers/theme/default/img/panning-hand-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/tools/openlayers/theme/default/img/panning-hand-off.png -------------------------------------------------------------------------------- /tools/openlayers/theme/default/img/panning-hand-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/tools/openlayers/theme/default/img/panning-hand-on.png -------------------------------------------------------------------------------- /tools/openlayers/theme/default/img/remove_point_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/tools/openlayers/theme/default/img/remove_point_off.png -------------------------------------------------------------------------------- /tools/openlayers/theme/default/img/remove_point_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/tools/openlayers/theme/default/img/remove_point_on.png -------------------------------------------------------------------------------- /tools/openlayers/theme/default/img/save_features_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/tools/openlayers/theme/default/img/save_features_on.png -------------------------------------------------------------------------------- /tools/openlayers/theme/default/img/view_previous_on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/tools/openlayers/theme/default/img/view_previous_on.png -------------------------------------------------------------------------------- /test/samples/user1.csv: -------------------------------------------------------------------------------- 1 | "datetime","lat","long","depth" 2 | 2013-03-01T08:00:00,15,99,10 3 | 4 | 2013-03-02T08:00:00,0,99,10 5 | 2013-03-03T08:00:00,30,99,10 6 | -------------------------------------------------------------------------------- /tools/openlayers/theme/default/img/drag-rectangle-off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/tools/openlayers/theme/default/img/drag-rectangle-off.png -------------------------------------------------------------------------------- /tools/openlayers/theme/default/img/drag-rectangle-on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/tools/openlayers/theme/default/img/drag-rectangle-on.png -------------------------------------------------------------------------------- /tools/openlayers/theme/default/img/navigation_history.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/tools/openlayers/theme/default/img/navigation_history.png -------------------------------------------------------------------------------- /tools/openlayers/theme/default/img/pan-panel-NOALPHA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/tools/openlayers/theme/default/img/pan-panel-NOALPHA.png -------------------------------------------------------------------------------- /tools/openlayers/theme/default/img/save_features_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/tools/openlayers/theme/default/img/save_features_off.png -------------------------------------------------------------------------------- /tools/openlayers/theme/default/img/view_previous_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/tools/openlayers/theme/default/img/view_previous_off.png -------------------------------------------------------------------------------- /tools/openlayers/theme/default/img/zoom-panel-NOALPHA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/tools/openlayers/theme/default/img/zoom-panel-NOALPHA.png -------------------------------------------------------------------------------- /tools/openlayers/theme/default/img/overview_replacement.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/tools/openlayers/theme/default/img/overview_replacement.gif -------------------------------------------------------------------------------- /css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EIDA/webdc3/HEAD/css/smoothness/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /wsgi/webdc3.wsgi: -------------------------------------------------------------------------------- 1 | import os 2 | import sys 3 | 4 | sys.path.insert(0, os.path.dirname(__file__)) 5 | 6 | import webinterface 7 | 8 | application = webinterface.application 9 | -------------------------------------------------------------------------------- /test/samples/user0.csv: -------------------------------------------------------------------------------- 1 | "datetime","lat","long","depth" 2 | 2013-03-01T08:00:00,15,99,10 3 | 2013-04-01T08:00:00,99,15,10 4 | 2013-05-01T08:00:00,15,99, 5 | 2013-06-01T08:00:00,15,99,10,extra 6 | 2013-07-01T27:00:00,15,99,10 7 | 2013-03-02T08:00:00,0,99,10 8 | -------------------------------------------------------------------------------- /tools/openlayers/theme/default/ie6-style.css: -------------------------------------------------------------------------------- 1 | .olControlZoomPanel div { 2 | background-image: url(img/zoom-panel-NOALPHA.png); 3 | } 4 | .olControlPanPanel div { 5 | background-image: url(img/pan-panel-NOALPHA.png); 6 | } 7 | .olControlEditingToolbar { 8 | width: 200px; 9 | } 10 | 11 | -------------------------------------------------------------------------------- /error.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |Loading Javascript failed. Check that the loader is available.
10 | Click here to retry.
Enter your event info as CSV:
5 | URL: action="http://localhost:8005/event/parse" 6 | URL: action="http://localhost:8008/event/parse" 7 | URL: action="http://localhost/testwi/webinterface/event/parse" 8 | 31 |A header row is allowed, and may be succesfully ignored. You may need to quote strings for auto-detection to work properly. YMMV.
32 | 33 | 34 | -------------------------------------------------------------------------------- /CITATION: -------------------------------------------------------------------------------- 1 | 2 | You are welcome to use and modify the webinterface software. 3 | See the README.md and COPYING files for details. 4 | 5 | If you use this software for research we would appreciate appropriate citation. 6 | This may be prepared using the bibliographic metadata contained in our DOI, accessible through the DOI system and at 7 | http://pmd.gfz-potsdam.de/panmetaworks/download.php?item=escidoc:1423080&mdrecord=datacite 8 | 9 | To cite WebDC3 in publication, please use: 10 | 11 | Bianchi, Marcelo; Evans, Peter L.; Heinloo, Andres; Quinteros, Javier (2015): WebDC3 Web Interface. GFZ Data Services. doi:10.5880/GFZ.2.4/2016.001 12 | 13 | This may need modification for the citation style of your publication. 14 | You are encouraged to include the version number of the software. 15 | This is shown on the "Console" tab when the page loads, e.g. "Loading webinterface v1.1 (2017.096)". 16 | 17 | A BibTeX entry for LaTeX users is 18 | 19 | @Book{, 20 | author = {Marcelo Bianchi and Peter L. Evans and Andres Heinloo and Javier Quinteros} 21 | title = {WebDC3 Web Interface}, 22 | publisher = {GFZ Data Services}, 23 | year = {2015}, 24 | doi = {10.5880/GFZ.2.4/2016.001}, 25 | url = {http://geofon.gfz-potsdam.de/software/webdc3}, 26 | } 27 | 28 | For information on citing software products generally, see the 29 | FORCE11 document [*]. 30 | 31 | 32 | [*] FORCE11 Software Citation Working Group (2016), "Software Citation Principles", (Editors: Arfon M. Smith, Daniel S. Katz, Kyle E. Niemeyer). 33 | Accessed 2017-08-08 at https://www.force11.org/sites/default/files/shared-documents/software-citation-principles.pdf 34 | 35 | 36 | -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- 1 | /* 2 | * WebDC 3 3 | * 4 | * Copyright (C) 2013-2016 Helmholtz-Zentrum Potsdam - Deutsches GeoForschungsZentrum GFZ 5 | * 6 | */ 7 | 8 | import initConsole from './console' 9 | import initConfig from './config' 10 | import initMapping from './mapping' 11 | import initService from './service' 12 | import initFdsnws from './fdsnws' 13 | import initRequest from './request' 14 | import initEvents from './events' 15 | import initStation from './station' 16 | import initSubmit from './submit' 17 | import initReview from './review' 18 | import initInterface from './interface' 19 | 20 | var VERSION = "1.2 (2019.331)" 21 | 22 | window.WIError = function(message) { 23 | this.name = undefined // omit exception name on the console 24 | this.message = message 25 | this.toString = function() { return this.message } 26 | } 27 | 28 | window.WIError.prototype = new Error 29 | 30 | // The modules use interfaceLoader.debug(), so add this for compatibility. 31 | window.interfaceLoader = new function() { 32 | this.debug = function() { 33 | return (typeof eidaDebug != 'undefined') ? eidaDebug : true 34 | } 35 | } 36 | 37 | $(document).ready(function() { 38 | initConsole() 39 | .then(function() { 40 | wiConsole.info("Loading webinterface v" + VERSION + "...") 41 | }) 42 | .then(initConfig) 43 | .then(initMapping) 44 | .then(initService) 45 | .then(initFdsnws) 46 | .then(initRequest) 47 | .then(initEvents) 48 | .then(initStation) 49 | .then(initSubmit) 50 | .then(initReview) 51 | .then(initInterface) 52 | .then(function() { 53 | wiConsole.info("Ready.") 54 | }) 55 | .catch(function() { 56 | wiConsole.info("Aborted.") 57 | }) 58 | }) 59 | 60 | -------------------------------------------------------------------------------- /examples/webdc3/wi-geofon.css: -------------------------------------------------------------------------------- 1 | /* Style changes after loading the generic wimodule.css file */ 2 | /* 3 | * .wi-table-header-cell { 4 | * background: #f00; 5 | * color: yellow; 6 | * } 7 | */ 8 | 9 | /* Magic for help pop-ups: */ 10 | 11 | .boxRight h2 { 12 | /* override geofon.css */ 13 | display: inline; 14 | } 15 | 16 | .help { 17 | /* override geofon.css */ 18 | display: block; 19 | right: 8px; 20 | } 21 | 22 | .help a { 23 | color: silver; 24 | text-decoration: none; 25 | padding: 1px 6px; 26 | margin-right: 8px; 27 | border: 1px Solid silver; 28 | float: right; 29 | } 30 | 31 | .help a:hover { 32 | /* border: 1px solid silver; */ 33 | color: blue; 34 | background-color: orange; 35 | border: 1px Solid red; 36 | float: right; 37 | z-index: 999; 38 | } 39 | 40 | .help a span { 41 | display: none; 42 | } 43 | 44 | .help a:hover span { 45 | display: block; 46 | overflow: visible; 47 | position: absolute; 48 | top: auto; 49 | right:0px; 50 | text-align: right; 51 | color:red; 52 | background-color:pink; 53 | width: 24em; 54 | padding: 0px; 55 | border: 1px solid red; 56 | z-index: 999; 57 | } 58 | 59 | /* wi controls use class="wi-short-spacer" as an introducer before 60 | * a short selector e.g. a pull-down menu. 61 | * Embed it in a "wi-short-div" and use absolute positioning for 62 | * the object on the right. The "wi-short-spacer" has normal 63 | * positioning so it sets the height of the "wi-short-div". 64 | */ 65 | .wi-short-div { 66 | position: relative; 67 | } 68 | 69 | .wi-short-spacer { 70 | margin: 0 0 0.5em 0; 71 | width: 48%; 72 | } 73 | 74 | .wi-short-right { 75 | position: absolute; 76 | width: 48%; 77 | top: 0px; 78 | right: 0px; 79 | } 80 | 81 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | README file for webinterface 3 | ---------------------------- 4 | 5 | GUI tool for event- and time-based waveform selection. 6 | 7 | Copyright (C) 2013-2015 GEOFON team, Helmholtz-Zentrum Potsdam - Deutsches GeoForschungsZentrum GFZ 8 | 9 | 10 | To make the documentation: 11 | 12 | cd doc ; make latexpdf ; acroread _build/latex/WebDC3webinterface.pdf 13 | 14 | To install: 15 | see doc/ 16 | 17 | If you use this software for research we would appreciate appropriate citation. 18 | See the `CITATION` file for details. 19 | 20 | 21 | Licence 22 | ======= 23 | 24 | This program is free software; you can redistribute it and/or modify 25 | it under the terms of the GNU General Public License as published by 26 | the Free Software Foundation; either version 3, or (at your option) 27 | any later version. For more information, see http://www.gnu.org/ 28 | 29 | This program is distributed in the hope that it will be useful, 30 | but WITHOUT ANY WARRANTY; without even the implied warranty of 31 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 32 | GNU General Public License for more details. 33 | 34 | You should have received a copy of the GNU General Public License 35 | along with this program. If not, seeDerived from interface-server-client.txt
10 | 11 |