├── .github └── workflows │ ├── test.yml │ ├── test_mac.yml │ └── test_perl_versions.yml ├── .gitignore ├── .gitlab-ci.yml ├── Ampelschaltung.pm ├── BBBikeAdvanced.pm ├── BBBikeAlarm.pm ├── BBBikeApacheSessionCounted.pm ├── BBBikeApacheSessionCountedHandler.pm ├── BBBikeBuildUtil.pm ├── BBBikeCGI ├── API.pm ├── Cache.pm ├── Config.pm └── Util.pm ├── BBBikeCalc.pm ├── BBBikeCanvasUtil.pm ├── BBBikeCrosshairs.pm ├── BBBikeDataDownloadCompat.pm ├── BBBikeDataDownloadCompatPlack.pm ├── BBBikeDebug.pm ├── BBBikeDraw.pm ├── BBBikeDraw ├── BBBikeGoogleMaps.pm ├── BBBikeLeaflet.pm ├── GD.pm ├── GDHeavy.pm ├── GoogleMapsStatic.pm ├── ImageMagick.pm ├── ImageMap.pm ├── Imager.pm ├── MapServer.pm ├── Mapnik.pm ├── PDF.pm ├── PDFCairo.pm ├── PDFUtil.pm └── SVG.pm ├── BBBikeESRI.pm ├── BBBikeEdit.pm ├── BBBikeEditUtil.pm ├── BBBikeGPS.pm ├── BBBikeGeoJSON.pm ├── BBBikeGlobalVars.pm ├── BBBikeHeavy.pm ├── BBBikeLaTeX.pm ├── BBBikeLazy.pm ├── BBBikeLeaflet └── Template.pm ├── BBBikeMail.pm ├── BBBikeMapserver.pm ├── BBBikeMapserver ├── Bbox.pm ├── Info.pm └── MkRouteMap.pm ├── BBBikeMenubar.pm ├── BBBikePalm.pm ├── BBBikePersonal.pm ├── BBBikePlist.pm ├── BBBikePlugin.pm ├── BBBikePluginLister.pm ├── BBBikePrefsWidget.pm ├── BBBikePrint.pm ├── BBBikeProcUtil.pm ├── BBBikeProfil.pm ├── BBBikeRouting.pm ├── BBBikeRouting.pod ├── BBBikeRouting └── Boat.pm ├── BBBikeScribble.pm ├── BBBikeServer.pm ├── BBBikeStats.pm ├── BBBikeTkUtil.pm ├── BBBikeTrans.pm ├── BBBikeUnicodeUtil.pm ├── BBBikeUtil.pm ├── BBBikeVar.pm ├── BBBikeVia.pm ├── BBBikeWeather.pm ├── BBBikeWinUtil.pm ├── BBBikeYAML.pm ├── Bundle ├── .gitignore ├── BBBike.pm ├── BBBike.tpl.pm ├── BBBike_cgi.pm ├── BBBike_psgi.pm ├── BBBike_small.pm └── BBBike_windist.pm ├── CHANGES ├── COPYING ├── ESRI ├── .gitignore ├── Makefile.PL ├── Shapefile.pm ├── Shapefile │ ├── DBase.pm │ ├── Index.pm │ ├── Main.pm │ └── Projection.pm ├── TODO ├── esri2bbd.pl └── t │ └── shapefile.t ├── GIS ├── Globe.pm ├── NSD.pm └── globe_to_bbd.pl ├── GPS.pm ├── GPS ├── BBBikeGPS │ ├── MTP.pm │ └── MountedDevice.pm ├── DirectGarmin.pm ├── G7toWin_2.pm ├── G7toWin_ASCII.pm ├── GPX.pm ├── Gardown.pm ├── Gpsbabel.pm ├── GpsmanConn.pm ├── GpsmanData.pm ├── GpsmanData.pod ├── GpsmanData │ ├── Analyzer.pm │ ├── Any.pm │ ├── DirectEdit.pm │ ├── FIT.pm │ ├── GarminGPX.pm │ ├── SportsTracker.pm │ ├── Stats.pm │ ├── Strassen.pm │ ├── TCX.pm │ ├── TestRoundtrip.pm │ ├── Tk.pm │ ├── TkViewer.pm │ └── VehicleInfo.pm ├── Info │ └── GarminDevice.pm ├── KML.pm ├── MPS.pm ├── MyNMEA.pm ├── Ovl.pm ├── SerialStty.pm ├── Symbols │ └── Garmin.pm ├── Util.pm └── WaypointPlus.pm ├── Geography.pm ├── Geography ├── Base.pm ├── Berlin_DE.pm ├── Brandenburg_DE.pm ├── FromMeta.pm ├── Muenchen_DE.pm ├── Oranienburg_DE.pm └── Zuerich_CH.pm ├── GfxConvert.pm ├── Hooks.pm ├── HouseNumbers.pm ├── Karte.pm ├── Karte ├── Berlinmap1996.pm ├── Berlinmap1997.pm ├── Berlinmap1998.pm ├── Berlinmap1999.pm ├── Berlinmap2000.pm ├── Berlinmap2001.pm ├── Berlinmap2002.pm ├── Berlinmap2003.pm ├── Berlinmap2004.pm ├── Cityinfo.pm ├── Demap2002.pm ├── ETRS89.pm ├── GDF.pm ├── GIS.pm ├── GISmap.pm ├── GPS.pm ├── Nbrbmap2004.pm ├── PilotPl.pm ├── PilotPl12.pm ├── Polar.pm ├── Potsdammap2002.pm ├── Satmap.pm ├── SatmapGIF.pm ├── Soldner_alt.pm ├── Standard.pm ├── T2001.pm ├── T99.pm ├── Tk50.pm └── UTM.pm ├── MANIFEST ├── MANIFEST.SKIP ├── Makefile.PL ├── Makefile_admin_PL ├── PLZ.pm ├── PLZ ├── Levenshtein.pm ├── Multi.pm └── Result.pm ├── README ├── README.english ├── README.pod ├── README.tpl ├── Radwege.pm ├── Route.pm ├── Route ├── Descr.pm ├── GPLE.pm ├── GPLEU.pm ├── Heavy.pm ├── LineSimplification.pm ├── PDF.pm ├── PDF │ └── Cairo.pm └── Simplify.pm ├── Salesman.pm ├── Strassen.pm ├── Strassen ├── Build.pm ├── CDB.pm ├── Cat.pm ├── CatUtil.pm ├── Check.pm ├── Combine.pm ├── Core.pm ├── CoreHeavy.pm ├── DB_File.pm ├── DB_File_Btree.pm ├── Dataset.pm ├── E00.pm ├── ESRI.pm ├── Edit.pm ├── Ext.pm ├── Fast.pm ├── FromRoute.pm ├── GPX.pm ├── Gardown.pm ├── Generated.pm ├── Generated_src.pm ├── GeoJSON.pm ├── Gpsman.pm ├── Heavy.pm ├── Index.pm ├── KML.pm ├── Kreuzungen.pm ├── Lazy.pm ├── Lookup.pm ├── MapInfo.pm ├── MultiStrassen.pm ├── Obsolete.pm ├── Pg.pm ├── QuadTree.pm ├── QualityDE.pm ├── SimpleSearch.pm ├── Stat.pm ├── Storable.pm ├── Strasse.pm ├── StrassenNetz.pm ├── StrassenNetz │ └── DirectedHandicap.pm ├── StrassenNetzHeavy.pm ├── StrassenNetzNew.pm ├── Tie.pm ├── Touratech.pm ├── Util.pm └── WaypointPlus.pm ├── Task └── BBBike │ └── windist │ ├── Makefile.PL │ ├── t │ └── prereqs.t │ └── windist.pm ├── Update.pm ├── Way.pm ├── Way └── Metric.pm ├── Wizards.pm ├── appveyor.yml ├── babybike ├── .gitignore ├── Makefile ├── README ├── babybike ├── babybikerc ├── generate_cache.pl ├── images │ ├── .gitignore │ ├── bbbike_splash_tkbabybike.xpm │ ├── berlin_overview_small_border.xpm │ ├── berlin_small.dim │ ├── berlin_small.xpm │ ├── center.xpm │ ├── mini-exclam.xpm │ ├── mini.gnome.xpm │ └── transpose.xpm ├── lib │ ├── BBBikeGPSDialog.pm │ ├── BBBikeGSMSender.pm │ ├── BBBikeSuggest.pm │ ├── BBBikeWget.pm │ ├── BBBikeZoom.pm │ └── EmptyCanvasMap.pm ├── standard.desc ├── tkbabybike └── tkbabybike.pod ├── bbbike ├── bbbike-activeperl.bat ├── bbbike-fast.bat ├── bbbike.bat ├── bbbike.pod ├── bbbikeapplet ├── bbbikeclient ├── bench ├── strassen_benchmark.pl └── strassen_parse.pl ├── c ├── .gitignore ├── GNUmakefile ├── Makefile ├── Makefile.w32 ├── bbbike.h ├── conv.c ├── minibbbike.c ├── mkdata.pl ├── mkdatapdb.pl └── route.c ├── cache └── .keep_me ├── cbbbike ├── cbbbike.bat ├── cdrom ├── Makefile ├── PerlInstall.pm ├── README ├── cdrom.pl ├── freebsd │ └── startup.sh ├── index.html ├── mac │ └── afpfile ├── perlinstall.pl ├── unix │ └── bbbike.sh └── windows │ ├── Makefile │ ├── autorun.inf │ ├── autorun.inf.diplom │ ├── bbbike.bat │ ├── install.bat │ ├── install.pl │ ├── oldsetup.bat │ ├── oldsetup.pl │ ├── perl.bat │ ├── ppm2install.pl │ ├── setup.c │ └── tkinstall.pl ├── cgi ├── .gitignore ├── GNUmakefile ├── Makefile ├── README ├── bbbike-asch.psgi ├── bbbike-data-download.psgi ├── bbbike-data.cgi ├── bbbike-debian-no-mapserver.cgi.config ├── bbbike-debian.cgi.config ├── bbbike-hosteurope-jessie.cgi.config ├── bbbike-osm.cgi.config ├── bbbike-snapshot.cgi ├── bbbike-sourceforge.cgi.config ├── bbbike-teaser.pl ├── bbbike-test.cgi.config ├── bbbike.cgi ├── bbbike.psgi ├── bbbike2-ci.cgi.config ├── bbbike2-debian.cgi.config ├── bbbike2-hosteurope.cgi.config ├── bbbike2-sourceforge.cgi.config ├── bbbike2-test.cgi.config ├── bbbikegooglemap.cgi ├── bbbikeleaflet.cgi ├── berlinmap.cgi ├── configure-bbbike.cgi ├── httpd.conf.st ├── httpd.conf.tpl ├── httpi ├── mapserver_address.cgi ├── mapserver_comment.cgi ├── mapserver_setcoord.cgi ├── mksymlinks ├── msg │ └── en ├── qrcode.cgi ├── runbbbikecgi ├── tinyhttpd ├── tinyhttpd.config ├── upload-track.cgi └── wapbbbike.cgi ├── cmdbbbike ├── data ├── .gitignore ├── .modified ├── Berlin.coords.data ├── GNUmakefile ├── Makefile ├── Makefile.garmin ├── Makefile.mapfiles ├── Makefile.vars ├── Potsdam.coords.data ├── README ├── add_plaetze ├── add_str ├── add_str_potsdam ├── ampeln ├── ampeln-orig ├── ampelschaltung ├── ampelschaltung-orig ├── berlin ├── berlin_ortsteile ├── brunnels ├── brunnels-orig ├── check_nearest_ignore ├── comments_cyclepath ├── comments_cyclepath-orig ├── comments_danger-orig ├── comments_ferry ├── comments_ferry-orig ├── comments_kfzverkehr ├── comments_kfzverkehr-orig ├── comments_misc ├── comments_misc-orig ├── comments_mount ├── comments_mount-orig ├── comments_path ├── comments_path-orig ├── comments_route ├── comments_route-orig ├── comments_route_img │ ├── BBO.gif │ ├── BK-orig.gif │ ├── BK.gif │ ├── BL.png │ ├── BU-orig.jpg │ ├── BU.gif │ ├── FR-orig.gif │ ├── FR.gif │ ├── FS.gif │ ├── H.png │ ├── HVL-orig.gif │ ├── HVL.gif │ ├── M-orig.jpg │ ├── M.png │ ├── ON-orig.gif │ ├── ON.gif │ ├── R1.png │ ├── RDE.png │ ├── README │ ├── SPR-orig.png │ ├── SPR.gif │ ├── TB-orig.gif │ ├── TB.gif │ ├── TSR.png │ ├── UMR-orig.gif │ ├── UMR.gif │ ├── alter_fritz.png │ ├── dahme_radweg.png │ ├── koepenick.png │ ├── potsdamer_radrouten_blau.png │ └── potsdamer_radrouten_rot.png ├── comments_scenic ├── comments_scenic-orig ├── comments_trafficjam ├── comments_trafficjam-orig ├── comments_tram ├── comments_tram-orig ├── culdesac ├── culdesac-orig ├── deutschland ├── deutschland-orig ├── doit.pl ├── exits ├── exits-orig ├── faehren ├── faehren-orig ├── flaechen ├── flaechen-orig ├── fragezeichen ├── fragezeichen-orig ├── gesperrt ├── gesperrt-orig ├── gesperrt_car ├── gesperrt_car-orig ├── gesperrt_r ├── gesperrt_r-orig ├── gesperrt_s ├── gesperrt_s-orig ├── gesperrt_u ├── gesperrt_u-orig ├── green ├── green-orig ├── grenzuebergaenge ├── grenzuebergaenge-orig ├── handicap_directed ├── handicap_directed-orig ├── handicap_l ├── handicap_l-orig ├── handicap_s ├── handicap_s-orig ├── hoehe ├── hoehe-orig ├── housenumbers ├── housenumbers-orig ├── inaccessible_landstrassen ├── inaccessible_strassen ├── innerberliner_grenze ├── kneipen ├── kneipen-info ├── kneipen.yml ├── label ├── landstrassen ├── landstrassen-orig ├── landstrassen2 ├── landstrassen2-orig ├── mount ├── mudways ├── nolighting ├── nolighting-orig ├── obst ├── obst-orig ├── oldnames ├── orte ├── orte-orig ├── orte2 ├── orte2-orig ├── orte_city ├── orte_city-orig ├── ortsschilder ├── ortsschilder-orig ├── plaetze ├── plaetze-orig ├── plz ├── plz-orig ├── potsdam ├── potsdam-orig ├── potsdam_ortsteile-orig ├── qualitaet_l ├── qualitaet_l-orig ├── qualitaet_s ├── qualitaet_s-orig ├── qualitaet_s_add-orig ├── radwege ├── radwege-orig ├── radwege_exact ├── rbahn ├── rbahn-orig ├── rbahnhof ├── rbahnhof-orig ├── routing_helper-orig ├── sbahn ├── sbahn-orig ├── sbahnhof ├── sbahnhof-orig ├── sbahnhof_bg ├── sehenswuerdigkeit ├── sehenswuerdigkeit-orig ├── sehenswuerdigkeit_img │ ├── berliner_dom.gif │ ├── bodemuseum.png │ ├── bodemuseum_klein.gif │ ├── bodemuseum_klein.png │ ├── brandenburger_tor.gif │ ├── chinesisches_haus.gif │ ├── chinesisches_haus.png │ ├── einsteinturm.gif │ ├── fernsehturm.gif │ ├── fernsehturm.png │ ├── fernsehturm_klein.gif │ ├── franzoesischer_dom.gif │ ├── franzoesischer_dom.png │ ├── friedrichswerdersche_kirche.png │ ├── friedrichswerdersche_kirche_klein.gif │ ├── friedrichswerdersche_kirche_klein.png │ ├── funkturm.gif │ ├── gedaechtniskirche.gif │ ├── hamburger_bahnhof.png │ ├── heilandskirche_sacrow.gif │ ├── heilandskirche_sacrow.png │ ├── hubbruecke_karnin.gif │ ├── hubbruecke_karnin.png │ ├── luftbrueckendenkmal.gif │ ├── oberbaumbruecke.gif │ ├── oberbaumcity.gif │ ├── orangerie_potsdam.png │ ├── rathaus_koepenick.png │ ├── reichstag.gif │ ├── ruinenberg.png │ ├── sanssouci.gif │ ├── sanssouci.png │ ├── schloss_pfaueninsel.gif │ ├── schloss_pfaueninsel.png │ ├── schultheiss.gif │ ├── siegessaeule.gif │ ├── viktoriaparkdenkmal.gif │ ├── wasserturm_jungfernheide.gif │ ├── wasserturm_ostkreuz.gif │ └── wasserturm_ostkreuz.png ├── str_cont_ausnahme ├── strassen ├── strassen-orig ├── strassen_bab ├── strassen_bab-orig ├── temp_blockings │ ├── .gitignore │ ├── 20030727.bbd │ ├── 20030809.bbd │ ├── 20030907.bbd │ ├── 20030907b.bbd │ ├── 20040514.bbd │ ├── altwittenau.bbd │ ├── artists_boulevard.bbd │ ├── badstr.bbd │ ├── bbbike-temp-blockings-optimized.pl │ ├── bbbike-temp-blockings.pl │ ├── bergmannstr.bbd │ ├── boelschefest.bbd │ ├── budapester.bbd │ ├── bush-20020522.bbd │ ├── csd.bbd │ ├── dietzgenstr.bbd │ ├── dorotheenstr.bbd │ ├── florastr.bbd │ ├── gendarmenmarkt.bbd │ ├── gleimstr.bbd │ ├── globalcity.bbd │ ├── goerlsdorf.bbd │ ├── hanfparade.bbd │ ├── hauptstr_pankow.bbd │ ├── hermannstr.bbd │ ├── herzfelde.bbd │ ├── johnfosterdulles.bbd │ ├── karlmarx.bbd │ ├── karstaedt.bbd │ ├── kirchentag-20030526.bbd │ ├── kirchentag-20030528.bbd │ ├── koenigsheideweg.bbd │ ├── kranarbeiten.bbd │ ├── kudamm_rad.bbd │ ├── kudamm_tauentzien.bbd │ ├── langhansstr.bbd │ ├── liesenstr.bbd │ ├── loveparade.bbd │ ├── lueckstr.bbd │ ├── marzahner_promenade.bbd │ ├── maybachufer.bbd │ ├── muellerstr.bbd │ ├── oberbaumbruecke.bbd │ ├── pankow-20030711.bbd │ ├── pillgram.bbd │ ├── radrennen_hindenburgdamm.bbd │ ├── rathenower.bbd │ ├── reichsstr.bbd │ ├── reinhardtstr.bbd │ ├── residenz_rad.bbd │ ├── richardplatz.bbd │ ├── sbhf_pankow.bbd │ ├── scheidemannstr.bbd │ ├── schlichtallee.bbd │ ├── siegfriedstr.bbd │ ├── sophienstr.bbd │ ├── sowj_ehrenmal.bbd │ ├── spandauer.bbd │ ├── stauffenbergstr.bbd │ ├── strassenfest-bluecherplatz.bbd │ ├── strassenfest-karl-marx-str.bbd │ ├── turmstr.bbd │ ├── wiesenfest.bbd │ └── xrace.bbd ├── ubahn ├── ubahn-orig ├── ubahnhof ├── ubahnhof-orig ├── ubahnhof_bg ├── umsteigebhf ├── upgrade_scope_hint ├── vorfahrt ├── vorfahrt-orig ├── wasserstrassen ├── wasserstrassen-orig ├── wasserumland ├── wasserumland-orig ├── wasserumland2 ├── wasserumland2-orig └── zebrastreifen ├── doc ├── .gitignore ├── HOWTO_edit_bbbike_data.html ├── HOWTO_edit_bbbike_data.xml ├── Makefile.doc ├── README.english.html ├── README.html ├── TODO.pod ├── authors.pod ├── bbbike.html ├── bbbike_internals.html ├── bbbike_internals.pod ├── bbd.html ├── bbd.pod ├── docbook5.css ├── edit_snippets.txt ├── implementation_log.txt ├── links.pod ├── podindex.html ├── qualitaetskategorien.html ├── schemas.xml ├── tests.pod ├── watchsites.org └── why_not_osm.pod ├── ext ├── BBBikeXS │ ├── .gitignore │ ├── BBBikeXS.pm │ ├── BBBikeXS.xs │ ├── MANIFEST │ ├── Makefile.PL │ ├── README │ ├── sqrt.c │ ├── sqrt.h │ ├── t │ │ ├── base.t │ │ ├── leak.t │ │ ├── longlines.t │ │ ├── makenet.t │ │ ├── miscdata.t │ │ ├── prefer_cache.t │ │ ├── strecke.t │ │ ├── to_koord1.t │ │ └── utf8.t │ └── typemap ├── DMakefile ├── Makefile ├── Strassen-Inline │ ├── .gitignore │ ├── Inline.pm │ ├── Makefile.PL │ ├── ppport.h │ └── t │ │ ├── common.pl │ │ ├── db_impl.t │ │ └── hv_impl.t ├── Strassen-Inline2 │ ├── .gitignore │ ├── Inline2.pm │ ├── Makefile.PL │ ├── ppport.h │ └── t │ │ ├── common.pl │ │ ├── db_impl.t │ │ └── hv_impl.t ├── StrassenNetz-CNetFile │ ├── .gitignore │ ├── CNetFile.pm │ ├── CNetFilePerl.pm │ ├── Makefile.PL │ ├── ppport.h │ └── t │ │ └── base.t ├── VectorUtil-Inline │ ├── .gitignore │ ├── Inline.pm │ ├── Inline.xs │ ├── Makefile.PL │ └── t │ │ ├── point_in_poly.t │ │ └── vectorutil.t ├── VirtArray │ ├── .gitignore │ ├── Changes │ ├── MANIFEST │ ├── Makefile.PL │ ├── README │ ├── VirtArray.pm │ ├── VirtArray.xs │ ├── t │ │ └── basic.t │ └── typemap └── inline2dist.pl ├── gnome ├── BBBikeDoc.tmpl ├── BBBikeWWW ├── bbbike.keys └── bbbike.mime ├── html ├── .gitignore ├── HTTPQuery.js ├── Makefile ├── allstreet.html ├── bbbike.css ├── bbbike_result.js ├── bbbike_sidebar.en.html ├── bbbike_sidebar.html ├── bbbike_sidebar.tpl.html ├── bbbike_small.en.html ├── bbbike_small.html ├── bbbike_small.tpl.html ├── bbbike_start.js ├── bbbike_util.js ├── bbbikeleaflet.css ├── bbbikeleaflet.html ├── bbbikeleaflet.js ├── bbbikepod.css ├── bbbikeprint.css ├── empty.html ├── error404.html ├── fragezeichenform.html ├── fragezeichenform.utf8.html ├── help.html ├── json2.js ├── json2.min.js ├── legende.html ├── msapp │ ├── Makefile │ ├── browserconfig.tpl.xml │ ├── browserconfig_bbbikelayout.xml │ ├── browserconfig_cgilayout.xml │ ├── srtbike_logo_128x128.png │ └── srtbike_logo_270x270.png ├── newstreetform.html ├── newstreetform.tpl.html ├── newstreetform.utf8.html ├── opensearch │ ├── bbbike-opensearch-de-simple.gif │ ├── bbbike-opensearch-de-simple.src │ ├── bbbike-opensearch-de-simple.xml │ ├── bbbike-opensearch-de.gif │ ├── bbbike-opensearch-de.src │ ├── bbbike-opensearch-de.xml │ ├── bbbike-opensearch-en-simple.gif │ ├── bbbike-opensearch-en-simple.src │ ├── bbbike-opensearch-en-simple.xml │ ├── bbbike-opensearch-en.gif │ ├── bbbike-opensearch-en.src │ ├── bbbike-opensearch-en.xml │ ├── bbbike-opensearch.tpl.src │ ├── bbbike-opensearch.tpl.xml │ ├── opensearch.html │ └── opensearch.js ├── pleasewait.html ├── presse.html ├── scrollarray.js ├── shortfragezeichenform.html ├── shortfragezeichenform.utf8.html └── sprintf.js ├── images ├── Makefile ├── PoweredByPerl.gif ├── QR_icon_16x16.png ├── abc.gif ├── abc.png ├── abc.xpm ├── abc_hi.gif ├── abc_hi.png ├── abc_hi.xpm ├── achtung.gif ├── achtung.png ├── achtung.xpm ├── addnet_ptr.xbm ├── addnet_ptr_mask.xbm ├── airport.gif ├── airport.xpm ├── ampel.gif ├── ampel.png ├── ampel.xpm ├── ampel_klein.gif ├── ampel_klein.jpg ├── ampel_klein.png ├── ampel_klein.xpm ├── ampel_klein2.gif ├── ampel_klein2.jpg ├── ampel_klein2.png ├── ampel_klein2.xpm ├── ampel_klein2_rahmen.gif ├── ampel_klein2_rahmen.png ├── ampel_klein2_rahmen.xpm ├── ampel_klein_grey.xpm ├── ampelf.gif ├── ampelf.png ├── ampelf.xpm ├── ampelf_klein.gif ├── ampelf_klein.png ├── ampelf_klein.xpm ├── ampelf_klein2.gif ├── ampelf_klein2.png ├── ampelf_klein2.xpm ├── ampelf_klein_noalpha.png ├── ampelf_noalpha.png ├── andreaskr.gif ├── andreaskr.png ├── andreaskr.xpm ├── andreaskr_klein.gif ├── andreaskr_klein.jpg ├── andreaskr_klein.png ├── andreaskr_klein.xpm ├── andreaskr_klein2.gif ├── andreaskr_klein2.jpg ├── andreaskr_klein2.png ├── andreaskr_klein2.xpm ├── apfel.gif ├── apfel.png ├── apfel.xpm ├── aufzug.gif ├── aufzug.png ├── aufzug.xpm ├── aufzug_klein.gif ├── aufzug_klein.png ├── aufzug_klein.xpm ├── aufzug_klein2.gif ├── aufzug_klein2.png ├── aufzug_klein2.xpm ├── bab_table_16.gif ├── bab_table_16.png ├── bab_table_32.gif ├── bab_table_32.png ├── baum.xbm ├── bbbike_google.gif ├── bbbike_google.png ├── bbbike_google.xpm ├── bbbike_leaflet_16.png ├── bbbike_leaflet_57.png ├── bbbike_leaflet_upl_57.png ├── bbbike_munin.ico ├── bbbike_splash.gif ├── bbbike_splash.svg ├── bbbike_splash.xpm ├── berlin_overview_small.gif ├── berlin_overview_small.xpm ├── berlin_small.gif ├── berlin_small.xpm ├── berlin_small_280x240.gif ├── berlin_small_280x240.png ├── berlin_small_280x240.xpm ├── berlin_small_hi.gif ├── berlin_small_hi.xpm ├── berlin_small_hi_280x240.gif ├── berlin_small_hi_280x240.png ├── berlin_small_hi_280x240.xpm ├── bg.gif ├── bg.jpg ├── bicycle.gif ├── bicycle.xpm ├── birne.gif ├── birne.png ├── birne.xpm ├── black_cross.svg ├── bluedot.png ├── bomb.png ├── bundesstrasse_table_16.gif ├── bundesstrasse_table_16.png ├── bundesstrasse_table_32.gif ├── bundesstrasse_table_32.png ├── bw_hleft.wbmp ├── bw_hright.wbmp ├── bw_left.wbmp ├── bw_right.wbmp ├── bw_straight.wbmp ├── cal.gif ├── cal.png ├── cal.xpm ├── cal_questionmark.png ├── car.gif ├── car.png ├── car.xpm ├── cemetery_bg.gif ├── cemetery_bg.png ├── cemetery_jewish_bg.gif ├── cemetery_jewish_bg.png ├── cemetery_muslim_bg.gif ├── cemetery_muslim_bg.png ├── cgi_legende.gif ├── cgi_legende.xpm ├── church.gif ├── church.png ├── church.xpm ├── click.gif ├── click.xpm ├── clock.png ├── cross.gif ├── cross.xpm ├── crosses.xbm ├── de_flag.png ├── delete_ovl.gif ├── delnet_ptr.xbm ├── delnet_ptr_mask.xbm ├── dest.gif ├── dest.png ├── dest_ptr.xbm ├── dest_ptr_mask.xbm ├── droga_krajowa_table_16.gif ├── droga_krajowa_table_16.png ├── droga_krajowa_table_32.gif ├── droga_krajowa_table_32.png ├── eisenbahn.gif ├── eisenbahn.png ├── eisenbahn.xpm ├── eisenbahn15.png ├── eisenbahn_klein.gif ├── eisenbahn_klein.png ├── eisenbahn_klein.xpm ├── eisenbahn_mini.gif ├── eisenbahn_mini.png ├── eisenbahn_mini.xpm ├── eisenbahn_stillg.gif ├── eisenbahn_stillg.png ├── eisenbahn_stillg.xpm ├── eisenbahn_stillg_klein.gif ├── eisenbahn_stillg_klein.png ├── eisenbahn_stillg_klein.xpm ├── eisenbahn_stillg_mini.gif ├── eisenbahn_stillg_mini.png ├── eisenbahn_stillg_mini.xpm ├── essen.gif ├── essen.xpm ├── essen_klein.gif ├── essen_klein.xpm ├── exit.gif ├── exit.xpm ├── favicon.ico ├── ferry.gif ├── ferry.png ├── ferry.xpm ├── ferry_klein.gif ├── ferry_klein.png ├── ferry_klein.xpm ├── ferry_mini.gif ├── ferry_mini.png ├── ferry_mini.xpm ├── flaechen.gif ├── flaechen.xpm ├── flag2_bl.gif ├── flag2_bl.jpg ├── flag2_bl.png ├── flag2_bl.wbmp ├── flag2_bl.xpm ├── flag2_bl_centered.gif ├── flag2_bl_centered.png ├── flag2_bl_centered.xpm ├── flag2_bl_noalpha.png ├── flag_shadow.png ├── flag_via.gif ├── flag_via.png ├── flag_via.xpm ├── flag_via_centered.gif ├── flag_via_centered.png ├── flag_via_centered.xpm ├── flag_ziel.gif ├── flag_ziel.jpg ├── flag_ziel.png ├── flag_ziel.xpm ├── flag_ziel_centered.gif ├── flag_ziel_centered.png ├── flag_ziel_centered.xpm ├── flag_ziel_noalpha.png ├── gb_flag.png ├── gefaelle.gif ├── gefaelle.png ├── gefaelle.xpm ├── glas.gif ├── glas.xpm ├── glas_klein.gif ├── glas_klein.xpm ├── google.gif ├── grenzuebergang_16.gif ├── grenzuebergang_16.png ├── grenzuebergang_32.gif ├── grenzuebergang_32.png ├── halfmoons.xbm ├── haltestelle.gif ├── haltestelle.xpm ├── hatched_ring.gif ├── hatched_ring.png ├── hatched_ring.xpm ├── help.gif ├── help.xpm ├── hospital.gif ├── hospital.png ├── hospital.xpm ├── hotel.png ├── info.gif ├── info.xpm ├── info_ptr.xbm ├── info_ptr_mask.xbm ├── inwork.gif ├── inwork.xpm ├── inwork_12.gif ├── inwork_12.png ├── inwork_12.xpm ├── inwork_18.gif ├── inwork_18.png ├── inwork_18.xpm ├── kino_klein.gif ├── kino_klein.xpm ├── kirsche.gif ├── kirsche.png ├── kirsche.xpm ├── koord.gif ├── koord.xpm ├── kopfstein_klein.gif ├── kopfstein_klein.xpm ├── kopfstein_klein_grey.gif ├── kopfstein_klein_grey.xpm ├── kreisverkehr.gif ├── kreisverkehr.png ├── kreisverkehr.xpm ├── kreuzung.gif ├── kreuzung.png ├── kreuzung.xpm ├── kreuzung_klein.gif ├── kreuzung_klein.png ├── kreuzung_klein.xpm ├── landstrasse.gif ├── landstrasse.xpm ├── legend_blocked.gif ├── legend_blocked.png ├── legend_blockedroute.gif ├── legend_blockedroute.png ├── legend_carry.gif ├── legend_carry.png ├── legend_narrowpassage.gif ├── legend_narrowpassage.png ├── legend_oneway.gif ├── legend_oneway.png ├── lightning.gif ├── lightning_cursor.xbm ├── loading.gif ├── logo-fahrradstadt_75.png ├── map.gif ├── map.xpm ├── mapserver_logo.gif ├── mapserver_logo.png ├── mapserver_logo.xpm ├── mask.png ├── menupfeil.gif ├── menupfeil.xpm ├── minicross.png ├── monument.gif ├── monument.png ├── monument.svg ├── monument.xpm ├── mosque.gif ├── mosque.png ├── mosque.xpm ├── movehand.gif ├── movehand.xpm ├── movehand_ptr.xbm ├── movehand_ptr_mask.xbm ├── moz_grab.gif ├── museum.gif ├── museum.png ├── museum.xpm ├── music.png ├── newlayer.gif ├── newlayer.png ├── newlayer.xpm ├── night.png ├── night_klein.png ├── notrailer.gif ├── notrailer.png ├── notrailer.xpm ├── open.gif ├── open.xpm ├── open_ovl.gif ├── opt.gif ├── opt.xpm ├── ort.gif ├── ort.xpm ├── pflaume.gif ├── pflaume.png ├── pflaume.xpm ├── playstreet.png ├── printer.gif ├── printer.png ├── printer.xpm ├── printer_narrow.gif ├── printer_narrow.png ├── printer_narrow.xpm ├── ptr.xbm ├── px_1t.gif ├── radrouten.gif ├── rain_snow.png ├── rampe.gif ├── rampe.png ├── rampe.xpm ├── rbahn.gif ├── rbahn.xpm ├── redcross.gif ├── redcross.png ├── redcross.xpm ├── reddot.gif ├── reddot.png ├── ropeway.png ├── ropeway.svg ├── ropeway_klein.png ├── ropeway_mini.png ├── rueckweg.gif ├── rueckweg.xpm ├── salesman.gif ├── salesman.xpm ├── salesman_ptr.xbm ├── salesman_ptr_mask.xbm ├── save.gif ├── save.xpm ├── sbahn.gif ├── sbahn.jpg ├── sbahn.png ├── sbahn.xpm ├── sbahn_klein.gif ├── sbahn_klein.jpg ├── sbahn_klein.png ├── sbahn_klein.xpm ├── sbahn_mini.gif ├── sbahn_mini.jpg ├── sbahn_mini.png ├── sbahn_mini.xpm ├── search.gif ├── search.xpm ├── search_pref.gif ├── search_pref.png ├── search_pref.xpm ├── shop.png ├── srtbike.gif ├── srtbike.ico ├── srtbike.jpg ├── srtbike.png ├── srtbike.xbm ├── srtbike.xpm ├── srtbike1.ico ├── srtbike114.png ├── srtbike120.png ├── srtbike152.png ├── srtbike16.gif ├── srtbike16.xpm ├── srtbike16_mask.xbm ├── srtbike16a.png ├── srtbike180.png ├── srtbike192.png ├── srtbike32.gif ├── srtbike32.xpm ├── srtbike32_mask.xbm ├── srtbike32a.png ├── srtbike48a.png ├── srtbike57.png ├── srtbike72.png ├── srtbike_logo.svg ├── srtbike_logo_black.svg ├── srtbike_mini.xpm ├── srtbike_solid.gif ├── srtbike_solid.xpm ├── srtbike_url.png ├── srtbike_www.ico ├── srtbike_www.xpm ├── star.gif ├── star.png ├── star.xpm ├── stars_of_david.xbm ├── start.gif ├── start.png ├── start.xpm ├── start_ptr.png ├── start_ptr.xbm ├── start_ptr_mask.xbm ├── steigung.gif ├── steigung.png ├── steigung.xpm ├── stern2003_titel.jpg ├── stern2004_titel.jpg ├── stern2005_titel.jpg ├── stern2006_titel.jpg ├── stern2007_titel.jpg ├── stip.xbm ├── stiplite.xbm ├── strasse.gif ├── strasse.xpm ├── strassenbahn.gif ├── strassenbahn.png ├── strassenbahn.xpm ├── strassenbahn_klein.gif ├── strassenbahn_klein.png ├── strassenbahn_klein.xpm ├── strlist.gif ├── strlist.xpm ├── synagogue.gif ├── synagogue.png ├── synagogue.xpm ├── theater.gif ├── theater.png ├── theater.xpm ├── thunder_cursor.xbm ├── touristinfo.gif ├── touristinfo.png ├── touristinfo.xpm ├── ubahn.gif ├── ubahn.jpg ├── ubahn.png ├── ubahn.xpm ├── ubahn_klein.gif ├── ubahn_klein.jpg ├── ubahn_klein.png ├── ubahn_klein.xpm ├── ubahn_mini.gif ├── ubahn_mini.jpg ├── ubahn_mini.png ├── ubahn_mini.xpm ├── usercross.gif ├── usercross.png ├── usercross.xpm ├── via.gif ├── via.png ├── via.xpm ├── via_add_nb1_ptr.xbm ├── via_add_nb1_ptr_mask.xbm ├── via_add_nb2_ptr.xbm ├── via_add_nb2_ptr_mask.xbm ├── via_add_ptr.xbm ├── via_add_ptr_mask.xbm ├── via_del_ptr.xbm ├── via_del_ptr_mask.xbm ├── via_move_2_ptr.xbm ├── via_move_2_ptr_mask.xbm ├── via_move_ptr.xbm ├── via_move_ptr_mask.xbm ├── viewmag+.gif ├── viewmag+.xpm ├── viewmag-.gif ├── viewmag-.xpm ├── vorfahrt.gif ├── vorfahrt.png ├── vorfahrt.xpm ├── vorfahrt_klein.gif ├── vorfahrt_klein.png ├── vorfahrt_klein.xpm ├── wasser.gif ├── wasser.xpm ├── watch_ptr.xbm ├── watch_ptr_mask.xbm ├── wegweiser_mini.png ├── wikipedia.gif ├── windrose.gif ├── windrose.xpm ├── windrose2.gif ├── windrose2.xpm ├── www_ptr.xbm ├── www_ptr_mask.xbm ├── xmas.png ├── xy_ptr.xbm ├── xy_ptr_mask.xbm ├── ziel.gif ├── ziel.png ├── ziel.xpm ├── ziel_ptr.png ├── ziel_ptr.xbm ├── ziel_ptr_mask.xbm ├── zugbruecke.gif ├── zugbruecke.png ├── zugbruecke.xpm ├── zugbruecke_klein.gif ├── zugbruecke_klein.jpg ├── zugbruecke_klein.png └── zugbruecke_klein.xpm ├── install.bat ├── install.pl ├── install.sh ├── java ├── .gitignore ├── BBBike.java ├── CanvasProp.java ├── GeneralStrassen.java ├── Kreuzungen.java ├── Makefile ├── Manifest.txt ├── MultiStrassen.java ├── MyCanvas.java ├── Point.java ├── QSort.java ├── Strasse.java ├── Strassen.java ├── StrassenNetz.java ├── Test.java └── TestBBBike.java ├── kde ├── BBBike.desktop.tmpl ├── BBBikeDoc.desktop.tmpl ├── BBBikeWWW.desktop.tmpl ├── Cartography.directory.tmpl ├── bbbike-mime-info.xml ├── bbbike.desktop.tst ├── bbbike.menu ├── x-bbbike-data.desktop.tmpl ├── x-bbbike-route.desktop.tmpl └── x-gpstrack.desktop.tmpl ├── lib ├── .gitignore ├── Algorithm │ └── GooglePolylineEncoding.pm ├── AutoInstall │ └── Tk.pm ├── B │ └── FindMsg.pm ├── BikePower.pm ├── BikePower │ ├── HTML.pm │ ├── Tk.pm │ ├── change_wind.xpm │ ├── crouch.xpm │ ├── pack_end.xpm │ ├── pack_middle.xpm │ ├── racing.xpm │ ├── standing.xpm │ ├── tuck.xpm │ ├── up_down.xpm │ └── upright.xpm ├── BrowserInfo.pm ├── Devel │ └── WidgetDump.pm ├── Doit.pm ├── Doit │ ├── Brew.pm │ ├── File.pm │ ├── Git.pm │ └── Lwp.pm ├── GD │ └── Convert.pm ├── Http.pm ├── KDEUtil.pm ├── MacOSXUtil.pm ├── Met │ └── Wind.pm ├── Msg.pm ├── MyFile.pm ├── PDF │ └── Create │ │ └── MyPage.pm ├── Text │ └── ScriptTemplate.pm ├── Time │ └── Zone │ │ └── By4D.pm ├── Tk │ ├── Arrow.pm │ ├── Autoscroll.pm │ ├── BreakMenu.pm │ ├── CanvasBalloon.pm │ ├── CanvasExt.pm │ ├── CanvasFig.pm │ ├── CanvasUtil.pm │ ├── ColorFlowChooser.pm │ ├── ContextHelp.pm │ ├── Countdown.pm │ ├── Enscript.pm │ ├── FastSplash.pm │ ├── FlatCheckbox.pm │ ├── FlatRadiobutton.pm │ ├── FreeDesktop │ │ └── Wm.pm │ ├── GeometryCalc.pm │ ├── Getopt.pm │ ├── K2Listbox.pm │ ├── KListbox.pm │ ├── Kbd.pm │ ├── LayerEditor.pm │ ├── LayerEditorCore.pm │ ├── LayerEditorToplevel.pm │ ├── LogScale.pm │ ├── LongDialog.pm │ ├── PathEntry.pm │ ├── PathEntry │ │ └── Dialog.pm │ ├── Placement.pm │ ├── ProgressSplash.pm │ ├── RaisedButton.pm │ ├── ResizeButton.pm │ ├── RotFont.pm │ ├── RotX11Font.pm │ ├── Ruler.pm │ ├── SRTProgress.pm │ ├── SRTScrollbar.pm │ ├── SmoothShow.pm │ ├── Splash.pm │ ├── StippleLine.pm │ ├── TextProgress.pm │ ├── UnderlineAll.pm │ ├── WListbox.pm │ ├── WidgetDump.pm │ ├── XVkbd-german │ ├── context_help.xbm │ ├── context_help_mask.xbm │ ├── context_nohelp.xbm │ ├── context_nohelp_mask.xbm │ ├── enscript.cfg │ ├── grid000.xbm │ ├── grid045.xbm │ ├── grid090.xbm │ ├── grid135.xbm │ └── layereye.gif ├── TkChange.pm ├── TkCompat.pm ├── UnixUtil.pm ├── VectorUtil.pm ├── WWWBrowser.pm ├── Waitproc.pm ├── Win32Util.pm ├── WinCompat.pm ├── click.au ├── click.wav ├── enum.pm ├── findmsg.pl ├── myclassstruct.pm ├── savevars.pm ├── wettermeldung2 └── your.pm ├── mapserver ├── brb │ ├── .gitignore │ ├── Makefile │ ├── Makefile.bbbike-pps-jessie.inc │ ├── Makefile.bbbike.herceg.de.inc │ ├── Makefile.bbbike.hosteurope.herceg.de.inc │ ├── Makefile.hosteurope.inc │ ├── Makefile.radzeit.herceg.de.inc │ ├── Makefile.radzeit.inc │ ├── README │ ├── brb.css │ ├── brb.html-tpl │ ├── brb.js-tpl │ ├── brb.map-inc │ ├── brb.map-tpl │ ├── brb_init.html-tpl │ ├── cleanup │ ├── crontab.tpl │ ├── doit.pl │ ├── empty.html │ ├── fonts-debian.list │ ├── fonts-devpc01.list │ ├── fonts-freebsd.list │ ├── fonts-spiff.list │ ├── help.html-tpl │ ├── httpd.conf-tpl │ ├── mapserver.conf │ ├── mkroutemap │ ├── query.html │ ├── query_footer.html-tpl │ ├── query_footer2.html │ ├── query_header.html-tpl │ ├── query_header2.html │ ├── radroute_footer.html-tpl │ ├── radroute_header.html-tpl │ └── std.inc └── daemon │ └── mapscript_daemon.pl ├── misc ├── .gitignore ├── BASE ├── GNUmakefile ├── Makefile ├── Makefile.trkthumbnails ├── SlayMakefile ├── abdeckung.bbd ├── abdeckung.bbd-orig ├── abdeckung2.bbd ├── ampelschaltung-orig.txt ├── ampelschaltung.txt ├── ampelschaltung2.txt ├── ampelschaltung_rules.bbd ├── apt-sources.list.d │ ├── Makefile │ └── mydebs.bbbike.key ├── bbbike.psgi-init ├── bbbikecgires.kwalify ├── bbbikecgires.rnc ├── bbd.kwalify ├── data_corrected │ └── Makefile ├── garmin_devcap.kwalify ├── garmin_devcap.yaml ├── garmin_userdef_symbols │ ├── .gitignore │ ├── README.txt │ ├── bike2008 │ │ ├── 000.bmp │ │ ├── 001.bmp │ │ ├── 002.bmp │ │ ├── 003.bmp │ │ ├── 004.bmp │ │ ├── 005.bmp │ │ ├── 006.bmp │ │ ├── 007.bmp │ │ ├── 008.bmp │ │ ├── 009.bmp │ │ ├── 010.bmp │ │ ├── 011.bmp │ │ ├── 012.bmp │ │ ├── 013.bmp │ │ ├── 014.bmp │ │ ├── 015.bmp │ │ ├── 016.bmp │ │ ├── 017.bmp │ │ ├── 018.bmp │ │ ├── 019.bmp │ │ ├── 020.bmp │ │ ├── 021.bmp │ │ ├── 022.bmp │ │ ├── 023.bmp │ │ └── mapping │ ├── bike2014 │ │ ├── BBBike00.bmp │ │ ├── BBBike01.bmp │ │ ├── BBBike02.bmp │ │ ├── BBBike03.bmp │ │ ├── BBBike04.bmp │ │ ├── BBBike05.bmp │ │ ├── BBBike06.bmp │ │ ├── BBBike07.bmp │ │ ├── BBBike08.bmp │ │ ├── BBBike09.bmp │ │ ├── BBBike10.bmp │ │ ├── BBBike11.bmp │ │ ├── BBBike12.bmp │ │ ├── BBBike13.bmp │ │ ├── BBBike14.bmp │ │ ├── BBBike15.bmp │ │ ├── BBBike16.bmp │ │ ├── BBBike17.bmp │ │ ├── BBBike18.bmp │ │ ├── BBBike19.bmp │ │ ├── BBBike20.bmp │ │ ├── BBBike21.bmp │ │ ├── BBBike22.bmp │ │ ├── BBBike23.bmp │ │ ├── BBBike24.bmp │ │ ├── BBBike25.bmp │ │ ├── BBBike26.bmp │ │ ├── BBBike27.bmp │ │ ├── BBBike28.bmp │ │ ├── BBBike29.bmp │ │ ├── BBBike30.bmp │ │ ├── BBBike31.bmp │ │ ├── BBBike32.bmp │ │ ├── BBBike33.bmp │ │ ├── BBBike34.bmp │ │ ├── BBBike35.bmp │ │ ├── BBBike36.bmp │ │ ├── BBBike37.bmp │ │ ├── BBBike38.bmp │ │ ├── BBBike39.bmp │ │ ├── BBBike40.bmp │ │ ├── BBBike41.bmp │ │ ├── BBBike42.bmp │ │ ├── BBBike43.bmp │ │ └── mapping │ └── bike2018 │ │ ├── BBBike00.bmp │ │ ├── BBBike01.bmp │ │ ├── BBBike02.bmp │ │ ├── BBBike03.bmp │ │ ├── BBBike04.bmp │ │ ├── BBBike05.bmp │ │ ├── BBBike06.bmp │ │ ├── BBBike07.bmp │ │ ├── BBBike08.bmp │ │ ├── BBBike09.bmp │ │ ├── BBBike10.bmp │ │ ├── BBBike11.bmp │ │ ├── BBBike12.bmp │ │ ├── BBBike13.bmp │ │ ├── BBBike14.bmp │ │ ├── BBBike15.bmp │ │ ├── BBBike16.bmp │ │ ├── BBBike17.bmp │ │ ├── BBBike18.bmp │ │ ├── BBBike19.bmp │ │ ├── BBBike20.bmp │ │ ├── BBBike21.bmp │ │ ├── BBBike22.bmp │ │ ├── BBBike23.bmp │ │ ├── BBBike24.bmp │ │ ├── BBBike25.bmp │ │ ├── BBBike26.bmp │ │ ├── BBBike27.bmp │ │ ├── BBBike28.bmp │ │ ├── BBBike29.bmp │ │ ├── BBBike30.bmp │ │ ├── BBBike31.bmp │ │ ├── BBBike32.bmp │ │ ├── BBBike33.bmp │ │ ├── BBBike34.bmp │ │ ├── BBBike35.bmp │ │ ├── BBBike36.bmp │ │ ├── BBBike37.bmp │ │ ├── BBBike38.bmp │ │ ├── BBBike39.bmp │ │ ├── BBBike40.bmp │ │ ├── BBBike41.bmp │ │ ├── BBBike42.bmp │ │ ├── BBBike43.bmp │ │ ├── BBBike44.bmp │ │ ├── BBBike45.bmp │ │ ├── BBBike46.bmp │ │ ├── BBBike47.bmp │ │ └── mapping ├── gps_correction_all.dat ├── gpx.rnc ├── gpx.xsd ├── gpx10.xsd ├── kartensignaturen │ ├── README │ ├── night.svg │ ├── notrailer.svg │ └── wien │ │ ├── sbahn.png │ │ ├── sbahn_klein.png │ │ ├── sbahn_mini.png │ │ ├── ubahn.png │ │ ├── ubahn_klein.png │ │ └── ubahn_mini.png ├── kml21.xsd ├── kreisfahrt_2011 │ └── Kreisfahrt-2011-title.png ├── kreisfahrt_anyyear │ ├── kreisfahrt_anyyear.png │ └── kreisfahrt_anyyear_until2020.png ├── mkgmap │ ├── srt-style │ │ ├── info │ │ ├── lines │ │ ├── options │ │ ├── overlays │ │ ├── points │ │ ├── polygons │ │ ├── relations │ │ └── version │ └── typ │ │ ├── M000002a.TXT │ │ └── M000002a.TYP ├── munin-plugins │ └── bbbike ├── ttqv2gpx.xsl ├── vector_tile.proto ├── verkehrszeichen │ ├── README │ ├── Zeichen_124.svg │ ├── Zeichen_245.svg │ ├── Zeichen_277.1.svg │ ├── Zeichen_310.svg │ ├── Zeichen_310_leer.svg │ ├── Zeichen_314.svg │ ├── Zeichen_350.svg │ ├── Zeichen_357-52.svg │ ├── Zeichen_357.svg │ ├── Zeichen_385-50.svg │ └── Zeichen_385-50_leer.svg ├── webcams.bbd └── weblinks.bbd ├── miscsrc ├── ApproxCityparts.pm ├── BBBikeDir.pm ├── BBBikeGit.pm ├── BBBikeOrgDownload.pm ├── BBBikeOsmUtil.pm ├── BBBikeRouteLister.pm ├── CombineTrainStreetNets.pm ├── CommonMLDBM.pm ├── Cov.pm ├── DataChangeLog.pm ├── DistDB.pm ├── ExtractBBBikeOrg.pm ├── FixRemoteAddrHandler.pm ├── GeocoderAddr.pm ├── GpsmanDataAmpeln.pm ├── MerkaartorMas.pm ├── QtQrc.pm ├── ReverseGeocoding.pm ├── StrassenNextCheck.pm ├── TrafficLightCircuitGPSTracking.pm ├── Typ2Legend │ └── XPM.pm ├── VMZTool.pm ├── XXX_new_comments.pl ├── accesslog2bbd ├── ampelschaltung.pl ├── ampelschaltung_postprocessing.pl ├── analyze_deploy_timestamps ├── any2bbd ├── any2gpsman ├── b2003_wld.pl ├── b2dmake ├── b2gmake ├── bbbike-grep ├── bbbike-kinosearch.pl ├── bbbike.el ├── bbbike.org_download.pl ├── bbbike_cgi_clean_expired_cache.pl ├── bbbike_chooser.pl ├── bbbike_tmp_cleanup.sh ├── bbbikedraw.pl ├── bbbikestrserver ├── bbbikestrserver.sh ├── bbd2datamodel.pl ├── bbd2esri ├── bbd2geojson ├── bbd2gpsman.pl ├── bbd2gpx ├── bbd2kml ├── bbd2mapservhtml.pl ├── bbd2osm ├── bbd_splitlines.pl ├── bbd_splitlines_by_points ├── bbd_to_navigon_rte.pl ├── bbd_to_osm_watch_list ├── bbd_to_sourceid_exists ├── bbdtransform.pl ├── bbr ├── bbr2bbd ├── bbrcat ├── berlin_cityparts_to_bbd.pl ├── bvg_checker.pl ├── bvg_disruptions_diff.pl ├── bvg_disruptions_format.pl ├── cache_osm_nodes ├── cat_streets ├── categorize-gpstracks.pl ├── check-osm-watch-list.pl ├── check_bbbike_temp_blockings ├── check_bbd ├── check_berlin_plz ├── check_comments ├── check_connected ├── check_cont ├── check_count ├── check_crossings ├── check_dates ├── check_directives ├── check_double ├── check_housenumbers ├── check_images ├── check_nearest ├── check_neighbour ├── check_points ├── check_station_category ├── check_str_plz ├── combine_gpspoints.pl ├── combine_streets.pl ├── combineosm ├── comment_waypoints.pl ├── concat_sportstracker.pl ├── conv_geonet_data.pl ├── convert2hafas ├── convert_berlinmap.pl ├── convert_coordsys ├── convert_orig_to_bbd ├── convert_radwege ├── coordssession2bbd ├── copy-doit.pl ├── correct_berlin_coords.pl ├── correct_data.pl ├── correct_data_map.pl ├── create_cooked_bbd ├── create_fragezeichen_nextcheck.pl ├── create_map_tube_xml.pl ├── create_modified ├── create_track_index.pl ├── cron-wrapper ├── cul-de-sac-candidates.pl ├── cvsdiffbbd ├── datachangelog2bbd ├── dcwtobbd.pl ├── diffbbd ├── docker-bbbike ├── downloadosm ├── dwd-soil-stations.pl ├── dwd-soil-update.pl ├── e00_to_bbd.pl ├── exif2gpsman ├── filter_version.pl ├── fixmyberlin-plannings.pl ├── flood_search.pl ├── fragezeichen2org.pl ├── fragezeichen_on_route.pl ├── garmin-upload-map.pl ├── geocode_images ├── gps-mount.pl ├── gpsman-collect-trkattrs.pl ├── gpsman2bbd.pl ├── gpsman2gpx ├── gpsman2nmea.pl ├── gpsman_split.pl ├── gpx2bbd ├── gpx2gpsman ├── gpx2gpx ├── grep_osm ├── grepstrassen ├── icao_metar.pl ├── indexmundirobot.pl ├── insert_points ├── is_in_bbox.pl ├── iterate_bbd ├── link_ext_mod.pl ├── loc2gpx.xslt ├── make_task.pl ├── mapillary-mvt-fetch ├── mapillary-v4-fetch ├── match_bbd_data ├── merge_overlapping_streets.pl ├── missing_streets.pl ├── move_coords ├── mudways-enrich.pl ├── mudways-enriched-to-handicap.pl ├── navigon_rte_to_bbd.pl ├── newstreetform_data.pl ├── oldname2plz ├── opengeodbgeocode ├── opengeodbmysql2bbd ├── opengeodborte2bbd ├── org2bbd ├── osm2bbd ├── osm2bbd-devel ├── osm2bbd-postprocess ├── osm_watch_tasks ├── osmelem2bbd ├── osmhistory ├── osmnotes2bbd.pl ├── osmrel2gpx ├── parse_bundle.pl ├── parse_mvt_sequences.pl ├── parse_mvt_sequences.py ├── rawjsontrk2gpsman.pl ├── reduce_streets ├── relevant_errorlog.pl ├── replacestrassen ├── replay_accesslog ├── resend_newstreetform_data.pl ├── resolve_stars ├── restrict_bbd_data.pl ├── search_inaccessible_points ├── show_fonts ├── simplify_streets ├── small_berlinmap.pl ├── sort-coords-data.pl ├── sortbycat ├── split-route-bboxes.pl ├── static_leaflethtml.pl ├── steigung_stat ├── steps_stats.pl ├── str_stat.pl ├── temp_blockings_tasks ├── tilemap ├── tk-bbbike-grep ├── tkzincbbbike ├── track_stats.pl ├── track_stats_mount.pl ├── trafficlightgraph.pl ├── trkstats-summary.pl ├── trkstats.pl ├── ttdump ├── typ2legend.pl ├── unwind_bbd_for_diff ├── update-modperl-reload-touchfile.pl ├── update-openvbb-data-doit.pl ├── url_checker.pl ├── vbb-stops-to-bbd.pl ├── visualize_user_input.pl ├── weight_bbd ├── winter_optimization.pl └── yaml2bbd ├── msg ├── bbbike │ └── en └── install │ └── en ├── plugins ├── BBBikeAllTracksPlugin.pm ├── BBBikeFlickrPlugin.pm ├── BBBikeFloodSearchPlugin.pm ├── BBBikeGPSTrackingPlugin.pm ├── BBBikeGeoURLPlugin.pm ├── BBBikeHistory.pm ├── BBBikeOvlPlugin.pm ├── BBBikeRuler.pm ├── BBBikeSalesman.pm ├── BBBikeScribblePlugin.pm ├── BBBikeThunder.pm ├── BBBikeViewImages.pm ├── FahrinfoQuery.pm ├── GeocoderPlugin.pm ├── KaupertsPlugin.pm ├── LogTracker.pm ├── LuiseBerlin.pm ├── MerkaartorPlugin.pm ├── MultiMap.pm ├── SRTShortcuts.pm ├── TransparentCanvas.pm └── WaypointUploader.pm ├── port ├── MetaPort.pm ├── ci │ ├── ci-functions.sh │ └── travis-functions.sh ├── debian │ ├── changelog │ ├── compat │ ├── control │ ├── copyright │ ├── docs │ ├── helper │ │ └── install-deb │ ├── menu │ ├── rules │ └── source │ │ └── format ├── freebsd │ ├── Makefile.tmpl │ ├── mkport.pl │ ├── pkg-descr │ ├── pkg-message │ └── pkg-plist.add ├── ipk │ └── mkipk.pl ├── old-debian │ ├── Makefile │ ├── bbbike.menu │ ├── bbbike.mime │ ├── changelog.Debian │ ├── compat │ └── control.tpl ├── rpm │ ├── .gitignore │ ├── BBBike.rpm.spec │ ├── mkrpm-with-docker.pl │ └── mkrpm.pl ├── travis-ci └── windows │ ├── .gitignore │ ├── BBBikeWinDistFiles.tpl │ ├── Makefile │ ├── Makefile_PL │ ├── bbbike.tpl.iss │ ├── create_bbbike_dist.pl │ ├── create_customized_strawberry.pl │ ├── inc │ └── Algorithm │ │ └── IncludeExclude.pm │ ├── patches │ ├── 3.16 │ │ └── bbbike_0.config │ └── strawberry-perl-5.12.3.0 │ │ ├── Portable_Config.diff │ │ └── portable_perl.diff │ ├── preinstall_with_ppm.pl │ └── strawberry-include-exclude.pl ├── projects ├── .gitignore ├── bbbike.de-hosteurope │ ├── .gitignore │ ├── .rsync.exclude │ ├── Makefile │ ├── etc │ │ ├── httpd.conf │ │ └── mapserver-brb-brb.map-localinc-jessie │ └── public │ │ └── robots-private.txt └── git-deployment │ └── deploy-on-live.pl ├── smsbbbike ├── t ├── .gitignore ├── BBBikeGUITest.pm ├── BBBikeGUIUpdateTest.pm ├── BBBikeTest.pm ├── BBBikeTestSamplesKML.pm ├── JSTest.pm ├── Makefile ├── abbiegen.t ├── any2bbd.t ├── basic.t ├── bbbike-aux.t ├── bbbike-org-download.t ├── bbbikeadvanced-findcoords.t ├── bbbikebuildutil.t ├── bbbikecalc.t ├── bbbikecgiapi-config.t ├── bbbikecgiapi.t ├── bbbikecgicache.t ├── bbbikecgiconfig.t ├── bbbikecgiutil.t ├── bbbikedraw-loop.t ├── bbbikedraw.t ├── bbbikeedit-fmt-text.t ├── bbbikegeojson.t ├── bbbikegooglemap-selenium.t ├── bbbikegooglemap.t ├── bbbikeguitest-de.t ├── bbbikeguitest-en.t ├── bbbikeguiupdate.t ├── bbbikemail.t ├── bbbikemapserver-info.t ├── bbbikeprocutil.t ├── bbbikerouting.t ├── bbbikesuggest.t ├── bbbiketest.t ├── bbbikeutil.t ├── bbbikevar.t ├── bbbikewinutil-adjustpath.t ├── bbd_splitlines.t ├── browserinfo.t ├── cgi-cookie.t ├── cgi-cors.t ├── cgi-download.t ├── cgi-leaflet.t ├── cgi-masstest.pl ├── cgi-mechanize-upload.t ├── cgi-mechanize.t ├── cgi-qrcode.t ├── cgi-test.t ├── cgi-validator.t ├── cgi.t ├── cgi2.pl ├── cgihead.t ├── cgihead2.t ├── cgiinfo.cgi ├── cmdbbbike.t ├── cvsdiffbbd.t ├── data-test │ ├── .gitignore │ ├── BSDmakefile │ ├── ampeln │ ├── comments_ferry │ ├── comments_path │ ├── culdesac │ ├── faehren │ ├── fragezeichen │ ├── gesperrt │ ├── handicap_directed │ ├── hoehe │ ├── landstrassen │ ├── qualitaet_s │ ├── radwege_exact │ ├── strassen │ └── temp_blockings │ │ └── bbbike-temp-blockings.pl ├── dataset.t ├── downloadosm.t ├── dwd-soil-update.t ├── emacs.t ├── exif2gpsman.t ├── extract-bbbike-org.t ├── geocode_images.t ├── geocoder-addr-slow.t ├── geocoder-addr.t ├── geography.t ├── gfxlogfile.t ├── gps-bbbikegps-mounteddevice.t ├── gps-bbbikegps-mtp.t ├── gps-gpsman-waypoint.t ├── gps-gpsmandata-any.t ├── gps-gpsmandata-garmingpx.t ├── gps-gpsmandata-static.t ├── gps-gpsmandata-stats.t ├── gps-gpsmandata-tcx.t ├── gps-gpsmandata.t ├── gps-kml.t ├── gps-symbols-garmin.t ├── gpsbabel.t ├── gpx2gpx.t ├── grepstrassen.t ├── images.t ├── img │ └── gpspostest.jpg ├── insert_points.t ├── install.t ├── js_strict.t ├── karte_etrs89.t ├── karte_utm.t ├── kdeutil.t ├── leaflet-static-web.t ├── leaflet-static.t ├── lectrotest.t ├── liveserver.t ├── locate.t ├── m-bbbike-de.t ├── makenet-bench.pl ├── mapillary-v4-fetch.t ├── mapserver-util.t ├── mapserver.t ├── mapserver_address.t ├── mapserver_comment.t ├── met-wind.t ├── miscsrc.t ├── myclassstruct.t ├── new_comments.t ├── old_comments.t ├── org2bbd.t ├── osm2bbd.t ├── osmrel2gpx.t ├── ovl.t ├── plz-expected │ ├── 1 │ ├── 2 │ ├── 3 │ ├── 4 │ ├── 5 │ ├── 6 │ ├── 7 │ ├── 8 │ ├── 9 │ ├── 10 │ ├── 11 │ └── 12 ├── plz.t ├── plz2.t ├── plzext.t ├── plzlogfile.t ├── plzresult.t ├── plzstreets.t ├── pod.t ├── radrouten-selenium.t ├── radrouten.t ├── read-gps-formats.t ├── reverse-geocoding.t ├── route-descr.t ├── route-gple.t ├── route-heavy.t ├── route-pdf-cairo-nopango.t ├── route-pdf-cairo.t ├── route-pdf.t ├── route-simplify-gps.t ├── route.t ├── scrollarray_js.t ├── search_inaccessible.t ├── server-check-concurrency.t ├── server-check.t ├── smoothshow.t ├── sprintf_js.t ├── strasse.t ├── strassen-agrep.t ├── strassen-bbbgeojsonp.t ├── strassen-bench.pl ├── strassen-build.t ├── strassen-catutil.t ├── strassen-combine.t ├── strassen-coreheavy-sortbycat.t ├── strassen-coreheavy-split.t ├── strassen-coreheavy.t ├── strassen-dbfile-btree.t ├── strassen-dbfile.t ├── strassen-edit.t ├── strassen-geojson.t ├── strassen-gpsman.t ├── strassen-gpx.t ├── strassen-grepstreets.t ├── strassen-grid.t ├── strassen-index.t ├── strassen-iterate.t ├── strassen-kml.t ├── strassen-kreuzungen.t ├── strassen-lazy.t ├── strassen-lookup.t ├── strassen-multistrassen-globdirs.t ├── strassen-multistrassen.t ├── strassen-simplesearch.t ├── strassen-sort.t ├── strassen-storable.t ├── strassen-stream.t ├── strassen-tie.t ├── strassen-util-cache.t ├── strassen-util-strecke-polar-force-geo-distance-pp.t ├── strassen-util-strecke-polar-force-geo-distance.t ├── strassen-util-strecke-polar-force-math-trig.t ├── strassen-util-strecke-polar.t ├── strassen-util.t ├── strassen-without-tie-ixhash.t ├── strassen.t ├── strassen2-bench.pl ├── strassennetz-addnet.t ├── strassennetz-directedhandicap.t ├── strassennetz-heavy.t ├── strassennetz-mount.t ├── strassennetz-testdata.t ├── strassennetz.t ├── strassenutil-bench.pl ├── temp_blockings_dates.t ├── test.config.example ├── testbbd │ └── globdir.bbd ├── time-zone-by4d.t ├── tk-geometry.t ├── tmp │ └── .keep_me ├── typ2legend-xpm.t ├── typ2legend.t ├── update.t ├── url_checker.t ├── vector-in-grid-tk.t ├── vector-intersect-lines.t ├── vector-intersect-rectangles.t ├── vector-point-in-polygon.t ├── vector-polygon-center-datatest.t ├── vector-polygon-center-visual.t ├── vector-polygon-center.t ├── vectorutil.t ├── version-checks.t ├── wapcgi.t ├── way.t └── wwwdata.t ├── tcl ├── bbbike.tcl └── strassen.tcl ├── tkbikepwr └── tmp ├── .keep_me └── www └── .keep_me /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /Ampelschaltung.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Ampelschaltung.pm -------------------------------------------------------------------------------- /BBBikeAdvanced.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/BBBikeAdvanced.pm -------------------------------------------------------------------------------- /BBBikeAlarm.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/BBBikeAlarm.pm -------------------------------------------------------------------------------- /BBBikeBuildUtil.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/BBBikeBuildUtil.pm -------------------------------------------------------------------------------- /BBBikeCGI/API.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/BBBikeCGI/API.pm -------------------------------------------------------------------------------- /BBBikeCGI/Cache.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/BBBikeCGI/Cache.pm -------------------------------------------------------------------------------- /BBBikeCGI/Config.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/BBBikeCGI/Config.pm -------------------------------------------------------------------------------- /BBBikeCGI/Util.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/BBBikeCGI/Util.pm -------------------------------------------------------------------------------- /BBBikeCalc.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/BBBikeCalc.pm -------------------------------------------------------------------------------- /BBBikeCanvasUtil.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/BBBikeCanvasUtil.pm -------------------------------------------------------------------------------- /BBBikeCrosshairs.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/BBBikeCrosshairs.pm -------------------------------------------------------------------------------- /BBBikeDebug.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/BBBikeDebug.pm -------------------------------------------------------------------------------- /BBBikeDraw.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/BBBikeDraw.pm -------------------------------------------------------------------------------- /BBBikeDraw/GD.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/BBBikeDraw/GD.pm -------------------------------------------------------------------------------- /BBBikeDraw/GDHeavy.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/BBBikeDraw/GDHeavy.pm -------------------------------------------------------------------------------- /BBBikeDraw/ImageMap.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/BBBikeDraw/ImageMap.pm -------------------------------------------------------------------------------- /BBBikeDraw/Imager.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/BBBikeDraw/Imager.pm -------------------------------------------------------------------------------- /BBBikeDraw/Mapnik.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/BBBikeDraw/Mapnik.pm -------------------------------------------------------------------------------- /BBBikeDraw/PDF.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/BBBikeDraw/PDF.pm -------------------------------------------------------------------------------- /BBBikeDraw/PDFCairo.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/BBBikeDraw/PDFCairo.pm -------------------------------------------------------------------------------- /BBBikeDraw/PDFUtil.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/BBBikeDraw/PDFUtil.pm -------------------------------------------------------------------------------- /BBBikeDraw/SVG.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/BBBikeDraw/SVG.pm -------------------------------------------------------------------------------- /BBBikeESRI.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/BBBikeESRI.pm -------------------------------------------------------------------------------- /BBBikeEdit.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/BBBikeEdit.pm -------------------------------------------------------------------------------- /BBBikeEditUtil.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/BBBikeEditUtil.pm -------------------------------------------------------------------------------- /BBBikeGPS.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/BBBikeGPS.pm -------------------------------------------------------------------------------- /BBBikeGeoJSON.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/BBBikeGeoJSON.pm -------------------------------------------------------------------------------- /BBBikeGlobalVars.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/BBBikeGlobalVars.pm -------------------------------------------------------------------------------- /BBBikeHeavy.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/BBBikeHeavy.pm -------------------------------------------------------------------------------- /BBBikeLaTeX.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/BBBikeLaTeX.pm -------------------------------------------------------------------------------- /BBBikeLazy.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/BBBikeLazy.pm -------------------------------------------------------------------------------- /BBBikeMail.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/BBBikeMail.pm -------------------------------------------------------------------------------- /BBBikeMapserver.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/BBBikeMapserver.pm -------------------------------------------------------------------------------- /BBBikeMenubar.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/BBBikeMenubar.pm -------------------------------------------------------------------------------- /BBBikePalm.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/BBBikePalm.pm -------------------------------------------------------------------------------- /BBBikePersonal.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/BBBikePersonal.pm -------------------------------------------------------------------------------- /BBBikePlist.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/BBBikePlist.pm -------------------------------------------------------------------------------- /BBBikePlugin.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/BBBikePlugin.pm -------------------------------------------------------------------------------- /BBBikePluginLister.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/BBBikePluginLister.pm -------------------------------------------------------------------------------- /BBBikePrefsWidget.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/BBBikePrefsWidget.pm -------------------------------------------------------------------------------- /BBBikePrint.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/BBBikePrint.pm -------------------------------------------------------------------------------- /BBBikeProcUtil.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/BBBikeProcUtil.pm -------------------------------------------------------------------------------- /BBBikeProfil.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/BBBikeProfil.pm -------------------------------------------------------------------------------- /BBBikeRouting.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/BBBikeRouting.pm -------------------------------------------------------------------------------- /BBBikeRouting.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/BBBikeRouting.pod -------------------------------------------------------------------------------- /BBBikeRouting/Boat.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/BBBikeRouting/Boat.pm -------------------------------------------------------------------------------- /BBBikeScribble.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/BBBikeScribble.pm -------------------------------------------------------------------------------- /BBBikeServer.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/BBBikeServer.pm -------------------------------------------------------------------------------- /BBBikeStats.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/BBBikeStats.pm -------------------------------------------------------------------------------- /BBBikeTkUtil.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/BBBikeTkUtil.pm -------------------------------------------------------------------------------- /BBBikeTrans.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/BBBikeTrans.pm -------------------------------------------------------------------------------- /BBBikeUnicodeUtil.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/BBBikeUnicodeUtil.pm -------------------------------------------------------------------------------- /BBBikeUtil.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/BBBikeUtil.pm -------------------------------------------------------------------------------- /BBBikeVar.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/BBBikeVar.pm -------------------------------------------------------------------------------- /BBBikeVia.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/BBBikeVia.pm -------------------------------------------------------------------------------- /BBBikeWeather.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/BBBikeWeather.pm -------------------------------------------------------------------------------- /BBBikeWinUtil.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/BBBikeWinUtil.pm -------------------------------------------------------------------------------- /BBBikeYAML.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/BBBikeYAML.pm -------------------------------------------------------------------------------- /Bundle/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Bundle/BBBike.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Bundle/BBBike.pm -------------------------------------------------------------------------------- /Bundle/BBBike.tpl.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Bundle/BBBike.tpl.pm -------------------------------------------------------------------------------- /Bundle/BBBike_cgi.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Bundle/BBBike_cgi.pm -------------------------------------------------------------------------------- /Bundle/BBBike_psgi.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Bundle/BBBike_psgi.pm -------------------------------------------------------------------------------- /Bundle/BBBike_small.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Bundle/BBBike_small.pm -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/CHANGES -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/COPYING -------------------------------------------------------------------------------- /ESRI/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/ESRI/.gitignore -------------------------------------------------------------------------------- /ESRI/Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/ESRI/Makefile.PL -------------------------------------------------------------------------------- /ESRI/Shapefile.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/ESRI/Shapefile.pm -------------------------------------------------------------------------------- /ESRI/Shapefile/Main.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/ESRI/Shapefile/Main.pm -------------------------------------------------------------------------------- /ESRI/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/ESRI/TODO -------------------------------------------------------------------------------- /ESRI/esri2bbd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/ESRI/esri2bbd.pl -------------------------------------------------------------------------------- /ESRI/t/shapefile.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/ESRI/t/shapefile.t -------------------------------------------------------------------------------- /GIS/Globe.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/GIS/Globe.pm -------------------------------------------------------------------------------- /GIS/NSD.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/GIS/NSD.pm -------------------------------------------------------------------------------- /GIS/globe_to_bbd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/GIS/globe_to_bbd.pl -------------------------------------------------------------------------------- /GPS.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/GPS.pm -------------------------------------------------------------------------------- /GPS/BBBikeGPS/MTP.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/GPS/BBBikeGPS/MTP.pm -------------------------------------------------------------------------------- /GPS/DirectGarmin.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/GPS/DirectGarmin.pm -------------------------------------------------------------------------------- /GPS/G7toWin_2.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/GPS/G7toWin_2.pm -------------------------------------------------------------------------------- /GPS/G7toWin_ASCII.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/GPS/G7toWin_ASCII.pm -------------------------------------------------------------------------------- /GPS/GPX.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/GPS/GPX.pm -------------------------------------------------------------------------------- /GPS/Gardown.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/GPS/Gardown.pm -------------------------------------------------------------------------------- /GPS/Gpsbabel.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/GPS/Gpsbabel.pm -------------------------------------------------------------------------------- /GPS/GpsmanConn.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/GPS/GpsmanConn.pm -------------------------------------------------------------------------------- /GPS/GpsmanData.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/GPS/GpsmanData.pm -------------------------------------------------------------------------------- /GPS/GpsmanData.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/GPS/GpsmanData.pod -------------------------------------------------------------------------------- /GPS/GpsmanData/Any.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/GPS/GpsmanData/Any.pm -------------------------------------------------------------------------------- /GPS/GpsmanData/FIT.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/GPS/GpsmanData/FIT.pm -------------------------------------------------------------------------------- /GPS/GpsmanData/TCX.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/GPS/GpsmanData/TCX.pm -------------------------------------------------------------------------------- /GPS/GpsmanData/Tk.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/GPS/GpsmanData/Tk.pm -------------------------------------------------------------------------------- /GPS/KML.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/GPS/KML.pm -------------------------------------------------------------------------------- /GPS/MPS.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/GPS/MPS.pm -------------------------------------------------------------------------------- /GPS/MyNMEA.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/GPS/MyNMEA.pm -------------------------------------------------------------------------------- /GPS/Ovl.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/GPS/Ovl.pm -------------------------------------------------------------------------------- /GPS/SerialStty.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/GPS/SerialStty.pm -------------------------------------------------------------------------------- /GPS/Symbols/Garmin.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/GPS/Symbols/Garmin.pm -------------------------------------------------------------------------------- /GPS/Util.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/GPS/Util.pm -------------------------------------------------------------------------------- /GPS/WaypointPlus.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/GPS/WaypointPlus.pm -------------------------------------------------------------------------------- /Geography.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Geography.pm -------------------------------------------------------------------------------- /Geography/Base.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Geography/Base.pm -------------------------------------------------------------------------------- /Geography/Berlin_DE.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Geography/Berlin_DE.pm -------------------------------------------------------------------------------- /Geography/FromMeta.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Geography/FromMeta.pm -------------------------------------------------------------------------------- /GfxConvert.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/GfxConvert.pm -------------------------------------------------------------------------------- /Hooks.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Hooks.pm -------------------------------------------------------------------------------- /HouseNumbers.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/HouseNumbers.pm -------------------------------------------------------------------------------- /Karte.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Karte.pm -------------------------------------------------------------------------------- /Karte/Berlinmap1996.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Karte/Berlinmap1996.pm -------------------------------------------------------------------------------- /Karte/Berlinmap1997.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Karte/Berlinmap1997.pm -------------------------------------------------------------------------------- /Karte/Berlinmap1998.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Karte/Berlinmap1998.pm -------------------------------------------------------------------------------- /Karte/Berlinmap1999.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Karte/Berlinmap1999.pm -------------------------------------------------------------------------------- /Karte/Berlinmap2000.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Karte/Berlinmap2000.pm -------------------------------------------------------------------------------- /Karte/Berlinmap2001.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Karte/Berlinmap2001.pm -------------------------------------------------------------------------------- /Karte/Berlinmap2002.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Karte/Berlinmap2002.pm -------------------------------------------------------------------------------- /Karte/Berlinmap2003.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Karte/Berlinmap2003.pm -------------------------------------------------------------------------------- /Karte/Berlinmap2004.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Karte/Berlinmap2004.pm -------------------------------------------------------------------------------- /Karte/Cityinfo.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Karte/Cityinfo.pm -------------------------------------------------------------------------------- /Karte/Demap2002.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Karte/Demap2002.pm -------------------------------------------------------------------------------- /Karte/ETRS89.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Karte/ETRS89.pm -------------------------------------------------------------------------------- /Karte/GDF.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Karte/GDF.pm -------------------------------------------------------------------------------- /Karte/GIS.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Karte/GIS.pm -------------------------------------------------------------------------------- /Karte/GISmap.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Karte/GISmap.pm -------------------------------------------------------------------------------- /Karte/GPS.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Karte/GPS.pm -------------------------------------------------------------------------------- /Karte/Nbrbmap2004.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Karte/Nbrbmap2004.pm -------------------------------------------------------------------------------- /Karte/PilotPl.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Karte/PilotPl.pm -------------------------------------------------------------------------------- /Karte/PilotPl12.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Karte/PilotPl12.pm -------------------------------------------------------------------------------- /Karte/Polar.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Karte/Polar.pm -------------------------------------------------------------------------------- /Karte/Satmap.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Karte/Satmap.pm -------------------------------------------------------------------------------- /Karte/SatmapGIF.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Karte/SatmapGIF.pm -------------------------------------------------------------------------------- /Karte/Soldner_alt.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Karte/Soldner_alt.pm -------------------------------------------------------------------------------- /Karte/Standard.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Karte/Standard.pm -------------------------------------------------------------------------------- /Karte/T2001.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Karte/T2001.pm -------------------------------------------------------------------------------- /Karte/T99.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Karte/T99.pm -------------------------------------------------------------------------------- /Karte/Tk50.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Karte/Tk50.pm -------------------------------------------------------------------------------- /Karte/UTM.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Karte/UTM.pm -------------------------------------------------------------------------------- /MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/MANIFEST -------------------------------------------------------------------------------- /MANIFEST.SKIP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/MANIFEST.SKIP -------------------------------------------------------------------------------- /Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Makefile.PL -------------------------------------------------------------------------------- /Makefile_admin_PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Makefile_admin_PL -------------------------------------------------------------------------------- /PLZ.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/PLZ.pm -------------------------------------------------------------------------------- /PLZ/Levenshtein.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/PLZ/Levenshtein.pm -------------------------------------------------------------------------------- /PLZ/Multi.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/PLZ/Multi.pm -------------------------------------------------------------------------------- /PLZ/Result.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/PLZ/Result.pm -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/README -------------------------------------------------------------------------------- /README.english: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/README.english -------------------------------------------------------------------------------- /README.pod: -------------------------------------------------------------------------------- 1 | README.english -------------------------------------------------------------------------------- /README.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/README.tpl -------------------------------------------------------------------------------- /Radwege.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Radwege.pm -------------------------------------------------------------------------------- /Route.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Route.pm -------------------------------------------------------------------------------- /Route/Descr.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Route/Descr.pm -------------------------------------------------------------------------------- /Route/GPLE.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Route/GPLE.pm -------------------------------------------------------------------------------- /Route/GPLEU.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Route/GPLEU.pm -------------------------------------------------------------------------------- /Route/Heavy.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Route/Heavy.pm -------------------------------------------------------------------------------- /Route/PDF.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Route/PDF.pm -------------------------------------------------------------------------------- /Route/PDF/Cairo.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Route/PDF/Cairo.pm -------------------------------------------------------------------------------- /Route/Simplify.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Route/Simplify.pm -------------------------------------------------------------------------------- /Salesman.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Salesman.pm -------------------------------------------------------------------------------- /Strassen.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Strassen.pm -------------------------------------------------------------------------------- /Strassen/Build.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Strassen/Build.pm -------------------------------------------------------------------------------- /Strassen/CDB.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Strassen/CDB.pm -------------------------------------------------------------------------------- /Strassen/Cat.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Strassen/Cat.pm -------------------------------------------------------------------------------- /Strassen/CatUtil.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Strassen/CatUtil.pm -------------------------------------------------------------------------------- /Strassen/Check.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Strassen/Check.pm -------------------------------------------------------------------------------- /Strassen/Combine.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Strassen/Combine.pm -------------------------------------------------------------------------------- /Strassen/Core.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Strassen/Core.pm -------------------------------------------------------------------------------- /Strassen/CoreHeavy.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Strassen/CoreHeavy.pm -------------------------------------------------------------------------------- /Strassen/DB_File.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Strassen/DB_File.pm -------------------------------------------------------------------------------- /Strassen/Dataset.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Strassen/Dataset.pm -------------------------------------------------------------------------------- /Strassen/E00.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Strassen/E00.pm -------------------------------------------------------------------------------- /Strassen/ESRI.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Strassen/ESRI.pm -------------------------------------------------------------------------------- /Strassen/Edit.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Strassen/Edit.pm -------------------------------------------------------------------------------- /Strassen/Ext.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Strassen/Ext.pm -------------------------------------------------------------------------------- /Strassen/Fast.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Strassen/Fast.pm -------------------------------------------------------------------------------- /Strassen/FromRoute.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Strassen/FromRoute.pm -------------------------------------------------------------------------------- /Strassen/GPX.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Strassen/GPX.pm -------------------------------------------------------------------------------- /Strassen/Gardown.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Strassen/Gardown.pm -------------------------------------------------------------------------------- /Strassen/Generated.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Strassen/Generated.pm -------------------------------------------------------------------------------- /Strassen/GeoJSON.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Strassen/GeoJSON.pm -------------------------------------------------------------------------------- /Strassen/Gpsman.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Strassen/Gpsman.pm -------------------------------------------------------------------------------- /Strassen/Heavy.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Strassen/Heavy.pm -------------------------------------------------------------------------------- /Strassen/Index.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Strassen/Index.pm -------------------------------------------------------------------------------- /Strassen/KML.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Strassen/KML.pm -------------------------------------------------------------------------------- /Strassen/Kreuzungen.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Strassen/Kreuzungen.pm -------------------------------------------------------------------------------- /Strassen/Lazy.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Strassen/Lazy.pm -------------------------------------------------------------------------------- /Strassen/Lookup.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Strassen/Lookup.pm -------------------------------------------------------------------------------- /Strassen/MapInfo.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Strassen/MapInfo.pm -------------------------------------------------------------------------------- /Strassen/Obsolete.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Strassen/Obsolete.pm -------------------------------------------------------------------------------- /Strassen/Pg.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Strassen/Pg.pm -------------------------------------------------------------------------------- /Strassen/QuadTree.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Strassen/QuadTree.pm -------------------------------------------------------------------------------- /Strassen/QualityDE.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Strassen/QualityDE.pm -------------------------------------------------------------------------------- /Strassen/Stat.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Strassen/Stat.pm -------------------------------------------------------------------------------- /Strassen/Storable.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Strassen/Storable.pm -------------------------------------------------------------------------------- /Strassen/Strasse.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Strassen/Strasse.pm -------------------------------------------------------------------------------- /Strassen/Tie.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Strassen/Tie.pm -------------------------------------------------------------------------------- /Strassen/Touratech.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Strassen/Touratech.pm -------------------------------------------------------------------------------- /Strassen/Util.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Strassen/Util.pm -------------------------------------------------------------------------------- /Update.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Update.pm -------------------------------------------------------------------------------- /Way.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Way.pm -------------------------------------------------------------------------------- /Way/Metric.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Way/Metric.pm -------------------------------------------------------------------------------- /Wizards.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/Wizards.pm -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/appveyor.yml -------------------------------------------------------------------------------- /babybike/.gitignore: -------------------------------------------------------------------------------- 1 | /_Inline 2 | /data/ 3 | -------------------------------------------------------------------------------- /babybike/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/babybike/Makefile -------------------------------------------------------------------------------- /babybike/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/babybike/README -------------------------------------------------------------------------------- /babybike/babybike: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/babybike/babybike -------------------------------------------------------------------------------- /babybike/babybikerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/babybike/babybikerc -------------------------------------------------------------------------------- /babybike/standard.desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/babybike/standard.desc -------------------------------------------------------------------------------- /babybike/tkbabybike: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/babybike/tkbabybike -------------------------------------------------------------------------------- /bbbike: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/bbbike -------------------------------------------------------------------------------- /bbbike-activeperl.bat: -------------------------------------------------------------------------------- 1 | perl bbbike %1 %2 %3 %4 %5 %6 %7 %8 %9 2 | -------------------------------------------------------------------------------- /bbbike-fast.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | bbbike.bat -fast 3 | -------------------------------------------------------------------------------- /bbbike.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/bbbike.bat -------------------------------------------------------------------------------- /bbbike.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/bbbike.pod -------------------------------------------------------------------------------- /bbbikeapplet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/bbbikeapplet -------------------------------------------------------------------------------- /bbbikeclient: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/bbbikeclient -------------------------------------------------------------------------------- /c/.gitignore: -------------------------------------------------------------------------------- 1 | /data 2 | /minibbbike 3 | /*.o 4 | -------------------------------------------------------------------------------- /c/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/c/GNUmakefile -------------------------------------------------------------------------------- /c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/c/Makefile -------------------------------------------------------------------------------- /c/Makefile.w32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/c/Makefile.w32 -------------------------------------------------------------------------------- /c/bbbike.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/c/bbbike.h -------------------------------------------------------------------------------- /c/conv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/c/conv.c -------------------------------------------------------------------------------- /c/minibbbike.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/c/minibbbike.c -------------------------------------------------------------------------------- /c/mkdata.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/c/mkdata.pl -------------------------------------------------------------------------------- /c/mkdatapdb.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/c/mkdatapdb.pl -------------------------------------------------------------------------------- /c/route.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/c/route.c -------------------------------------------------------------------------------- /cache/.keep_me: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cbbbike: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/cbbbike -------------------------------------------------------------------------------- /cbbbike.bat: -------------------------------------------------------------------------------- 1 | perl cbbbike 2 | -------------------------------------------------------------------------------- /cdrom/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/cdrom/Makefile -------------------------------------------------------------------------------- /cdrom/PerlInstall.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/cdrom/PerlInstall.pm -------------------------------------------------------------------------------- /cdrom/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/cdrom/README -------------------------------------------------------------------------------- /cdrom/cdrom.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/cdrom/cdrom.pl -------------------------------------------------------------------------------- /cdrom/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/cdrom/index.html -------------------------------------------------------------------------------- /cdrom/mac/afpfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/cdrom/mac/afpfile -------------------------------------------------------------------------------- /cdrom/perlinstall.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/cdrom/perlinstall.pl -------------------------------------------------------------------------------- /cdrom/unix/bbbike.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/cdrom/unix/bbbike.sh -------------------------------------------------------------------------------- /cdrom/windows/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/cdrom/windows/Makefile -------------------------------------------------------------------------------- /cdrom/windows/perl.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/cdrom/windows/perl.bat -------------------------------------------------------------------------------- /cdrom/windows/setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/cdrom/windows/setup.c -------------------------------------------------------------------------------- /cgi/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/cgi/.gitignore -------------------------------------------------------------------------------- /cgi/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/cgi/GNUmakefile -------------------------------------------------------------------------------- /cgi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/cgi/Makefile -------------------------------------------------------------------------------- /cgi/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/cgi/README -------------------------------------------------------------------------------- /cgi/bbbike-asch.psgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/cgi/bbbike-asch.psgi -------------------------------------------------------------------------------- /cgi/bbbike-data.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/cgi/bbbike-data.cgi -------------------------------------------------------------------------------- /cgi/bbbike-teaser.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/cgi/bbbike-teaser.pl -------------------------------------------------------------------------------- /cgi/bbbike.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/cgi/bbbike.cgi -------------------------------------------------------------------------------- /cgi/bbbike.psgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/cgi/bbbike.psgi -------------------------------------------------------------------------------- /cgi/bbbikeleaflet.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/cgi/bbbikeleaflet.cgi -------------------------------------------------------------------------------- /cgi/berlinmap.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/cgi/berlinmap.cgi -------------------------------------------------------------------------------- /cgi/httpd.conf.st: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/cgi/httpd.conf.st -------------------------------------------------------------------------------- /cgi/httpd.conf.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/cgi/httpd.conf.tpl -------------------------------------------------------------------------------- /cgi/httpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/cgi/httpi -------------------------------------------------------------------------------- /cgi/mksymlinks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/cgi/mksymlinks -------------------------------------------------------------------------------- /cgi/msg/en: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/cgi/msg/en -------------------------------------------------------------------------------- /cgi/qrcode.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/cgi/qrcode.cgi -------------------------------------------------------------------------------- /cgi/runbbbikecgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/cgi/runbbbikecgi -------------------------------------------------------------------------------- /cgi/tinyhttpd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/cgi/tinyhttpd -------------------------------------------------------------------------------- /cgi/tinyhttpd.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/cgi/tinyhttpd.config -------------------------------------------------------------------------------- /cgi/upload-track.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/cgi/upload-track.cgi -------------------------------------------------------------------------------- /cgi/wapbbbike.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/cgi/wapbbbike.cgi -------------------------------------------------------------------------------- /cmdbbbike: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/cmdbbbike -------------------------------------------------------------------------------- /data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/.gitignore -------------------------------------------------------------------------------- /data/.modified: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/.modified -------------------------------------------------------------------------------- /data/GNUmakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/GNUmakefile -------------------------------------------------------------------------------- /data/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/Makefile -------------------------------------------------------------------------------- /data/Makefile.garmin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/Makefile.garmin -------------------------------------------------------------------------------- /data/Makefile.mapfiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/Makefile.mapfiles -------------------------------------------------------------------------------- /data/Makefile.vars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/Makefile.vars -------------------------------------------------------------------------------- /data/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/README -------------------------------------------------------------------------------- /data/add_plaetze: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/add_plaetze -------------------------------------------------------------------------------- /data/add_str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/add_str -------------------------------------------------------------------------------- /data/add_str_potsdam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/add_str_potsdam -------------------------------------------------------------------------------- /data/ampeln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/ampeln -------------------------------------------------------------------------------- /data/ampeln-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/ampeln-orig -------------------------------------------------------------------------------- /data/ampelschaltung: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/ampelschaltung -------------------------------------------------------------------------------- /data/berlin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/berlin -------------------------------------------------------------------------------- /data/berlin_ortsteile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/berlin_ortsteile -------------------------------------------------------------------------------- /data/brunnels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/brunnels -------------------------------------------------------------------------------- /data/brunnels-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/brunnels-orig -------------------------------------------------------------------------------- /data/comments_ferry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/comments_ferry -------------------------------------------------------------------------------- /data/comments_misc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/comments_misc -------------------------------------------------------------------------------- /data/comments_mount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/comments_mount -------------------------------------------------------------------------------- /data/comments_path: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/comments_path -------------------------------------------------------------------------------- /data/comments_route: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/comments_route -------------------------------------------------------------------------------- /data/comments_scenic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/comments_scenic -------------------------------------------------------------------------------- /data/comments_tram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/comments_tram -------------------------------------------------------------------------------- /data/culdesac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/culdesac -------------------------------------------------------------------------------- /data/culdesac-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/culdesac-orig -------------------------------------------------------------------------------- /data/deutschland: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/deutschland -------------------------------------------------------------------------------- /data/deutschland-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/deutschland-orig -------------------------------------------------------------------------------- /data/doit.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/doit.pl -------------------------------------------------------------------------------- /data/exits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/exits -------------------------------------------------------------------------------- /data/exits-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/exits-orig -------------------------------------------------------------------------------- /data/faehren: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/faehren -------------------------------------------------------------------------------- /data/faehren-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/faehren-orig -------------------------------------------------------------------------------- /data/flaechen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/flaechen -------------------------------------------------------------------------------- /data/flaechen-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/flaechen-orig -------------------------------------------------------------------------------- /data/fragezeichen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/fragezeichen -------------------------------------------------------------------------------- /data/fragezeichen-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/fragezeichen-orig -------------------------------------------------------------------------------- /data/gesperrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/gesperrt -------------------------------------------------------------------------------- /data/gesperrt-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/gesperrt-orig -------------------------------------------------------------------------------- /data/gesperrt_car: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/gesperrt_car -------------------------------------------------------------------------------- /data/gesperrt_car-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/gesperrt_car-orig -------------------------------------------------------------------------------- /data/gesperrt_r: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/gesperrt_r-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/gesperrt_r-orig -------------------------------------------------------------------------------- /data/gesperrt_s: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/gesperrt_s-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/gesperrt_s-orig -------------------------------------------------------------------------------- /data/gesperrt_u: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/gesperrt_u-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/gesperrt_u-orig -------------------------------------------------------------------------------- /data/green: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/green -------------------------------------------------------------------------------- /data/green-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/green-orig -------------------------------------------------------------------------------- /data/grenzuebergaenge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/grenzuebergaenge -------------------------------------------------------------------------------- /data/handicap_directed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/handicap_directed -------------------------------------------------------------------------------- /data/handicap_l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/handicap_l -------------------------------------------------------------------------------- /data/handicap_l-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/handicap_l-orig -------------------------------------------------------------------------------- /data/handicap_s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/handicap_s -------------------------------------------------------------------------------- /data/handicap_s-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/handicap_s-orig -------------------------------------------------------------------------------- /data/hoehe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/hoehe -------------------------------------------------------------------------------- /data/hoehe-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/hoehe-orig -------------------------------------------------------------------------------- /data/housenumbers: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/housenumbers -------------------------------------------------------------------------------- /data/housenumbers-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/housenumbers-orig -------------------------------------------------------------------------------- /data/kneipen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/kneipen -------------------------------------------------------------------------------- /data/kneipen-info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/kneipen-info -------------------------------------------------------------------------------- /data/kneipen.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/kneipen.yml -------------------------------------------------------------------------------- /data/label: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/label -------------------------------------------------------------------------------- /data/landstrassen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/landstrassen -------------------------------------------------------------------------------- /data/landstrassen-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/landstrassen-orig -------------------------------------------------------------------------------- /data/landstrassen2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/landstrassen2 -------------------------------------------------------------------------------- /data/mount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/mount -------------------------------------------------------------------------------- /data/mudways: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/mudways -------------------------------------------------------------------------------- /data/nolighting: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/nolighting -------------------------------------------------------------------------------- /data/nolighting-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/nolighting-orig -------------------------------------------------------------------------------- /data/obst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/obst -------------------------------------------------------------------------------- /data/obst-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/obst-orig -------------------------------------------------------------------------------- /data/oldnames: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/oldnames -------------------------------------------------------------------------------- /data/orte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/orte -------------------------------------------------------------------------------- /data/orte-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/orte-orig -------------------------------------------------------------------------------- /data/orte2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/orte2 -------------------------------------------------------------------------------- /data/orte2-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/orte2-orig -------------------------------------------------------------------------------- /data/orte_city: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/orte_city -------------------------------------------------------------------------------- /data/orte_city-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/orte_city-orig -------------------------------------------------------------------------------- /data/ortsschilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/ortsschilder -------------------------------------------------------------------------------- /data/ortsschilder-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/ortsschilder-orig -------------------------------------------------------------------------------- /data/plaetze: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/plaetze -------------------------------------------------------------------------------- /data/plaetze-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/plaetze-orig -------------------------------------------------------------------------------- /data/plz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/plz -------------------------------------------------------------------------------- /data/plz-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/plz-orig -------------------------------------------------------------------------------- /data/potsdam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/potsdam -------------------------------------------------------------------------------- /data/potsdam-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/potsdam-orig -------------------------------------------------------------------------------- /data/qualitaet_l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/qualitaet_l -------------------------------------------------------------------------------- /data/qualitaet_l-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/qualitaet_l-orig -------------------------------------------------------------------------------- /data/qualitaet_s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/qualitaet_s -------------------------------------------------------------------------------- /data/qualitaet_s-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/qualitaet_s-orig -------------------------------------------------------------------------------- /data/radwege: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/radwege -------------------------------------------------------------------------------- /data/radwege-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/radwege-orig -------------------------------------------------------------------------------- /data/radwege_exact: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/radwege_exact -------------------------------------------------------------------------------- /data/rbahn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/rbahn -------------------------------------------------------------------------------- /data/rbahn-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/rbahn-orig -------------------------------------------------------------------------------- /data/rbahnhof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/rbahnhof -------------------------------------------------------------------------------- /data/rbahnhof-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/rbahnhof-orig -------------------------------------------------------------------------------- /data/sbahn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/sbahn -------------------------------------------------------------------------------- /data/sbahn-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/sbahn-orig -------------------------------------------------------------------------------- /data/sbahnhof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/sbahnhof -------------------------------------------------------------------------------- /data/sbahnhof-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/sbahnhof-orig -------------------------------------------------------------------------------- /data/sbahnhof_bg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/sbahnhof_bg -------------------------------------------------------------------------------- /data/sehenswuerdigkeit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/sehenswuerdigkeit -------------------------------------------------------------------------------- /data/str_cont_ausnahme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/str_cont_ausnahme -------------------------------------------------------------------------------- /data/strassen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/strassen -------------------------------------------------------------------------------- /data/strassen-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/strassen-orig -------------------------------------------------------------------------------- /data/strassen_bab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/strassen_bab -------------------------------------------------------------------------------- /data/strassen_bab-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/strassen_bab-orig -------------------------------------------------------------------------------- /data/temp_blockings/.gitignore: -------------------------------------------------------------------------------- 1 | /bbbike-temp-blockings.yml 2 | /*~ 3 | -------------------------------------------------------------------------------- /data/temp_blockings/20030907b.bbd: -------------------------------------------------------------------------------- 1 | 1 25579,5958 26080,5946 2 | -------------------------------------------------------------------------------- /data/temp_blockings/herzfelde.bbd: -------------------------------------------------------------------------------- 1 | q4 40862,8996 41318,8912 2 | -------------------------------------------------------------------------------- /data/temp_blockings/kranarbeiten.bbd: -------------------------------------------------------------------------------- 1 | 2 9615,11225 9653,10950 2 | -------------------------------------------------------------------------------- /data/temp_blockings/sophienstr.bbd: -------------------------------------------------------------------------------- 1 | 2 9986,13412 10321,13259 2 | -------------------------------------------------------------------------------- /data/ubahn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/ubahn -------------------------------------------------------------------------------- /data/ubahn-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/ubahn-orig -------------------------------------------------------------------------------- /data/ubahnhof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/ubahnhof -------------------------------------------------------------------------------- /data/ubahnhof-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/ubahnhof-orig -------------------------------------------------------------------------------- /data/ubahnhof_bg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/ubahnhof_bg -------------------------------------------------------------------------------- /data/umsteigebhf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/umsteigebhf -------------------------------------------------------------------------------- /data/vorfahrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/vorfahrt -------------------------------------------------------------------------------- /data/vorfahrt-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/vorfahrt-orig -------------------------------------------------------------------------------- /data/wasserstrassen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/wasserstrassen -------------------------------------------------------------------------------- /data/wasserumland: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/wasserumland -------------------------------------------------------------------------------- /data/wasserumland-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/wasserumland-orig -------------------------------------------------------------------------------- /data/wasserumland2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/wasserumland2 -------------------------------------------------------------------------------- /data/zebrastreifen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/data/zebrastreifen -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- 1 | /links.html 2 | -------------------------------------------------------------------------------- /doc/Makefile.doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/doc/Makefile.doc -------------------------------------------------------------------------------- /doc/README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/doc/README.html -------------------------------------------------------------------------------- /doc/TODO.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/doc/TODO.pod -------------------------------------------------------------------------------- /doc/authors.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/doc/authors.pod -------------------------------------------------------------------------------- /doc/bbbike.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/doc/bbbike.html -------------------------------------------------------------------------------- /doc/bbd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/doc/bbd.html -------------------------------------------------------------------------------- /doc/bbd.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/doc/bbd.pod -------------------------------------------------------------------------------- /doc/docbook5.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/doc/docbook5.css -------------------------------------------------------------------------------- /doc/edit_snippets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/doc/edit_snippets.txt -------------------------------------------------------------------------------- /doc/links.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/doc/links.pod -------------------------------------------------------------------------------- /doc/podindex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/doc/podindex.html -------------------------------------------------------------------------------- /doc/schemas.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/doc/schemas.xml -------------------------------------------------------------------------------- /doc/tests.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/doc/tests.pod -------------------------------------------------------------------------------- /doc/watchsites.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/doc/watchsites.org -------------------------------------------------------------------------------- /doc/why_not_osm.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/doc/why_not_osm.pod -------------------------------------------------------------------------------- /ext/BBBikeXS/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/ext/BBBikeXS/MANIFEST -------------------------------------------------------------------------------- /ext/BBBikeXS/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/ext/BBBikeXS/README -------------------------------------------------------------------------------- /ext/BBBikeXS/sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/ext/BBBikeXS/sqrt.c -------------------------------------------------------------------------------- /ext/BBBikeXS/sqrt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/ext/BBBikeXS/sqrt.h -------------------------------------------------------------------------------- /ext/BBBikeXS/t/base.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/ext/BBBikeXS/t/base.t -------------------------------------------------------------------------------- /ext/BBBikeXS/t/leak.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/ext/BBBikeXS/t/leak.t -------------------------------------------------------------------------------- /ext/BBBikeXS/t/utf8.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/ext/BBBikeXS/t/utf8.t -------------------------------------------------------------------------------- /ext/BBBikeXS/typemap: -------------------------------------------------------------------------------- 1 | StrassenNetz T_SV 2 | -------------------------------------------------------------------------------- /ext/DMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/ext/DMakefile -------------------------------------------------------------------------------- /ext/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/ext/Makefile -------------------------------------------------------------------------------- /ext/VirtArray/Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/ext/VirtArray/Changes -------------------------------------------------------------------------------- /ext/VirtArray/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/ext/VirtArray/MANIFEST -------------------------------------------------------------------------------- /ext/VirtArray/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/ext/VirtArray/README -------------------------------------------------------------------------------- /ext/VirtArray/typemap: -------------------------------------------------------------------------------- 1 | VirtArray T_PTROBJ 2 | -------------------------------------------------------------------------------- /ext/inline2dist.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/ext/inline2dist.pl -------------------------------------------------------------------------------- /gnome/BBBikeDoc.tmpl: -------------------------------------------------------------------------------- 1 | URL: file:%%DOCDIR%%/bbbike.html 2 | -------------------------------------------------------------------------------- /gnome/BBBikeWWW: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/gnome/BBBikeWWW -------------------------------------------------------------------------------- /gnome/bbbike.keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/gnome/bbbike.keys -------------------------------------------------------------------------------- /gnome/bbbike.mime: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/gnome/bbbike.mime -------------------------------------------------------------------------------- /html/.gitignore: -------------------------------------------------------------------------------- 1 | /bbbikeleaflet.en.html 2 | -------------------------------------------------------------------------------- /html/HTTPQuery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/html/HTTPQuery.js -------------------------------------------------------------------------------- /html/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/html/Makefile -------------------------------------------------------------------------------- /html/allstreet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/html/allstreet.html -------------------------------------------------------------------------------- /html/bbbike.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/html/bbbike.css -------------------------------------------------------------------------------- /html/bbbike_result.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/html/bbbike_result.js -------------------------------------------------------------------------------- /html/bbbike_small.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/html/bbbike_small.html -------------------------------------------------------------------------------- /html/bbbike_start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/html/bbbike_start.js -------------------------------------------------------------------------------- /html/bbbike_util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/html/bbbike_util.js -------------------------------------------------------------------------------- /html/bbbikeleaflet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/html/bbbikeleaflet.css -------------------------------------------------------------------------------- /html/bbbikeleaflet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/html/bbbikeleaflet.js -------------------------------------------------------------------------------- /html/bbbikepod.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/html/bbbikepod.css -------------------------------------------------------------------------------- /html/bbbikeprint.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/html/bbbikeprint.css -------------------------------------------------------------------------------- /html/empty.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /html/error404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/html/error404.html -------------------------------------------------------------------------------- /html/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/html/help.html -------------------------------------------------------------------------------- /html/json2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/html/json2.js -------------------------------------------------------------------------------- /html/json2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/html/json2.min.js -------------------------------------------------------------------------------- /html/legende.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/html/legende.html -------------------------------------------------------------------------------- /html/msapp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/html/msapp/Makefile -------------------------------------------------------------------------------- /html/pleasewait.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/html/pleasewait.html -------------------------------------------------------------------------------- /html/presse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/html/presse.html -------------------------------------------------------------------------------- /html/scrollarray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/html/scrollarray.js -------------------------------------------------------------------------------- /html/sprintf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/html/sprintf.js -------------------------------------------------------------------------------- /images/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/Makefile -------------------------------------------------------------------------------- /images/abc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/abc.gif -------------------------------------------------------------------------------- /images/abc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/abc.png -------------------------------------------------------------------------------- /images/abc.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/abc.xpm -------------------------------------------------------------------------------- /images/abc_hi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/abc_hi.gif -------------------------------------------------------------------------------- /images/abc_hi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/abc_hi.png -------------------------------------------------------------------------------- /images/abc_hi.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/abc_hi.xpm -------------------------------------------------------------------------------- /images/achtung.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/achtung.gif -------------------------------------------------------------------------------- /images/achtung.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/achtung.png -------------------------------------------------------------------------------- /images/achtung.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/achtung.xpm -------------------------------------------------------------------------------- /images/addnet_ptr.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/addnet_ptr.xbm -------------------------------------------------------------------------------- /images/airport.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/airport.gif -------------------------------------------------------------------------------- /images/airport.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/airport.xpm -------------------------------------------------------------------------------- /images/ampel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/ampel.gif -------------------------------------------------------------------------------- /images/ampel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/ampel.png -------------------------------------------------------------------------------- /images/ampel.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/ampel.xpm -------------------------------------------------------------------------------- /images/ampel_klein.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/ampel_klein.gif -------------------------------------------------------------------------------- /images/ampel_klein.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/ampel_klein.jpg -------------------------------------------------------------------------------- /images/ampel_klein.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/ampel_klein.png -------------------------------------------------------------------------------- /images/ampel_klein.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/ampel_klein.xpm -------------------------------------------------------------------------------- /images/ampelf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/ampelf.gif -------------------------------------------------------------------------------- /images/ampelf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/ampelf.png -------------------------------------------------------------------------------- /images/ampelf.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/ampelf.xpm -------------------------------------------------------------------------------- /images/andreaskr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/andreaskr.gif -------------------------------------------------------------------------------- /images/andreaskr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/andreaskr.png -------------------------------------------------------------------------------- /images/andreaskr.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/andreaskr.xpm -------------------------------------------------------------------------------- /images/apfel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/apfel.gif -------------------------------------------------------------------------------- /images/apfel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/apfel.png -------------------------------------------------------------------------------- /images/apfel.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/apfel.xpm -------------------------------------------------------------------------------- /images/aufzug.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/aufzug.gif -------------------------------------------------------------------------------- /images/aufzug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/aufzug.png -------------------------------------------------------------------------------- /images/aufzug.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/aufzug.xpm -------------------------------------------------------------------------------- /images/baum.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/baum.xbm -------------------------------------------------------------------------------- /images/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/bg.gif -------------------------------------------------------------------------------- /images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/bg.jpg -------------------------------------------------------------------------------- /images/bicycle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/bicycle.gif -------------------------------------------------------------------------------- /images/bicycle.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/bicycle.xpm -------------------------------------------------------------------------------- /images/birne.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/birne.gif -------------------------------------------------------------------------------- /images/birne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/birne.png -------------------------------------------------------------------------------- /images/birne.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/birne.xpm -------------------------------------------------------------------------------- /images/black_cross.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/black_cross.svg -------------------------------------------------------------------------------- /images/bluedot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/bluedot.png -------------------------------------------------------------------------------- /images/bomb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/bomb.png -------------------------------------------------------------------------------- /images/bw_hleft.wbmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/bw_hleft.wbmp -------------------------------------------------------------------------------- /images/bw_hright.wbmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/bw_hright.wbmp -------------------------------------------------------------------------------- /images/bw_left.wbmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/bw_left.wbmp -------------------------------------------------------------------------------- /images/bw_right.wbmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/bw_right.wbmp -------------------------------------------------------------------------------- /images/cal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/cal.gif -------------------------------------------------------------------------------- /images/cal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/cal.png -------------------------------------------------------------------------------- /images/cal.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/cal.xpm -------------------------------------------------------------------------------- /images/car.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/car.gif -------------------------------------------------------------------------------- /images/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/car.png -------------------------------------------------------------------------------- /images/car.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/car.xpm -------------------------------------------------------------------------------- /images/cemetery_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/cemetery_bg.gif -------------------------------------------------------------------------------- /images/cemetery_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/cemetery_bg.png -------------------------------------------------------------------------------- /images/cgi_legende.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/cgi_legende.gif -------------------------------------------------------------------------------- /images/cgi_legende.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/cgi_legende.xpm -------------------------------------------------------------------------------- /images/church.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/church.gif -------------------------------------------------------------------------------- /images/church.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/church.png -------------------------------------------------------------------------------- /images/church.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/church.xpm -------------------------------------------------------------------------------- /images/click.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/click.gif -------------------------------------------------------------------------------- /images/click.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/click.xpm -------------------------------------------------------------------------------- /images/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/clock.png -------------------------------------------------------------------------------- /images/cross.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/cross.gif -------------------------------------------------------------------------------- /images/cross.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/cross.xpm -------------------------------------------------------------------------------- /images/crosses.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/crosses.xbm -------------------------------------------------------------------------------- /images/de_flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/de_flag.png -------------------------------------------------------------------------------- /images/delete_ovl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/delete_ovl.gif -------------------------------------------------------------------------------- /images/dest.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/dest.gif -------------------------------------------------------------------------------- /images/dest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/dest.png -------------------------------------------------------------------------------- /images/dest_ptr.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/dest_ptr.xbm -------------------------------------------------------------------------------- /images/essen.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/essen.gif -------------------------------------------------------------------------------- /images/essen.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/essen.xpm -------------------------------------------------------------------------------- /images/exit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/exit.gif -------------------------------------------------------------------------------- /images/exit.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/exit.xpm -------------------------------------------------------------------------------- /images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/favicon.ico -------------------------------------------------------------------------------- /images/ferry.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/ferry.gif -------------------------------------------------------------------------------- /images/ferry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/ferry.png -------------------------------------------------------------------------------- /images/ferry.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/ferry.xpm -------------------------------------------------------------------------------- /images/flaechen.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/flaechen.gif -------------------------------------------------------------------------------- /images/flaechen.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/flaechen.xpm -------------------------------------------------------------------------------- /images/flag2_bl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/flag2_bl.gif -------------------------------------------------------------------------------- /images/flag2_bl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/flag2_bl.jpg -------------------------------------------------------------------------------- /images/flag2_bl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/flag2_bl.png -------------------------------------------------------------------------------- /images/flag2_bl.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/flag2_bl.xpm -------------------------------------------------------------------------------- /images/flag_via.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/flag_via.gif -------------------------------------------------------------------------------- /images/flag_via.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/flag_via.png -------------------------------------------------------------------------------- /images/flag_via.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/flag_via.xpm -------------------------------------------------------------------------------- /images/gb_flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/gb_flag.png -------------------------------------------------------------------------------- /images/gefaelle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/gefaelle.gif -------------------------------------------------------------------------------- /images/gefaelle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/gefaelle.png -------------------------------------------------------------------------------- /images/gefaelle.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/gefaelle.xpm -------------------------------------------------------------------------------- /images/glas.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/glas.gif -------------------------------------------------------------------------------- /images/glas.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/glas.xpm -------------------------------------------------------------------------------- /images/google.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/google.gif -------------------------------------------------------------------------------- /images/help.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/help.gif -------------------------------------------------------------------------------- /images/help.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/help.xpm -------------------------------------------------------------------------------- /images/hospital.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/hospital.gif -------------------------------------------------------------------------------- /images/hospital.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/hospital.png -------------------------------------------------------------------------------- /images/hospital.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/hospital.xpm -------------------------------------------------------------------------------- /images/hotel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/hotel.png -------------------------------------------------------------------------------- /images/info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/info.gif -------------------------------------------------------------------------------- /images/info.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/info.xpm -------------------------------------------------------------------------------- /images/info_ptr.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/info_ptr.xbm -------------------------------------------------------------------------------- /images/inwork.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/inwork.gif -------------------------------------------------------------------------------- /images/inwork.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/inwork.xpm -------------------------------------------------------------------------------- /images/kirsche.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/kirsche.gif -------------------------------------------------------------------------------- /images/kirsche.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/kirsche.png -------------------------------------------------------------------------------- /images/kirsche.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/kirsche.xpm -------------------------------------------------------------------------------- /images/koord.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/koord.gif -------------------------------------------------------------------------------- /images/koord.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/koord.xpm -------------------------------------------------------------------------------- /images/kreuzung.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/kreuzung.gif -------------------------------------------------------------------------------- /images/kreuzung.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/kreuzung.png -------------------------------------------------------------------------------- /images/kreuzung.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/kreuzung.xpm -------------------------------------------------------------------------------- /images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/loading.gif -------------------------------------------------------------------------------- /images/map.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/map.gif -------------------------------------------------------------------------------- /images/map.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/map.xpm -------------------------------------------------------------------------------- /images/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/mask.png -------------------------------------------------------------------------------- /images/monument.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/monument.gif -------------------------------------------------------------------------------- /images/monument.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/monument.png -------------------------------------------------------------------------------- /images/monument.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/monument.svg -------------------------------------------------------------------------------- /images/monument.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/monument.xpm -------------------------------------------------------------------------------- /images/mosque.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/mosque.gif -------------------------------------------------------------------------------- /images/mosque.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/mosque.png -------------------------------------------------------------------------------- /images/mosque.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/mosque.xpm -------------------------------------------------------------------------------- /images/movehand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/movehand.gif -------------------------------------------------------------------------------- /images/movehand.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/movehand.xpm -------------------------------------------------------------------------------- /images/moz_grab.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/moz_grab.gif -------------------------------------------------------------------------------- /images/museum.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/museum.gif -------------------------------------------------------------------------------- /images/museum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/museum.png -------------------------------------------------------------------------------- /images/museum.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/museum.xpm -------------------------------------------------------------------------------- /images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/music.png -------------------------------------------------------------------------------- /images/newlayer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/newlayer.gif -------------------------------------------------------------------------------- /images/newlayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/newlayer.png -------------------------------------------------------------------------------- /images/newlayer.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/newlayer.xpm -------------------------------------------------------------------------------- /images/night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/night.png -------------------------------------------------------------------------------- /images/open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/open.gif -------------------------------------------------------------------------------- /images/open.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/open.xpm -------------------------------------------------------------------------------- /images/open_ovl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/open_ovl.gif -------------------------------------------------------------------------------- /images/opt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/opt.gif -------------------------------------------------------------------------------- /images/opt.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/opt.xpm -------------------------------------------------------------------------------- /images/ort.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/ort.gif -------------------------------------------------------------------------------- /images/ort.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/ort.xpm -------------------------------------------------------------------------------- /images/pflaume.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/pflaume.gif -------------------------------------------------------------------------------- /images/pflaume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/pflaume.png -------------------------------------------------------------------------------- /images/pflaume.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/pflaume.xpm -------------------------------------------------------------------------------- /images/printer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/printer.gif -------------------------------------------------------------------------------- /images/printer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/printer.png -------------------------------------------------------------------------------- /images/printer.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/printer.xpm -------------------------------------------------------------------------------- /images/ptr.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/ptr.xbm -------------------------------------------------------------------------------- /images/px_1t.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/px_1t.gif -------------------------------------------------------------------------------- /images/rampe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/rampe.gif -------------------------------------------------------------------------------- /images/rampe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/rampe.png -------------------------------------------------------------------------------- /images/rampe.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/rampe.xpm -------------------------------------------------------------------------------- /images/rbahn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/rbahn.gif -------------------------------------------------------------------------------- /images/rbahn.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/rbahn.xpm -------------------------------------------------------------------------------- /images/redcross.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/redcross.gif -------------------------------------------------------------------------------- /images/redcross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/redcross.png -------------------------------------------------------------------------------- /images/redcross.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/redcross.xpm -------------------------------------------------------------------------------- /images/reddot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/reddot.gif -------------------------------------------------------------------------------- /images/reddot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/reddot.png -------------------------------------------------------------------------------- /images/ropeway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/ropeway.png -------------------------------------------------------------------------------- /images/ropeway.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/ropeway.svg -------------------------------------------------------------------------------- /images/rueckweg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/rueckweg.gif -------------------------------------------------------------------------------- /images/rueckweg.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/rueckweg.xpm -------------------------------------------------------------------------------- /images/salesman.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/salesman.gif -------------------------------------------------------------------------------- /images/salesman.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/salesman.xpm -------------------------------------------------------------------------------- /images/save.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/save.gif -------------------------------------------------------------------------------- /images/save.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/save.xpm -------------------------------------------------------------------------------- /images/sbahn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/sbahn.gif -------------------------------------------------------------------------------- /images/sbahn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/sbahn.jpg -------------------------------------------------------------------------------- /images/sbahn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/sbahn.png -------------------------------------------------------------------------------- /images/sbahn.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/sbahn.xpm -------------------------------------------------------------------------------- /images/search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/search.gif -------------------------------------------------------------------------------- /images/search.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/search.xpm -------------------------------------------------------------------------------- /images/shop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/shop.png -------------------------------------------------------------------------------- /images/srtbike.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/srtbike.gif -------------------------------------------------------------------------------- /images/srtbike.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/srtbike.ico -------------------------------------------------------------------------------- /images/srtbike.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/srtbike.jpg -------------------------------------------------------------------------------- /images/srtbike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/srtbike.png -------------------------------------------------------------------------------- /images/srtbike.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/srtbike.xbm -------------------------------------------------------------------------------- /images/srtbike.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/srtbike.xpm -------------------------------------------------------------------------------- /images/srtbike1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/srtbike1.ico -------------------------------------------------------------------------------- /images/star.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/star.gif -------------------------------------------------------------------------------- /images/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/star.png -------------------------------------------------------------------------------- /images/star.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/star.xpm -------------------------------------------------------------------------------- /images/start.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/start.gif -------------------------------------------------------------------------------- /images/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/start.png -------------------------------------------------------------------------------- /images/start.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/start.xpm -------------------------------------------------------------------------------- /images/steigung.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/steigung.gif -------------------------------------------------------------------------------- /images/steigung.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/steigung.png -------------------------------------------------------------------------------- /images/steigung.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/steigung.xpm -------------------------------------------------------------------------------- /images/stip.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/stip.xbm -------------------------------------------------------------------------------- /images/stiplite.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/stiplite.xbm -------------------------------------------------------------------------------- /images/strasse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/strasse.gif -------------------------------------------------------------------------------- /images/strasse.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/strasse.xpm -------------------------------------------------------------------------------- /images/strlist.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/strlist.gif -------------------------------------------------------------------------------- /images/strlist.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/strlist.xpm -------------------------------------------------------------------------------- /images/theater.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/theater.gif -------------------------------------------------------------------------------- /images/theater.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/theater.png -------------------------------------------------------------------------------- /images/theater.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/theater.xpm -------------------------------------------------------------------------------- /images/ubahn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/ubahn.gif -------------------------------------------------------------------------------- /images/ubahn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/ubahn.jpg -------------------------------------------------------------------------------- /images/ubahn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/ubahn.png -------------------------------------------------------------------------------- /images/ubahn.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/ubahn.xpm -------------------------------------------------------------------------------- /images/via.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/via.gif -------------------------------------------------------------------------------- /images/via.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/via.png -------------------------------------------------------------------------------- /images/via.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/via.xpm -------------------------------------------------------------------------------- /images/viewmag+.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/viewmag+.gif -------------------------------------------------------------------------------- /images/viewmag+.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/viewmag+.xpm -------------------------------------------------------------------------------- /images/viewmag-.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/viewmag-.gif -------------------------------------------------------------------------------- /images/viewmag-.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/viewmag-.xpm -------------------------------------------------------------------------------- /images/vorfahrt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/vorfahrt.gif -------------------------------------------------------------------------------- /images/vorfahrt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/vorfahrt.png -------------------------------------------------------------------------------- /images/vorfahrt.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/vorfahrt.xpm -------------------------------------------------------------------------------- /images/wasser.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/wasser.gif -------------------------------------------------------------------------------- /images/wasser.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/wasser.xpm -------------------------------------------------------------------------------- /images/windrose.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/windrose.gif -------------------------------------------------------------------------------- /images/windrose.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/windrose.xpm -------------------------------------------------------------------------------- /images/www_ptr.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/www_ptr.xbm -------------------------------------------------------------------------------- /images/xmas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/xmas.png -------------------------------------------------------------------------------- /images/xy_ptr.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/xy_ptr.xbm -------------------------------------------------------------------------------- /images/ziel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/ziel.gif -------------------------------------------------------------------------------- /images/ziel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/ziel.png -------------------------------------------------------------------------------- /images/ziel.xpm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/ziel.xpm -------------------------------------------------------------------------------- /images/ziel_ptr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/ziel_ptr.png -------------------------------------------------------------------------------- /images/ziel_ptr.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/images/ziel_ptr.xbm -------------------------------------------------------------------------------- /install.bat: -------------------------------------------------------------------------------- 1 | perl install.pl 2 | -------------------------------------------------------------------------------- /install.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/install.pl -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/install.sh -------------------------------------------------------------------------------- /java/.gitignore: -------------------------------------------------------------------------------- 1 | /*.class 2 | -------------------------------------------------------------------------------- /java/BBBike.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/java/BBBike.java -------------------------------------------------------------------------------- /java/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/java/Makefile -------------------------------------------------------------------------------- /java/Manifest.txt: -------------------------------------------------------------------------------- 1 | Main-Class: BBBike 2 | -------------------------------------------------------------------------------- /java/MyCanvas.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/java/MyCanvas.java -------------------------------------------------------------------------------- /java/Point.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/java/Point.java -------------------------------------------------------------------------------- /java/QSort.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/java/QSort.java -------------------------------------------------------------------------------- /java/Strasse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/java/Strasse.java -------------------------------------------------------------------------------- /java/Strassen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/java/Strassen.java -------------------------------------------------------------------------------- /java/Test.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/java/Test.java -------------------------------------------------------------------------------- /kde/bbbike.menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/kde/bbbike.menu -------------------------------------------------------------------------------- /lib/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/lib/.gitignore -------------------------------------------------------------------------------- /lib/B/FindMsg.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/lib/B/FindMsg.pm -------------------------------------------------------------------------------- /lib/BikePower.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/lib/BikePower.pm -------------------------------------------------------------------------------- /lib/BikePower/Tk.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/lib/BikePower/Tk.pm -------------------------------------------------------------------------------- /lib/BrowserInfo.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/lib/BrowserInfo.pm -------------------------------------------------------------------------------- /lib/Doit.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/lib/Doit.pm -------------------------------------------------------------------------------- /lib/Doit/Brew.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/lib/Doit/Brew.pm -------------------------------------------------------------------------------- /lib/Doit/File.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/lib/Doit/File.pm -------------------------------------------------------------------------------- /lib/Doit/Git.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/lib/Doit/Git.pm -------------------------------------------------------------------------------- /lib/Doit/Lwp.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/lib/Doit/Lwp.pm -------------------------------------------------------------------------------- /lib/GD/Convert.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/lib/GD/Convert.pm -------------------------------------------------------------------------------- /lib/Http.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/lib/Http.pm -------------------------------------------------------------------------------- /lib/KDEUtil.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/lib/KDEUtil.pm -------------------------------------------------------------------------------- /lib/MacOSXUtil.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/lib/MacOSXUtil.pm -------------------------------------------------------------------------------- /lib/Met/Wind.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/lib/Met/Wind.pm -------------------------------------------------------------------------------- /lib/Msg.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/lib/Msg.pm -------------------------------------------------------------------------------- /lib/MyFile.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/lib/MyFile.pm -------------------------------------------------------------------------------- /lib/Tk/Arrow.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/lib/Tk/Arrow.pm -------------------------------------------------------------------------------- /lib/Tk/BreakMenu.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/lib/Tk/BreakMenu.pm -------------------------------------------------------------------------------- /lib/Tk/CanvasExt.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/lib/Tk/CanvasExt.pm -------------------------------------------------------------------------------- /lib/Tk/CanvasFig.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/lib/Tk/CanvasFig.pm -------------------------------------------------------------------------------- /lib/Tk/Countdown.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/lib/Tk/Countdown.pm -------------------------------------------------------------------------------- /lib/Tk/Enscript.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/lib/Tk/Enscript.pm -------------------------------------------------------------------------------- /lib/Tk/Getopt.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/lib/Tk/Getopt.pm -------------------------------------------------------------------------------- /lib/Tk/K2Listbox.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/lib/Tk/K2Listbox.pm -------------------------------------------------------------------------------- /lib/Tk/KListbox.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/lib/Tk/KListbox.pm -------------------------------------------------------------------------------- /lib/Tk/Kbd.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/lib/Tk/Kbd.pm -------------------------------------------------------------------------------- /lib/Tk/LogScale.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/lib/Tk/LogScale.pm -------------------------------------------------------------------------------- /lib/Tk/PathEntry.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/lib/Tk/PathEntry.pm -------------------------------------------------------------------------------- /lib/Tk/Placement.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/lib/Tk/Placement.pm -------------------------------------------------------------------------------- /lib/Tk/RotFont.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/lib/Tk/RotFont.pm -------------------------------------------------------------------------------- /lib/Tk/Ruler.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/lib/Tk/Ruler.pm -------------------------------------------------------------------------------- /lib/Tk/Splash.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/lib/Tk/Splash.pm -------------------------------------------------------------------------------- /lib/Tk/WListbox.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/lib/Tk/WListbox.pm -------------------------------------------------------------------------------- /lib/Tk/XVkbd-german: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/lib/Tk/XVkbd-german -------------------------------------------------------------------------------- /lib/Tk/enscript.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/lib/Tk/enscript.cfg -------------------------------------------------------------------------------- /lib/Tk/grid000.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/lib/Tk/grid000.xbm -------------------------------------------------------------------------------- /lib/Tk/grid045.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/lib/Tk/grid045.xbm -------------------------------------------------------------------------------- /lib/Tk/grid090.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/lib/Tk/grid090.xbm -------------------------------------------------------------------------------- /lib/Tk/grid135.xbm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/lib/Tk/grid135.xbm -------------------------------------------------------------------------------- /lib/Tk/layereye.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/lib/Tk/layereye.gif -------------------------------------------------------------------------------- /lib/TkChange.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/lib/TkChange.pm -------------------------------------------------------------------------------- /lib/TkCompat.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/lib/TkCompat.pm -------------------------------------------------------------------------------- /lib/UnixUtil.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/lib/UnixUtil.pm -------------------------------------------------------------------------------- /lib/VectorUtil.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/lib/VectorUtil.pm -------------------------------------------------------------------------------- /lib/WWWBrowser.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/lib/WWWBrowser.pm -------------------------------------------------------------------------------- /lib/Waitproc.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/lib/Waitproc.pm -------------------------------------------------------------------------------- /lib/Win32Util.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/lib/Win32Util.pm -------------------------------------------------------------------------------- /lib/WinCompat.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/lib/WinCompat.pm -------------------------------------------------------------------------------- /lib/click.au: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/lib/click.au -------------------------------------------------------------------------------- /lib/click.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/lib/click.wav -------------------------------------------------------------------------------- /lib/enum.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/lib/enum.pm -------------------------------------------------------------------------------- /lib/findmsg.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/lib/findmsg.pl -------------------------------------------------------------------------------- /lib/savevars.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/lib/savevars.pm -------------------------------------------------------------------------------- /lib/wettermeldung2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/lib/wettermeldung2 -------------------------------------------------------------------------------- /lib/your.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/lib/your.pm -------------------------------------------------------------------------------- /misc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/misc/.gitignore -------------------------------------------------------------------------------- /misc/BASE: -------------------------------------------------------------------------------- 1 | ampelschaltung-orig.txt H 2 | -------------------------------------------------------------------------------- /misc/GNUmakefile: -------------------------------------------------------------------------------- 1 | ../data/GNUmakefile -------------------------------------------------------------------------------- /misc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/misc/Makefile -------------------------------------------------------------------------------- /misc/SlayMakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/misc/SlayMakefile -------------------------------------------------------------------------------- /misc/abdeckung.bbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/misc/abdeckung.bbd -------------------------------------------------------------------------------- /misc/abdeckung2.bbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/misc/abdeckung2.bbd -------------------------------------------------------------------------------- /misc/bbd.kwalify: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/misc/bbd.kwalify -------------------------------------------------------------------------------- /misc/garmin_userdef_symbols/.gitignore: -------------------------------------------------------------------------------- 1 | /bike2015 2 | -------------------------------------------------------------------------------- /misc/gpx.rnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/misc/gpx.rnc -------------------------------------------------------------------------------- /misc/gpx.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/misc/gpx.xsd -------------------------------------------------------------------------------- /misc/gpx10.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/misc/gpx10.xsd -------------------------------------------------------------------------------- /misc/kml21.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/misc/kml21.xsd -------------------------------------------------------------------------------- /misc/mkgmap/srt-style/version: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /misc/ttqv2gpx.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/misc/ttqv2gpx.xsl -------------------------------------------------------------------------------- /misc/webcams.bbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/misc/webcams.bbd -------------------------------------------------------------------------------- /misc/weblinks.bbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/misc/weblinks.bbd -------------------------------------------------------------------------------- /miscsrc/Cov.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/miscsrc/Cov.pm -------------------------------------------------------------------------------- /miscsrc/DistDB.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/miscsrc/DistDB.pm -------------------------------------------------------------------------------- /miscsrc/QtQrc.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/miscsrc/QtQrc.pm -------------------------------------------------------------------------------- /miscsrc/VMZTool.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/miscsrc/VMZTool.pm -------------------------------------------------------------------------------- /miscsrc/any2bbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/miscsrc/any2bbd -------------------------------------------------------------------------------- /miscsrc/any2gpsman: -------------------------------------------------------------------------------- 1 | gpx2gpsman -------------------------------------------------------------------------------- /miscsrc/b2dmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/miscsrc/b2dmake -------------------------------------------------------------------------------- /miscsrc/b2gmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/miscsrc/b2gmake -------------------------------------------------------------------------------- /miscsrc/bbbike-grep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/miscsrc/bbbike-grep -------------------------------------------------------------------------------- /miscsrc/bbbike.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/miscsrc/bbbike.el -------------------------------------------------------------------------------- /miscsrc/bbd2esri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/miscsrc/bbd2esri -------------------------------------------------------------------------------- /miscsrc/bbd2geojson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/miscsrc/bbd2geojson -------------------------------------------------------------------------------- /miscsrc/bbd2gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/miscsrc/bbd2gpx -------------------------------------------------------------------------------- /miscsrc/bbd2kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/miscsrc/bbd2kml -------------------------------------------------------------------------------- /miscsrc/bbd2osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/miscsrc/bbd2osm -------------------------------------------------------------------------------- /miscsrc/bbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/miscsrc/bbr -------------------------------------------------------------------------------- /miscsrc/bbr2bbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/miscsrc/bbr2bbd -------------------------------------------------------------------------------- /miscsrc/bbrcat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/miscsrc/bbrcat -------------------------------------------------------------------------------- /miscsrc/cat_streets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/miscsrc/cat_streets -------------------------------------------------------------------------------- /miscsrc/check_bbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/miscsrc/check_bbd -------------------------------------------------------------------------------- /miscsrc/check_cont: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/miscsrc/check_cont -------------------------------------------------------------------------------- /miscsrc/check_count: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/miscsrc/check_count -------------------------------------------------------------------------------- /miscsrc/check_dates: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/miscsrc/check_dates -------------------------------------------------------------------------------- /miscsrc/combineosm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/miscsrc/combineosm -------------------------------------------------------------------------------- /miscsrc/cvsdiffbbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/miscsrc/cvsdiffbbd -------------------------------------------------------------------------------- /miscsrc/dcwtobbd.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/miscsrc/dcwtobbd.pl -------------------------------------------------------------------------------- /miscsrc/diffbbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/miscsrc/diffbbd -------------------------------------------------------------------------------- /miscsrc/downloadosm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/miscsrc/downloadosm -------------------------------------------------------------------------------- /miscsrc/exif2gpsman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/miscsrc/exif2gpsman -------------------------------------------------------------------------------- /miscsrc/gpsman2gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/miscsrc/gpsman2gpx -------------------------------------------------------------------------------- /miscsrc/gpx2bbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/miscsrc/gpx2bbd -------------------------------------------------------------------------------- /miscsrc/gpx2gpsman: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/miscsrc/gpx2gpsman -------------------------------------------------------------------------------- /miscsrc/gpx2gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/miscsrc/gpx2gpx -------------------------------------------------------------------------------- /miscsrc/grep_osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/miscsrc/grep_osm -------------------------------------------------------------------------------- /miscsrc/iterate_bbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/miscsrc/iterate_bbd -------------------------------------------------------------------------------- /miscsrc/move_coords: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/miscsrc/move_coords -------------------------------------------------------------------------------- /miscsrc/oldname2plz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/miscsrc/oldname2plz -------------------------------------------------------------------------------- /miscsrc/org2bbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/miscsrc/org2bbd -------------------------------------------------------------------------------- /miscsrc/osm2bbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/miscsrc/osm2bbd -------------------------------------------------------------------------------- /miscsrc/osmelem2bbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/miscsrc/osmelem2bbd -------------------------------------------------------------------------------- /miscsrc/osmhistory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/miscsrc/osmhistory -------------------------------------------------------------------------------- /miscsrc/osmrel2gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/miscsrc/osmrel2gpx -------------------------------------------------------------------------------- /miscsrc/show_fonts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/miscsrc/show_fonts -------------------------------------------------------------------------------- /miscsrc/sortbycat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/miscsrc/sortbycat -------------------------------------------------------------------------------- /miscsrc/str_stat.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/miscsrc/str_stat.pl -------------------------------------------------------------------------------- /miscsrc/tilemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/miscsrc/tilemap -------------------------------------------------------------------------------- /miscsrc/trkstats.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/miscsrc/trkstats.pl -------------------------------------------------------------------------------- /miscsrc/ttdump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/miscsrc/ttdump -------------------------------------------------------------------------------- /miscsrc/weight_bbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/miscsrc/weight_bbd -------------------------------------------------------------------------------- /miscsrc/yaml2bbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/miscsrc/yaml2bbd -------------------------------------------------------------------------------- /msg/bbbike/en: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/msg/bbbike/en -------------------------------------------------------------------------------- /msg/install/en: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/msg/install/en -------------------------------------------------------------------------------- /plugins/BBBikeFloodSearchPlugin.pm: -------------------------------------------------------------------------------- 1 | ../miscsrc/flood_search.pl -------------------------------------------------------------------------------- /plugins/MultiMap.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/plugins/MultiMap.pm -------------------------------------------------------------------------------- /port/MetaPort.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/port/MetaPort.pm -------------------------------------------------------------------------------- /port/ci/travis-functions.sh: -------------------------------------------------------------------------------- 1 | ci-functions.sh -------------------------------------------------------------------------------- /port/debian/compat: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /port/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/port/debian/control -------------------------------------------------------------------------------- /port/debian/docs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/port/debian/docs -------------------------------------------------------------------------------- /port/debian/menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/port/debian/menu -------------------------------------------------------------------------------- /port/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/port/debian/rules -------------------------------------------------------------------------------- /port/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /port/ipk/mkipk.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/port/ipk/mkipk.pl -------------------------------------------------------------------------------- /port/old-debian/compat: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /port/rpm/.gitignore: -------------------------------------------------------------------------------- 1 | /.rpm.release 2 | -------------------------------------------------------------------------------- /port/rpm/mkrpm.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/port/rpm/mkrpm.pl -------------------------------------------------------------------------------- /port/travis-ci: -------------------------------------------------------------------------------- 1 | ci -------------------------------------------------------------------------------- /projects/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/projects/.gitignore -------------------------------------------------------------------------------- /projects/bbbike.de-hosteurope/etc/mapserver-brb-brb.map-localinc-jessie: -------------------------------------------------------------------------------- 1 | [% -%] 2 | -------------------------------------------------------------------------------- /smsbbbike: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/smsbbbike -------------------------------------------------------------------------------- /t/.gitignore: -------------------------------------------------------------------------------- 1 | /tmp/ -------------------------------------------------------------------------------- /t/BBBikeGUITest.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/BBBikeGUITest.pm -------------------------------------------------------------------------------- /t/BBBikeTest.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/BBBikeTest.pm -------------------------------------------------------------------------------- /t/JSTest.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/JSTest.pm -------------------------------------------------------------------------------- /t/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/Makefile -------------------------------------------------------------------------------- /t/abbiegen.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/abbiegen.t -------------------------------------------------------------------------------- /t/any2bbd.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/any2bbd.t -------------------------------------------------------------------------------- /t/basic.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/basic.t -------------------------------------------------------------------------------- /t/bbbike-aux.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/bbbike-aux.t -------------------------------------------------------------------------------- /t/bbbikebuildutil.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/bbbikebuildutil.t -------------------------------------------------------------------------------- /t/bbbikecalc.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/bbbikecalc.t -------------------------------------------------------------------------------- /t/bbbikecgiapi.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/bbbikecgiapi.t -------------------------------------------------------------------------------- /t/bbbikecgicache.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/bbbikecgicache.t -------------------------------------------------------------------------------- /t/bbbikecgiconfig.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/bbbikecgiconfig.t -------------------------------------------------------------------------------- /t/bbbikecgiutil.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/bbbikecgiutil.t -------------------------------------------------------------------------------- /t/bbbikedraw-loop.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/bbbikedraw-loop.t -------------------------------------------------------------------------------- /t/bbbikedraw.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/bbbikedraw.t -------------------------------------------------------------------------------- /t/bbbikegeojson.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/bbbikegeojson.t -------------------------------------------------------------------------------- /t/bbbikegooglemap.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/bbbikegooglemap.t -------------------------------------------------------------------------------- /t/bbbikeguiupdate.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/bbbikeguiupdate.t -------------------------------------------------------------------------------- /t/bbbikemail.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/bbbikemail.t -------------------------------------------------------------------------------- /t/bbbikeprocutil.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/bbbikeprocutil.t -------------------------------------------------------------------------------- /t/bbbikerouting.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/bbbikerouting.t -------------------------------------------------------------------------------- /t/bbbikesuggest.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/bbbikesuggest.t -------------------------------------------------------------------------------- /t/bbbiketest.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/bbbiketest.t -------------------------------------------------------------------------------- /t/bbbikeutil.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/bbbikeutil.t -------------------------------------------------------------------------------- /t/bbbikevar.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/bbbikevar.t -------------------------------------------------------------------------------- /t/bbd_splitlines.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/bbd_splitlines.t -------------------------------------------------------------------------------- /t/browserinfo.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/browserinfo.t -------------------------------------------------------------------------------- /t/cgi-cookie.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/cgi-cookie.t -------------------------------------------------------------------------------- /t/cgi-cors.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/cgi-cors.t -------------------------------------------------------------------------------- /t/cgi-download.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/cgi-download.t -------------------------------------------------------------------------------- /t/cgi-leaflet.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/cgi-leaflet.t -------------------------------------------------------------------------------- /t/cgi-masstest.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/cgi-masstest.pl -------------------------------------------------------------------------------- /t/cgi-mechanize.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/cgi-mechanize.t -------------------------------------------------------------------------------- /t/cgi-qrcode.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/cgi-qrcode.t -------------------------------------------------------------------------------- /t/cgi-test.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/cgi-test.t -------------------------------------------------------------------------------- /t/cgi-validator.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/cgi-validator.t -------------------------------------------------------------------------------- /t/cgi.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/cgi.t -------------------------------------------------------------------------------- /t/cgi2.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/cgi2.pl -------------------------------------------------------------------------------- /t/cgihead.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/cgihead.t -------------------------------------------------------------------------------- /t/cgihead2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/cgihead2.t -------------------------------------------------------------------------------- /t/cgiinfo.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/cgiinfo.cgi -------------------------------------------------------------------------------- /t/cmdbbbike.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/cmdbbbike.t -------------------------------------------------------------------------------- /t/cvsdiffbbd.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/cvsdiffbbd.t -------------------------------------------------------------------------------- /t/data-test/ampeln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/data-test/ampeln -------------------------------------------------------------------------------- /t/data-test/faehren: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/data-test/faehren -------------------------------------------------------------------------------- /t/data-test/hoehe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/data-test/hoehe -------------------------------------------------------------------------------- /t/dataset.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/dataset.t -------------------------------------------------------------------------------- /t/downloadosm.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/downloadosm.t -------------------------------------------------------------------------------- /t/dwd-soil-update.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/dwd-soil-update.t -------------------------------------------------------------------------------- /t/emacs.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/emacs.t -------------------------------------------------------------------------------- /t/exif2gpsman.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/exif2gpsman.t -------------------------------------------------------------------------------- /t/geocode_images.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/geocode_images.t -------------------------------------------------------------------------------- /t/geocoder-addr.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/geocoder-addr.t -------------------------------------------------------------------------------- /t/geography.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/geography.t -------------------------------------------------------------------------------- /t/gfxlogfile.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/gfxlogfile.t -------------------------------------------------------------------------------- /t/gps-gpsmandata.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/gps-gpsmandata.t -------------------------------------------------------------------------------- /t/gps-kml.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/gps-kml.t -------------------------------------------------------------------------------- /t/gpsbabel.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/gpsbabel.t -------------------------------------------------------------------------------- /t/gpx2gpx.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/gpx2gpx.t -------------------------------------------------------------------------------- /t/grepstrassen.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/grepstrassen.t -------------------------------------------------------------------------------- /t/images.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/images.t -------------------------------------------------------------------------------- /t/insert_points.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/insert_points.t -------------------------------------------------------------------------------- /t/install.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/install.t -------------------------------------------------------------------------------- /t/js_strict.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/js_strict.t -------------------------------------------------------------------------------- /t/karte_etrs89.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/karte_etrs89.t -------------------------------------------------------------------------------- /t/karte_utm.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/karte_utm.t -------------------------------------------------------------------------------- /t/kdeutil.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/kdeutil.t -------------------------------------------------------------------------------- /t/leaflet-static.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/leaflet-static.t -------------------------------------------------------------------------------- /t/lectrotest.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/lectrotest.t -------------------------------------------------------------------------------- /t/liveserver.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/liveserver.t -------------------------------------------------------------------------------- /t/locate.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/locate.t -------------------------------------------------------------------------------- /t/m-bbbike-de.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/m-bbbike-de.t -------------------------------------------------------------------------------- /t/makenet-bench.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/makenet-bench.pl -------------------------------------------------------------------------------- /t/mapserver-util.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/mapserver-util.t -------------------------------------------------------------------------------- /t/mapserver.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/mapserver.t -------------------------------------------------------------------------------- /t/met-wind.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/met-wind.t -------------------------------------------------------------------------------- /t/miscsrc.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/miscsrc.t -------------------------------------------------------------------------------- /t/myclassstruct.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/myclassstruct.t -------------------------------------------------------------------------------- /t/new_comments.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/new_comments.t -------------------------------------------------------------------------------- /t/old_comments.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/old_comments.t -------------------------------------------------------------------------------- /t/org2bbd.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/org2bbd.t -------------------------------------------------------------------------------- /t/osm2bbd.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/osm2bbd.t -------------------------------------------------------------------------------- /t/osmrel2gpx.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/osmrel2gpx.t -------------------------------------------------------------------------------- /t/ovl.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/ovl.t -------------------------------------------------------------------------------- /t/plz-expected/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/plz-expected/1 -------------------------------------------------------------------------------- /t/plz-expected/10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/plz-expected/10 -------------------------------------------------------------------------------- /t/plz-expected/11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/plz-expected/11 -------------------------------------------------------------------------------- /t/plz-expected/12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/plz-expected/12 -------------------------------------------------------------------------------- /t/plz-expected/2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/plz-expected/2 -------------------------------------------------------------------------------- /t/plz-expected/3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/plz-expected/3 -------------------------------------------------------------------------------- /t/plz-expected/4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/plz-expected/4 -------------------------------------------------------------------------------- /t/plz-expected/5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/plz-expected/5 -------------------------------------------------------------------------------- /t/plz-expected/6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/plz-expected/6 -------------------------------------------------------------------------------- /t/plz-expected/7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/plz-expected/7 -------------------------------------------------------------------------------- /t/plz-expected/8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/plz-expected/8 -------------------------------------------------------------------------------- /t/plz-expected/9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/plz-expected/9 -------------------------------------------------------------------------------- /t/plz.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/plz.t -------------------------------------------------------------------------------- /t/plz2.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/plz2.t -------------------------------------------------------------------------------- /t/plzext.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/plzext.t -------------------------------------------------------------------------------- /t/plzlogfile.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/plzlogfile.t -------------------------------------------------------------------------------- /t/plzresult.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/plzresult.t -------------------------------------------------------------------------------- /t/plzstreets.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/plzstreets.t -------------------------------------------------------------------------------- /t/pod.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/pod.t -------------------------------------------------------------------------------- /t/radrouten.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/radrouten.t -------------------------------------------------------------------------------- /t/route-descr.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/route-descr.t -------------------------------------------------------------------------------- /t/route-gple.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/route-gple.t -------------------------------------------------------------------------------- /t/route-heavy.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/route-heavy.t -------------------------------------------------------------------------------- /t/route-pdf-cairo.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/route-pdf-cairo.t -------------------------------------------------------------------------------- /t/route-pdf.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/route-pdf.t -------------------------------------------------------------------------------- /t/route.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/route.t -------------------------------------------------------------------------------- /t/scrollarray_js.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/scrollarray_js.t -------------------------------------------------------------------------------- /t/server-check.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/server-check.t -------------------------------------------------------------------------------- /t/smoothshow.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/smoothshow.t -------------------------------------------------------------------------------- /t/sprintf_js.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/sprintf_js.t -------------------------------------------------------------------------------- /t/strasse.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/strasse.t -------------------------------------------------------------------------------- /t/strassen-agrep.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/strassen-agrep.t -------------------------------------------------------------------------------- /t/strassen-bench.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/strassen-bench.pl -------------------------------------------------------------------------------- /t/strassen-build.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/strassen-build.t -------------------------------------------------------------------------------- /t/strassen-dbfile.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/strassen-dbfile.t -------------------------------------------------------------------------------- /t/strassen-edit.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/strassen-edit.t -------------------------------------------------------------------------------- /t/strassen-gpsman.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/strassen-gpsman.t -------------------------------------------------------------------------------- /t/strassen-gpx.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/strassen-gpx.t -------------------------------------------------------------------------------- /t/strassen-grid.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/strassen-grid.t -------------------------------------------------------------------------------- /t/strassen-index.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/strassen-index.t -------------------------------------------------------------------------------- /t/strassen-kml.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/strassen-kml.t -------------------------------------------------------------------------------- /t/strassen-lazy.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/strassen-lazy.t -------------------------------------------------------------------------------- /t/strassen-lookup.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/strassen-lookup.t -------------------------------------------------------------------------------- /t/strassen-sort.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/strassen-sort.t -------------------------------------------------------------------------------- /t/strassen-stream.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/strassen-stream.t -------------------------------------------------------------------------------- /t/strassen-tie.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/strassen-tie.t -------------------------------------------------------------------------------- /t/strassen-util.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/strassen-util.t -------------------------------------------------------------------------------- /t/strassen.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/strassen.t -------------------------------------------------------------------------------- /t/strassennetz.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/strassennetz.t -------------------------------------------------------------------------------- /t/time-zone-by4d.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/time-zone-by4d.t -------------------------------------------------------------------------------- /t/tk-geometry.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/tk-geometry.t -------------------------------------------------------------------------------- /t/tmp/.keep_me: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /t/typ2legend-xpm.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/typ2legend-xpm.t -------------------------------------------------------------------------------- /t/typ2legend.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/typ2legend.t -------------------------------------------------------------------------------- /t/update.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/update.t -------------------------------------------------------------------------------- /t/url_checker.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/url_checker.t -------------------------------------------------------------------------------- /t/vectorutil.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/vectorutil.t -------------------------------------------------------------------------------- /t/version-checks.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/version-checks.t -------------------------------------------------------------------------------- /t/wapcgi.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/wapcgi.t -------------------------------------------------------------------------------- /t/way.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/way.t -------------------------------------------------------------------------------- /t/wwwdata.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/t/wwwdata.t -------------------------------------------------------------------------------- /tcl/bbbike.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/tcl/bbbike.tcl -------------------------------------------------------------------------------- /tcl/strassen.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/tcl/strassen.tcl -------------------------------------------------------------------------------- /tkbikepwr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/HEAD/tkbikepwr -------------------------------------------------------------------------------- /tmp/.keep_me: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tmp/www/.keep_me: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------