├── .gitignore ├── .gitmodules ├── Network.md ├── README.md ├── RTLSDRs.md ├── blacklist-rtlsdr.conf ├── cfg ├── stationinfo.txt └── websdr.cfg ├── dist10a └── pub2 │ ├── beacons.json │ ├── repeaters.json │ ├── static │ ├── bootstrap │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.min.css │ │ │ ├── bootstrap.min.css.gz │ │ │ ├── ukhasnet.css │ │ │ ├── ukhasnet.css.gz │ │ │ └── ukhasnet.css~ │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── bootstrap.min.js.gz │ ├── dygraph-combined.js │ ├── dygraph-combined.js.gz │ ├── icons │ │ ├── antenna-green.png │ │ └── antenna-red.png │ ├── jquery-1.11.0.min.js │ ├── jquery-1.11.0.min.js.gz │ ├── jquery-1.11.0.min.map │ ├── leaflet │ │ ├── images │ │ │ ├── layers-2x.png │ │ │ ├── layers.png │ │ │ ├── marker-icon-2x.png │ │ │ ├── marker-icon.png │ │ │ └── marker-shadow.png │ │ ├── leaflet-src.js │ │ ├── leaflet.css │ │ ├── leaflet.js │ │ └── leaflet.js.gz │ ├── moment.min.js │ └── moment.min.js.gz │ ├── websdr-base.js │ └── websdr-controls.html ├── dist11 ├── doc │ ├── config.txt │ ├── install.txt │ ├── iq-calibration.txt │ ├── raspberrypi.txt │ ├── upgrade-dist07.txt │ ├── upgrade-dist08.txt │ ├── upgrade-dist09.txt │ ├── upgrade-dist10.txt │ └── upgrade.txt └── pub2 │ ├── carrier.png │ ├── crossdomain.xml │ ├── edgelower.png │ ├── edgelowerbb.png │ ├── edgeupper.png │ ├── edgeupperbb.png │ ├── index.html │ ├── m.html │ ├── mobile-controls.html │ ├── scaleblack.png │ ├── smeter1.png │ ├── sysop.html │ ├── websdr-base.js │ ├── websdr-controls.html │ ├── websdr-head.html │ ├── websdr-javasound.js │ ├── websdr-javawaterfall.js │ ├── websdr-sound.js │ └── websdr-waterfall.js ├── pub ├── .gitignore ├── WebSDR-Presentation.pdf ├── WebSDR-User-Guide.pdf ├── index.html ├── index.html.old ├── jquery-3.2.1.min.js ├── m.html ├── orbits.js ├── robots.txt ├── sitemap.xml ├── suws-favicon.ico ├── suws-logo-square-48.png ├── suws-logo-topleft.png └── websdr-1405020937.jar ├── rtl-sdr.rules ├── rtltcp_10ghz.conf ├── rtltcp_144.conf ├── rtltcp_146.conf ├── rtltcp_432.conf ├── rtltcp_435.conf ├── rtltcp_437.conf ├── rtltcp_50.conf ├── rtltcp_70.conf ├── rtltcp_dc.conf ├── webpages ├── .well-known │ └── security.txt ├── WebSDR-Presentation.pdf ├── WebSDR-User-Guide.pdf ├── carrier.png ├── edgelower.png ├── edgelowerbb.png ├── edgeupper.png ├── edgeupperbb.png ├── favicon.ico ├── img │ ├── suws-favicon.ico │ ├── suws-logo-square-48.png │ └── suws-logo-topleft.png ├── index.css ├── index.html ├── lib │ ├── bootstrap-4.4.1 │ │ ├── css │ │ │ ├── bootstrap-grid.css │ │ │ ├── bootstrap-grid.css.map │ │ │ ├── bootstrap-grid.min.css │ │ │ ├── bootstrap-grid.min.css.map │ │ │ ├── bootstrap-reboot.css │ │ │ ├── bootstrap-reboot.css.map │ │ │ ├── bootstrap-reboot.min.css │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ ├── bootstrap.min.css │ │ │ ├── bootstrap.min.css.gz │ │ │ └── bootstrap.min.css.map │ │ └── js │ │ │ ├── bootstrap.bundle.js │ │ │ ├── bootstrap.bundle.js.map │ │ │ ├── bootstrap.bundle.min.js │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.js.map │ │ │ ├── bootstrap.min.js │ │ │ ├── bootstrap.min.js.gz │ │ │ └── bootstrap.min.js.map │ ├── jquery-3.4.1.min.js │ ├── jquery-3.4.1.min.js.gz │ └── jquery-3.4.1.min.map ├── m.html ├── markers.js ├── robots.txt ├── scaleblack.png ├── sitemap.xml ├── smeter1.png ├── websdr-base.js ├── websdr-chat.js ├── websdr-sound.js └── websdr-waterfall.js └── websdr.conf /.gitignore: -------------------------------------------------------------------------------- 1 | pub/logbook.txt 2 | dist* 3 | *~ 4 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Network.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/Network.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/README.md -------------------------------------------------------------------------------- /RTLSDRs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/RTLSDRs.md -------------------------------------------------------------------------------- /blacklist-rtlsdr.conf: -------------------------------------------------------------------------------- 1 | blacklist dvb_usb_rtl28xxu 2 | -------------------------------------------------------------------------------- /cfg/stationinfo.txt: -------------------------------------------------------------------------------- 1 | # Moved to /srv/farnham-sdr.com/markers.js 2 | -------------------------------------------------------------------------------- /cfg/websdr.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/cfg/websdr.cfg -------------------------------------------------------------------------------- /dist10a/pub2/beacons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist10a/pub2/beacons.json -------------------------------------------------------------------------------- /dist10a/pub2/repeaters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist10a/pub2/repeaters.json -------------------------------------------------------------------------------- /dist10a/pub2/static/bootstrap/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist10a/pub2/static/bootstrap/css/bootstrap-theme.css -------------------------------------------------------------------------------- /dist10a/pub2/static/bootstrap/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist10a/pub2/static/bootstrap/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /dist10a/pub2/static/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist10a/pub2/static/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /dist10a/pub2/static/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist10a/pub2/static/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /dist10a/pub2/static/bootstrap/css/bootstrap.min.css.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist10a/pub2/static/bootstrap/css/bootstrap.min.css.gz -------------------------------------------------------------------------------- /dist10a/pub2/static/bootstrap/css/ukhasnet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist10a/pub2/static/bootstrap/css/ukhasnet.css -------------------------------------------------------------------------------- /dist10a/pub2/static/bootstrap/css/ukhasnet.css.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist10a/pub2/static/bootstrap/css/ukhasnet.css.gz -------------------------------------------------------------------------------- /dist10a/pub2/static/bootstrap/css/ukhasnet.css~: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dist10a/pub2/static/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist10a/pub2/static/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /dist10a/pub2/static/bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist10a/pub2/static/bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /dist10a/pub2/static/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist10a/pub2/static/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /dist10a/pub2/static/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist10a/pub2/static/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /dist10a/pub2/static/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist10a/pub2/static/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /dist10a/pub2/static/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist10a/pub2/static/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /dist10a/pub2/static/bootstrap/js/bootstrap.min.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist10a/pub2/static/bootstrap/js/bootstrap.min.js.gz -------------------------------------------------------------------------------- /dist10a/pub2/static/dygraph-combined.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist10a/pub2/static/dygraph-combined.js -------------------------------------------------------------------------------- /dist10a/pub2/static/dygraph-combined.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist10a/pub2/static/dygraph-combined.js.gz -------------------------------------------------------------------------------- /dist10a/pub2/static/icons/antenna-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist10a/pub2/static/icons/antenna-green.png -------------------------------------------------------------------------------- /dist10a/pub2/static/icons/antenna-red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist10a/pub2/static/icons/antenna-red.png -------------------------------------------------------------------------------- /dist10a/pub2/static/jquery-1.11.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist10a/pub2/static/jquery-1.11.0.min.js -------------------------------------------------------------------------------- /dist10a/pub2/static/jquery-1.11.0.min.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist10a/pub2/static/jquery-1.11.0.min.js.gz -------------------------------------------------------------------------------- /dist10a/pub2/static/jquery-1.11.0.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist10a/pub2/static/jquery-1.11.0.min.map -------------------------------------------------------------------------------- /dist10a/pub2/static/leaflet/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist10a/pub2/static/leaflet/images/layers-2x.png -------------------------------------------------------------------------------- /dist10a/pub2/static/leaflet/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist10a/pub2/static/leaflet/images/layers.png -------------------------------------------------------------------------------- /dist10a/pub2/static/leaflet/images/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist10a/pub2/static/leaflet/images/marker-icon-2x.png -------------------------------------------------------------------------------- /dist10a/pub2/static/leaflet/images/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist10a/pub2/static/leaflet/images/marker-icon.png -------------------------------------------------------------------------------- /dist10a/pub2/static/leaflet/images/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist10a/pub2/static/leaflet/images/marker-shadow.png -------------------------------------------------------------------------------- /dist10a/pub2/static/leaflet/leaflet-src.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist10a/pub2/static/leaflet/leaflet-src.js -------------------------------------------------------------------------------- /dist10a/pub2/static/leaflet/leaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist10a/pub2/static/leaflet/leaflet.css -------------------------------------------------------------------------------- /dist10a/pub2/static/leaflet/leaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist10a/pub2/static/leaflet/leaflet.js -------------------------------------------------------------------------------- /dist10a/pub2/static/leaflet/leaflet.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist10a/pub2/static/leaflet/leaflet.js.gz -------------------------------------------------------------------------------- /dist10a/pub2/static/moment.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist10a/pub2/static/moment.min.js -------------------------------------------------------------------------------- /dist10a/pub2/static/moment.min.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist10a/pub2/static/moment.min.js.gz -------------------------------------------------------------------------------- /dist10a/pub2/websdr-base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist10a/pub2/websdr-base.js -------------------------------------------------------------------------------- /dist10a/pub2/websdr-controls.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist10a/pub2/websdr-controls.html -------------------------------------------------------------------------------- /dist11/doc/config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist11/doc/config.txt -------------------------------------------------------------------------------- /dist11/doc/install.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist11/doc/install.txt -------------------------------------------------------------------------------- /dist11/doc/iq-calibration.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist11/doc/iq-calibration.txt -------------------------------------------------------------------------------- /dist11/doc/raspberrypi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist11/doc/raspberrypi.txt -------------------------------------------------------------------------------- /dist11/doc/upgrade-dist07.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist11/doc/upgrade-dist07.txt -------------------------------------------------------------------------------- /dist11/doc/upgrade-dist08.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist11/doc/upgrade-dist08.txt -------------------------------------------------------------------------------- /dist11/doc/upgrade-dist09.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist11/doc/upgrade-dist09.txt -------------------------------------------------------------------------------- /dist11/doc/upgrade-dist10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist11/doc/upgrade-dist10.txt -------------------------------------------------------------------------------- /dist11/doc/upgrade.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist11/doc/upgrade.txt -------------------------------------------------------------------------------- /dist11/pub2/carrier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist11/pub2/carrier.png -------------------------------------------------------------------------------- /dist11/pub2/crossdomain.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist11/pub2/crossdomain.xml -------------------------------------------------------------------------------- /dist11/pub2/edgelower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist11/pub2/edgelower.png -------------------------------------------------------------------------------- /dist11/pub2/edgelowerbb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist11/pub2/edgelowerbb.png -------------------------------------------------------------------------------- /dist11/pub2/edgeupper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist11/pub2/edgeupper.png -------------------------------------------------------------------------------- /dist11/pub2/edgeupperbb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist11/pub2/edgeupperbb.png -------------------------------------------------------------------------------- /dist11/pub2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist11/pub2/index.html -------------------------------------------------------------------------------- /dist11/pub2/m.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist11/pub2/m.html -------------------------------------------------------------------------------- /dist11/pub2/mobile-controls.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist11/pub2/mobile-controls.html -------------------------------------------------------------------------------- /dist11/pub2/scaleblack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist11/pub2/scaleblack.png -------------------------------------------------------------------------------- /dist11/pub2/smeter1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist11/pub2/smeter1.png -------------------------------------------------------------------------------- /dist11/pub2/sysop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist11/pub2/sysop.html -------------------------------------------------------------------------------- /dist11/pub2/websdr-base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist11/pub2/websdr-base.js -------------------------------------------------------------------------------- /dist11/pub2/websdr-controls.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist11/pub2/websdr-controls.html -------------------------------------------------------------------------------- /dist11/pub2/websdr-head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist11/pub2/websdr-head.html -------------------------------------------------------------------------------- /dist11/pub2/websdr-javasound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist11/pub2/websdr-javasound.js -------------------------------------------------------------------------------- /dist11/pub2/websdr-javawaterfall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist11/pub2/websdr-javawaterfall.js -------------------------------------------------------------------------------- /dist11/pub2/websdr-sound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist11/pub2/websdr-sound.js -------------------------------------------------------------------------------- /dist11/pub2/websdr-waterfall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/dist11/pub2/websdr-waterfall.js -------------------------------------------------------------------------------- /pub/.gitignore: -------------------------------------------------------------------------------- 1 | amateur.txt 2 | -------------------------------------------------------------------------------- /pub/WebSDR-Presentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/pub/WebSDR-Presentation.pdf -------------------------------------------------------------------------------- /pub/WebSDR-User-Guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/pub/WebSDR-User-Guide.pdf -------------------------------------------------------------------------------- /pub/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/pub/index.html -------------------------------------------------------------------------------- /pub/index.html.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/pub/index.html.old -------------------------------------------------------------------------------- /pub/jquery-3.2.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/pub/jquery-3.2.1.min.js -------------------------------------------------------------------------------- /pub/m.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/pub/m.html -------------------------------------------------------------------------------- /pub/orbits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/pub/orbits.js -------------------------------------------------------------------------------- /pub/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/pub/robots.txt -------------------------------------------------------------------------------- /pub/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/pub/sitemap.xml -------------------------------------------------------------------------------- /pub/suws-favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/pub/suws-favicon.ico -------------------------------------------------------------------------------- /pub/suws-logo-square-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/pub/suws-logo-square-48.png -------------------------------------------------------------------------------- /pub/suws-logo-topleft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/pub/suws-logo-topleft.png -------------------------------------------------------------------------------- /pub/websdr-1405020937.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/pub/websdr-1405020937.jar -------------------------------------------------------------------------------- /rtl-sdr.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/rtl-sdr.rules -------------------------------------------------------------------------------- /rtltcp_10ghz.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/rtltcp_10ghz.conf -------------------------------------------------------------------------------- /rtltcp_144.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/rtltcp_144.conf -------------------------------------------------------------------------------- /rtltcp_146.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/rtltcp_146.conf -------------------------------------------------------------------------------- /rtltcp_432.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/rtltcp_432.conf -------------------------------------------------------------------------------- /rtltcp_435.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/rtltcp_435.conf -------------------------------------------------------------------------------- /rtltcp_437.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/rtltcp_437.conf -------------------------------------------------------------------------------- /rtltcp_50.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/rtltcp_50.conf -------------------------------------------------------------------------------- /rtltcp_70.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/rtltcp_70.conf -------------------------------------------------------------------------------- /rtltcp_dc.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/rtltcp_dc.conf -------------------------------------------------------------------------------- /webpages/.well-known/security.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/webpages/.well-known/security.txt -------------------------------------------------------------------------------- /webpages/WebSDR-Presentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/webpages/WebSDR-Presentation.pdf -------------------------------------------------------------------------------- /webpages/WebSDR-User-Guide.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/webpages/WebSDR-User-Guide.pdf -------------------------------------------------------------------------------- /webpages/carrier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/webpages/carrier.png -------------------------------------------------------------------------------- /webpages/edgelower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/webpages/edgelower.png -------------------------------------------------------------------------------- /webpages/edgelowerbb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/webpages/edgelowerbb.png -------------------------------------------------------------------------------- /webpages/edgeupper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/webpages/edgeupper.png -------------------------------------------------------------------------------- /webpages/edgeupperbb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/webpages/edgeupperbb.png -------------------------------------------------------------------------------- /webpages/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/webpages/favicon.ico -------------------------------------------------------------------------------- /webpages/img/suws-favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/webpages/img/suws-favicon.ico -------------------------------------------------------------------------------- /webpages/img/suws-logo-square-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/webpages/img/suws-logo-square-48.png -------------------------------------------------------------------------------- /webpages/img/suws-logo-topleft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/webpages/img/suws-logo-topleft.png -------------------------------------------------------------------------------- /webpages/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/webpages/index.css -------------------------------------------------------------------------------- /webpages/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/webpages/index.html -------------------------------------------------------------------------------- /webpages/lib/bootstrap-4.4.1/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/webpages/lib/bootstrap-4.4.1/css/bootstrap-grid.css -------------------------------------------------------------------------------- /webpages/lib/bootstrap-4.4.1/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/webpages/lib/bootstrap-4.4.1/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /webpages/lib/bootstrap-4.4.1/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/webpages/lib/bootstrap-4.4.1/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /webpages/lib/bootstrap-4.4.1/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/webpages/lib/bootstrap-4.4.1/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /webpages/lib/bootstrap-4.4.1/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/webpages/lib/bootstrap-4.4.1/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /webpages/lib/bootstrap-4.4.1/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/webpages/lib/bootstrap-4.4.1/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /webpages/lib/bootstrap-4.4.1/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/webpages/lib/bootstrap-4.4.1/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /webpages/lib/bootstrap-4.4.1/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/webpages/lib/bootstrap-4.4.1/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /webpages/lib/bootstrap-4.4.1/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/webpages/lib/bootstrap-4.4.1/css/bootstrap.css -------------------------------------------------------------------------------- /webpages/lib/bootstrap-4.4.1/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/webpages/lib/bootstrap-4.4.1/css/bootstrap.css.map -------------------------------------------------------------------------------- /webpages/lib/bootstrap-4.4.1/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/webpages/lib/bootstrap-4.4.1/css/bootstrap.min.css -------------------------------------------------------------------------------- /webpages/lib/bootstrap-4.4.1/css/bootstrap.min.css.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/webpages/lib/bootstrap-4.4.1/css/bootstrap.min.css.gz -------------------------------------------------------------------------------- /webpages/lib/bootstrap-4.4.1/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/webpages/lib/bootstrap-4.4.1/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /webpages/lib/bootstrap-4.4.1/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/webpages/lib/bootstrap-4.4.1/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /webpages/lib/bootstrap-4.4.1/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/webpages/lib/bootstrap-4.4.1/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /webpages/lib/bootstrap-4.4.1/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/webpages/lib/bootstrap-4.4.1/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /webpages/lib/bootstrap-4.4.1/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/webpages/lib/bootstrap-4.4.1/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /webpages/lib/bootstrap-4.4.1/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/webpages/lib/bootstrap-4.4.1/js/bootstrap.js -------------------------------------------------------------------------------- /webpages/lib/bootstrap-4.4.1/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/webpages/lib/bootstrap-4.4.1/js/bootstrap.js.map -------------------------------------------------------------------------------- /webpages/lib/bootstrap-4.4.1/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/webpages/lib/bootstrap-4.4.1/js/bootstrap.min.js -------------------------------------------------------------------------------- /webpages/lib/bootstrap-4.4.1/js/bootstrap.min.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/webpages/lib/bootstrap-4.4.1/js/bootstrap.min.js.gz -------------------------------------------------------------------------------- /webpages/lib/bootstrap-4.4.1/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/webpages/lib/bootstrap-4.4.1/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /webpages/lib/jquery-3.4.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/webpages/lib/jquery-3.4.1.min.js -------------------------------------------------------------------------------- /webpages/lib/jquery-3.4.1.min.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/webpages/lib/jquery-3.4.1.min.js.gz -------------------------------------------------------------------------------- /webpages/lib/jquery-3.4.1.min.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/webpages/lib/jquery-3.4.1.min.map -------------------------------------------------------------------------------- /webpages/m.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/webpages/m.html -------------------------------------------------------------------------------- /webpages/markers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/webpages/markers.js -------------------------------------------------------------------------------- /webpages/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/webpages/robots.txt -------------------------------------------------------------------------------- /webpages/scaleblack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/webpages/scaleblack.png -------------------------------------------------------------------------------- /webpages/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/webpages/sitemap.xml -------------------------------------------------------------------------------- /webpages/smeter1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/webpages/smeter1.png -------------------------------------------------------------------------------- /webpages/websdr-base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/webpages/websdr-base.js -------------------------------------------------------------------------------- /webpages/websdr-chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/webpages/websdr-chat.js -------------------------------------------------------------------------------- /webpages/websdr-sound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/webpages/websdr-sound.js -------------------------------------------------------------------------------- /webpages/websdr-waterfall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/webpages/websdr-waterfall.js -------------------------------------------------------------------------------- /websdr.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarnhamSDR/websdr/HEAD/websdr.conf --------------------------------------------------------------------------------