├── .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 ├── Deinplan.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 ├── 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-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 ├── 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_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-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 ├── parse_bundle.pl ├── 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 │ ├── 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 ├── 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 /Ampelschaltung.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/Ampelschaltung.pm -------------------------------------------------------------------------------- /BBBikeAdvanced.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/BBBikeAdvanced.pm -------------------------------------------------------------------------------- /BBBikeAlarm.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/BBBikeAlarm.pm -------------------------------------------------------------------------------- /BBBikeCGI/API.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/BBBikeCGI/API.pm -------------------------------------------------------------------------------- /BBBikeCGI/Util.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/BBBikeCGI/Util.pm -------------------------------------------------------------------------------- /BBBikeCalc.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/BBBikeCalc.pm -------------------------------------------------------------------------------- /BBBikeCrosshairs.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/BBBikeCrosshairs.pm -------------------------------------------------------------------------------- /BBBikeDraw.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/BBBikeDraw.pm -------------------------------------------------------------------------------- /BBBikeDraw/GD.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/BBBikeDraw/GD.pm -------------------------------------------------------------------------------- /BBBikeDraw/GDHeavy.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/BBBikeDraw/GDHeavy.pm -------------------------------------------------------------------------------- /BBBikeDraw/ImageMagick.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/BBBikeDraw/ImageMagick.pm -------------------------------------------------------------------------------- /BBBikeDraw/ImageMap.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/BBBikeDraw/ImageMap.pm -------------------------------------------------------------------------------- /BBBikeDraw/Imager.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/BBBikeDraw/Imager.pm -------------------------------------------------------------------------------- /BBBikeDraw/MapServer.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/BBBikeDraw/MapServer.pm -------------------------------------------------------------------------------- /BBBikeDraw/PDF.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/BBBikeDraw/PDF.pm -------------------------------------------------------------------------------- /BBBikeDraw/PDFCairo.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/BBBikeDraw/PDFCairo.pm -------------------------------------------------------------------------------- /BBBikeDraw/PDFUtil.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/BBBikeDraw/PDFUtil.pm -------------------------------------------------------------------------------- /BBBikeDraw/SVG.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/BBBikeDraw/SVG.pm -------------------------------------------------------------------------------- /BBBikeEdit.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/BBBikeEdit.pm -------------------------------------------------------------------------------- /BBBikeEditUtil.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/BBBikeEditUtil.pm -------------------------------------------------------------------------------- /BBBikeGPS.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/BBBikeGPS.pm -------------------------------------------------------------------------------- /BBBikeGlobalVars.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/BBBikeGlobalVars.pm -------------------------------------------------------------------------------- /BBBikeHeavy.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/BBBikeHeavy.pm -------------------------------------------------------------------------------- /BBBikeLaTeX.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/BBBikeLaTeX.pm -------------------------------------------------------------------------------- /BBBikeLazy.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/BBBikeLazy.pm -------------------------------------------------------------------------------- /BBBikeMail.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/BBBikeMail.pm -------------------------------------------------------------------------------- /BBBikeMenubar.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/BBBikeMenubar.pm -------------------------------------------------------------------------------- /BBBikePalm.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/BBBikePalm.pm -------------------------------------------------------------------------------- /BBBikePersonal.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/BBBikePersonal.pm -------------------------------------------------------------------------------- /BBBikePluginLister.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/BBBikePluginLister.pm -------------------------------------------------------------------------------- /BBBikePrefsWidget.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/BBBikePrefsWidget.pm -------------------------------------------------------------------------------- /BBBikePrint.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/BBBikePrint.pm -------------------------------------------------------------------------------- /BBBikeProfil.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/BBBikeProfil.pm -------------------------------------------------------------------------------- /BBBikeRouting.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/BBBikeRouting.pm -------------------------------------------------------------------------------- /BBBikeRouting/Boat.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/BBBikeRouting/Boat.pm -------------------------------------------------------------------------------- /BBBikeServer.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/BBBikeServer.pm -------------------------------------------------------------------------------- /BBBikeStats.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/BBBikeStats.pm -------------------------------------------------------------------------------- /BBBikeTrans.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/BBBikeTrans.pm -------------------------------------------------------------------------------- /BBBikeUtil.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/BBBikeUtil.pm -------------------------------------------------------------------------------- /BBBikeVia.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/BBBikeVia.pm -------------------------------------------------------------------------------- /BBBikeWeather.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/BBBikeWeather.pm -------------------------------------------------------------------------------- /Bundle/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/Bundle/.gitignore -------------------------------------------------------------------------------- /Bundle/BBBike.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/Bundle/BBBike.pm -------------------------------------------------------------------------------- /Bundle/BBBike.tpl.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/Bundle/BBBike.tpl.pm -------------------------------------------------------------------------------- /Bundle/BBBike_cgi.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/Bundle/BBBike_cgi.pm -------------------------------------------------------------------------------- /Bundle/BBBike_psgi.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/Bundle/BBBike_psgi.pm -------------------------------------------------------------------------------- /Bundle/BBBike_windist.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/Bundle/BBBike_windist.pm -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/CHANGES -------------------------------------------------------------------------------- /ESRI/.gitignore: -------------------------------------------------------------------------------- 1 | /MYMETA.json 2 | /MYMETA.yml 3 | /Makefile 4 | /Makefile.old 5 | /pm_to_blib 6 | -------------------------------------------------------------------------------- /ESRI/Shapefile/DBase.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/ESRI/Shapefile/DBase.pm -------------------------------------------------------------------------------- /GPS.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/GPS.pm -------------------------------------------------------------------------------- /GPS/BBBikeGPS/MTP.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/GPS/BBBikeGPS/MTP.pm -------------------------------------------------------------------------------- /GPS/DirectGarmin.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/GPS/DirectGarmin.pm -------------------------------------------------------------------------------- /GPS/G7toWin_ASCII.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/GPS/G7toWin_ASCII.pm -------------------------------------------------------------------------------- /GPS/Gpsbabel.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/GPS/Gpsbabel.pm -------------------------------------------------------------------------------- /GPS/GpsmanData.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/GPS/GpsmanData.pm -------------------------------------------------------------------------------- /GPS/GpsmanData/Tk.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/GPS/GpsmanData/Tk.pm -------------------------------------------------------------------------------- /GPS/MyNMEA.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/GPS/MyNMEA.pm -------------------------------------------------------------------------------- /GPS/Ovl.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/GPS/Ovl.pm -------------------------------------------------------------------------------- /GPS/SerialStty.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/GPS/SerialStty.pm -------------------------------------------------------------------------------- /Geography.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/Geography.pm -------------------------------------------------------------------------------- /Geography/Berlin_DE.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/Geography/Berlin_DE.pm -------------------------------------------------------------------------------- /Geography/Brandenburg_DE.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/Geography/Brandenburg_DE.pm -------------------------------------------------------------------------------- /Geography/Muenchen_DE.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/Geography/Muenchen_DE.pm -------------------------------------------------------------------------------- /Geography/Zuerich_CH.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/Geography/Zuerich_CH.pm -------------------------------------------------------------------------------- /GfxConvert.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/GfxConvert.pm -------------------------------------------------------------------------------- /Karte.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/Karte.pm -------------------------------------------------------------------------------- /Karte/GDF.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/Karte/GDF.pm -------------------------------------------------------------------------------- /Karte/GIS.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/Karte/GIS.pm -------------------------------------------------------------------------------- /Karte/GISmap.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/Karte/GISmap.pm -------------------------------------------------------------------------------- /Karte/GPS.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/Karte/GPS.pm -------------------------------------------------------------------------------- /Karte/Polar.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/Karte/Polar.pm -------------------------------------------------------------------------------- /Karte/Soldner_alt.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/Karte/Soldner_alt.pm -------------------------------------------------------------------------------- /Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/Makefile.PL -------------------------------------------------------------------------------- /Makefile_admin_PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/Makefile_admin_PL -------------------------------------------------------------------------------- /PLZ.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/PLZ.pm -------------------------------------------------------------------------------- /PLZ/Levenshtein.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/PLZ/Levenshtein.pm -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/README -------------------------------------------------------------------------------- /README.pod: -------------------------------------------------------------------------------- 1 | README.english -------------------------------------------------------------------------------- /README.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/README.tpl -------------------------------------------------------------------------------- /Radwege.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/Radwege.pm -------------------------------------------------------------------------------- /Route.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/Route.pm -------------------------------------------------------------------------------- /Route/Descr.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/Route/Descr.pm -------------------------------------------------------------------------------- /Route/Heavy.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/Route/Heavy.pm -------------------------------------------------------------------------------- /Route/Simplify.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/Route/Simplify.pm -------------------------------------------------------------------------------- /Strassen/Cat.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/Strassen/Cat.pm -------------------------------------------------------------------------------- /Strassen/Combine.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/Strassen/Combine.pm -------------------------------------------------------------------------------- /Strassen/Core.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/Strassen/Core.pm -------------------------------------------------------------------------------- /Strassen/CoreHeavy.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/Strassen/CoreHeavy.pm -------------------------------------------------------------------------------- /Strassen/FromRoute.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/Strassen/FromRoute.pm -------------------------------------------------------------------------------- /Strassen/Generated.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/Strassen/Generated.pm -------------------------------------------------------------------------------- /Strassen/Generated_src.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/Strassen/Generated_src.pm -------------------------------------------------------------------------------- /Strassen/Kreuzungen.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/Strassen/Kreuzungen.pm -------------------------------------------------------------------------------- /Strassen/Obsolete.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/Strassen/Obsolete.pm -------------------------------------------------------------------------------- /Strassen/QualityDE.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/Strassen/QualityDE.pm -------------------------------------------------------------------------------- /Strassen/Stat.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/Strassen/Stat.pm -------------------------------------------------------------------------------- /Strassen/Strasse.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/Strassen/Strasse.pm -------------------------------------------------------------------------------- /Strassen/StrassenNetz.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/Strassen/StrassenNetz.pm -------------------------------------------------------------------------------- /Strassen/StrassenNetzHeavy.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/Strassen/StrassenNetzHeavy.pm -------------------------------------------------------------------------------- /Strassen/StrassenNetzNew.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/Strassen/StrassenNetzNew.pm -------------------------------------------------------------------------------- /Strassen/Tie.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/Strassen/Tie.pm -------------------------------------------------------------------------------- /Strassen/Util.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/Strassen/Util.pm -------------------------------------------------------------------------------- /Update.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/Update.pm -------------------------------------------------------------------------------- /Wizards.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/Wizards.pm -------------------------------------------------------------------------------- /babybike/.gitignore: -------------------------------------------------------------------------------- 1 | /_Inline 2 | /data/ 3 | -------------------------------------------------------------------------------- /babybike/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/babybike/Makefile -------------------------------------------------------------------------------- /babybike/babybikerc: -------------------------------------------------------------------------------- 1 | style "fixedfont" 2 | { 3 | font = "5x7" 4 | } 5 | widget "*" style "fixedfont" 6 | -------------------------------------------------------------------------------- /babybike/standard.desc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/babybike/standard.desc -------------------------------------------------------------------------------- /babybike/tkbabybike: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/babybike/tkbabybike -------------------------------------------------------------------------------- /babybike/tkbabybike.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/babybike/tkbabybike.pod -------------------------------------------------------------------------------- /bbbike: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/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.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/bbbike.pod -------------------------------------------------------------------------------- /bbbikeapplet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/bbbikeapplet -------------------------------------------------------------------------------- /bench/strassen_parse.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/bench/strassen_parse.pl -------------------------------------------------------------------------------- /c/.gitignore: -------------------------------------------------------------------------------- 1 | /data 2 | /minibbbike 3 | /*.o 4 | -------------------------------------------------------------------------------- /c/conv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/c/conv.c -------------------------------------------------------------------------------- /c/mkdata.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/c/mkdata.pl -------------------------------------------------------------------------------- /c/mkdatapdb.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/c/mkdatapdb.pl -------------------------------------------------------------------------------- /c/route.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/c/route.c -------------------------------------------------------------------------------- /cache/.keep_me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/cache/.keep_me -------------------------------------------------------------------------------- /cbbbike: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/cbbbike -------------------------------------------------------------------------------- /cbbbike.bat: -------------------------------------------------------------------------------- 1 | perl cbbbike 2 | -------------------------------------------------------------------------------- /cdrom/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/cdrom/README -------------------------------------------------------------------------------- /cdrom/cdrom.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/cdrom/cdrom.pl -------------------------------------------------------------------------------- /cdrom/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/cdrom/index.html -------------------------------------------------------------------------------- /cdrom/windows/autorun.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/cdrom/windows/autorun.inf -------------------------------------------------------------------------------- /cdrom/windows/oldsetup.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | windows\5.6.1\bin\MSWin32-x86\perl -Iwindows\5.6.1\lib -Iwindows\site\5.6.1\lib oldsetup.pl 3 | -------------------------------------------------------------------------------- /cdrom/windows/oldsetup.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/cdrom/windows/oldsetup.pl -------------------------------------------------------------------------------- /cgi/bbbike-teaser.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/cgi/bbbike-teaser.pl -------------------------------------------------------------------------------- /cgi/bbbike.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/cgi/bbbike.cgi -------------------------------------------------------------------------------- /cgi/bbbikegooglemap.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/cgi/bbbikegooglemap.cgi -------------------------------------------------------------------------------- /cgi/berlinmap.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/cgi/berlinmap.cgi -------------------------------------------------------------------------------- /cgi/mapserver_address.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/cgi/mapserver_address.cgi -------------------------------------------------------------------------------- /cgi/mapserver_comment.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/cgi/mapserver_comment.cgi -------------------------------------------------------------------------------- /cgi/mapserver_setcoord.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/cgi/mapserver_setcoord.cgi -------------------------------------------------------------------------------- /cgi/msg/en: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/cgi/msg/en -------------------------------------------------------------------------------- /cgi/runbbbikecgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/cgi/runbbbikecgi -------------------------------------------------------------------------------- /cgi/wapbbbike.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/cgi/wapbbbike.cgi -------------------------------------------------------------------------------- /cmdbbbike: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/cmdbbbike -------------------------------------------------------------------------------- /data/Berlin.coords.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/Berlin.coords.data -------------------------------------------------------------------------------- /data/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/Makefile -------------------------------------------------------------------------------- /data/Makefile.mapfiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/Makefile.mapfiles -------------------------------------------------------------------------------- /data/Potsdam.coords.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/Potsdam.coords.data -------------------------------------------------------------------------------- /data/add_plaetze: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/add_plaetze -------------------------------------------------------------------------------- /data/add_str: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/add_str -------------------------------------------------------------------------------- /data/add_str_potsdam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/add_str_potsdam -------------------------------------------------------------------------------- /data/ampeln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/ampeln -------------------------------------------------------------------------------- /data/ampeln-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/ampeln-orig -------------------------------------------------------------------------------- /data/ampelschaltung: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/ampelschaltung -------------------------------------------------------------------------------- /data/ampelschaltung-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/ampelschaltung-orig -------------------------------------------------------------------------------- /data/berlin_ortsteile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/berlin_ortsteile -------------------------------------------------------------------------------- /data/brunnels: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/brunnels -------------------------------------------------------------------------------- /data/brunnels-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/brunnels-orig -------------------------------------------------------------------------------- /data/check_nearest_ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/check_nearest_ignore -------------------------------------------------------------------------------- /data/comments_cyclepath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/comments_cyclepath -------------------------------------------------------------------------------- /data/comments_cyclepath-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/comments_cyclepath-orig -------------------------------------------------------------------------------- /data/comments_danger-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/comments_danger-orig -------------------------------------------------------------------------------- /data/comments_ferry: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/comments_ferry -------------------------------------------------------------------------------- /data/comments_ferry-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/comments_ferry-orig -------------------------------------------------------------------------------- /data/comments_kfzverkehr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/comments_kfzverkehr -------------------------------------------------------------------------------- /data/comments_kfzverkehr-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/comments_kfzverkehr-orig -------------------------------------------------------------------------------- /data/comments_misc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/comments_misc -------------------------------------------------------------------------------- /data/comments_mount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/comments_mount -------------------------------------------------------------------------------- /data/comments_mount-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/comments_mount-orig -------------------------------------------------------------------------------- /data/comments_path: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/comments_path -------------------------------------------------------------------------------- /data/comments_path-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/comments_path-orig -------------------------------------------------------------------------------- /data/comments_route: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/comments_route -------------------------------------------------------------------------------- /data/comments_route-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/comments_route-orig -------------------------------------------------------------------------------- /data/comments_route_img/H.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/comments_route_img/H.png -------------------------------------------------------------------------------- /data/comments_route_img/M.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/comments_route_img/M.png -------------------------------------------------------------------------------- /data/comments_scenic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/comments_scenic -------------------------------------------------------------------------------- /data/comments_scenic-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/comments_scenic-orig -------------------------------------------------------------------------------- /data/comments_trafficjam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/comments_trafficjam -------------------------------------------------------------------------------- /data/comments_trafficjam-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/comments_trafficjam-orig -------------------------------------------------------------------------------- /data/comments_tram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/comments_tram -------------------------------------------------------------------------------- /data/comments_tram-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/comments_tram-orig -------------------------------------------------------------------------------- /data/culdesac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/culdesac -------------------------------------------------------------------------------- /data/culdesac-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/culdesac-orig -------------------------------------------------------------------------------- /data/deutschland: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/deutschland -------------------------------------------------------------------------------- /data/deutschland-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/deutschland-orig -------------------------------------------------------------------------------- /data/doit.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/doit.pl -------------------------------------------------------------------------------- /data/exits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/exits -------------------------------------------------------------------------------- /data/exits-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/exits-orig -------------------------------------------------------------------------------- /data/faehren: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/faehren -------------------------------------------------------------------------------- /data/faehren-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/faehren-orig -------------------------------------------------------------------------------- /data/flaechen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/flaechen -------------------------------------------------------------------------------- /data/fragezeichen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/fragezeichen -------------------------------------------------------------------------------- /data/fragezeichen-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/fragezeichen-orig -------------------------------------------------------------------------------- /data/gesperrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/gesperrt -------------------------------------------------------------------------------- /data/gesperrt-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/gesperrt-orig -------------------------------------------------------------------------------- /data/gesperrt_car: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/gesperrt_car -------------------------------------------------------------------------------- /data/gesperrt_car-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/gesperrt_car-orig -------------------------------------------------------------------------------- /data/gesperrt_r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/gesperrt_r -------------------------------------------------------------------------------- /data/gesperrt_r-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/gesperrt_r-orig -------------------------------------------------------------------------------- /data/gesperrt_s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/gesperrt_s -------------------------------------------------------------------------------- /data/gesperrt_s-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/gesperrt_s-orig -------------------------------------------------------------------------------- /data/gesperrt_u: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/gesperrt_u -------------------------------------------------------------------------------- /data/green: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/green -------------------------------------------------------------------------------- /data/green-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/green-orig -------------------------------------------------------------------------------- /data/handicap_directed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/handicap_directed -------------------------------------------------------------------------------- /data/handicap_directed-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/handicap_directed-orig -------------------------------------------------------------------------------- /data/handicap_l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/handicap_l -------------------------------------------------------------------------------- /data/handicap_l-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/handicap_l-orig -------------------------------------------------------------------------------- /data/handicap_s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/handicap_s -------------------------------------------------------------------------------- /data/handicap_s-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/handicap_s-orig -------------------------------------------------------------------------------- /data/hoehe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/hoehe -------------------------------------------------------------------------------- /data/hoehe-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/hoehe-orig -------------------------------------------------------------------------------- /data/housenumbers-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/housenumbers-orig -------------------------------------------------------------------------------- /data/inaccessible_strassen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/inaccessible_strassen -------------------------------------------------------------------------------- /data/innerberliner_grenze: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/innerberliner_grenze -------------------------------------------------------------------------------- /data/kneipen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/kneipen -------------------------------------------------------------------------------- /data/kneipen-info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/kneipen-info -------------------------------------------------------------------------------- /data/landstrassen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/landstrassen -------------------------------------------------------------------------------- /data/landstrassen-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/landstrassen-orig -------------------------------------------------------------------------------- /data/landstrassen2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/landstrassen2 -------------------------------------------------------------------------------- /data/mount: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/mount -------------------------------------------------------------------------------- /data/mudways: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/mudways -------------------------------------------------------------------------------- /data/nolighting: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/nolighting -------------------------------------------------------------------------------- /data/nolighting-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/nolighting-orig -------------------------------------------------------------------------------- /data/oldnames: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/oldnames -------------------------------------------------------------------------------- /data/orte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/orte -------------------------------------------------------------------------------- /data/orte2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/orte2 -------------------------------------------------------------------------------- /data/orte_city: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/orte_city -------------------------------------------------------------------------------- /data/orte_city-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/orte_city-orig -------------------------------------------------------------------------------- /data/ortsschilder: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/ortsschilder -------------------------------------------------------------------------------- /data/plaetze: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/plaetze -------------------------------------------------------------------------------- /data/plaetze-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/plaetze-orig -------------------------------------------------------------------------------- /data/plz-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/plz-orig -------------------------------------------------------------------------------- /data/potsdam_ortsteile-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/potsdam_ortsteile-orig -------------------------------------------------------------------------------- /data/qualitaet_l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/qualitaet_l -------------------------------------------------------------------------------- /data/qualitaet_l-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/qualitaet_l-orig -------------------------------------------------------------------------------- /data/qualitaet_s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/qualitaet_s -------------------------------------------------------------------------------- /data/qualitaet_s-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/qualitaet_s-orig -------------------------------------------------------------------------------- /data/qualitaet_s_add-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/qualitaet_s_add-orig -------------------------------------------------------------------------------- /data/radwege-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/radwege-orig -------------------------------------------------------------------------------- /data/rbahn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/rbahn -------------------------------------------------------------------------------- /data/rbahn-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/rbahn-orig -------------------------------------------------------------------------------- /data/rbahnhof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/rbahnhof -------------------------------------------------------------------------------- /data/routing_helper-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/routing_helper-orig -------------------------------------------------------------------------------- /data/sbahn-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/sbahn-orig -------------------------------------------------------------------------------- /data/sbahnhof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/sbahnhof -------------------------------------------------------------------------------- /data/sbahnhof-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/sbahnhof-orig -------------------------------------------------------------------------------- /data/sbahnhof_bg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/sbahnhof_bg -------------------------------------------------------------------------------- /data/sehenswuerdigkeit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/sehenswuerdigkeit -------------------------------------------------------------------------------- /data/sehenswuerdigkeit-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/sehenswuerdigkeit-orig -------------------------------------------------------------------------------- /data/str_cont_ausnahme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/str_cont_ausnahme -------------------------------------------------------------------------------- /data/strassen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/strassen -------------------------------------------------------------------------------- /data/strassen-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/strassen-orig -------------------------------------------------------------------------------- /data/strassen_bab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/strassen_bab -------------------------------------------------------------------------------- /data/strassen_bab-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/strassen_bab-orig -------------------------------------------------------------------------------- /data/temp_blockings/.gitignore: -------------------------------------------------------------------------------- 1 | /bbbike-temp-blockings.yml 2 | /*~ 3 | -------------------------------------------------------------------------------- /data/temp_blockings/20030727.bbd: -------------------------------------------------------------------------------- 1 | q4; 5475,10808 5341,10756 5215,10711 2 | -------------------------------------------------------------------------------- /data/temp_blockings/20030907b.bbd: -------------------------------------------------------------------------------- 1 | 1 25579,5958 26080,5946 2 | -------------------------------------------------------------------------------- /data/temp_blockings/altwittenau.bbd: -------------------------------------------------------------------------------- 1 | q4 4935,20574 4726,20690 4597,20778 2 | -------------------------------------------------------------------------------- /data/temp_blockings/artists_boulevard.bbd: -------------------------------------------------------------------------------- 1 | 2 7820,10768 7689,10514 2 | 2 7820,10768 7912,10945 3 | 2 7968,11048 7912,10945 4 | -------------------------------------------------------------------------------- /data/temp_blockings/bush-20020522.bbd: -------------------------------------------------------------------------------- 1 | Pariser Platz 2 8804,12280 8722,12268 8637,12258 8592,12252 2 | Pariser Platz 2 8592,12252 8538,12245 3 | -------------------------------------------------------------------------------- /data/temp_blockings/dietzgenstr.bbd: -------------------------------------------------------------------------------- 1 | 1 10066,20494 10064,20437 10066,20323 10069,20254 10072,20188 2 | -------------------------------------------------------------------------------- /data/temp_blockings/florastr.bbd: -------------------------------------------------------------------------------- 1 | 2 10179,17772 10311,17764 10448,17751 2 | -------------------------------------------------------------------------------- /data/temp_blockings/gendarmenmarkt.bbd: -------------------------------------------------------------------------------- 1 | 2 9523,12019 9656,12031 2 | 2 9536,11922 9666,11935 3 | -------------------------------------------------------------------------------- /data/temp_blockings/gleimstr.bbd: -------------------------------------------------------------------------------- 1 | q4 10418,15704 10426,15705 10554,15725 2 | q4 10554,15725 10701,15750 3 | q4 10701,15750 10953,15787 4 | -------------------------------------------------------------------------------- /data/temp_blockings/goerlsdorf.bbd: -------------------------------------------------------------------------------- 1 | 2 45683,72646 45701,72652 45751,72662 2 | -------------------------------------------------------------------------------- /data/temp_blockings/hauptstr_pankow.bbd: -------------------------------------------------------------------------------- 1 | q4 12179,22369 12165,22323 12122,22185 12063,21991 12042,21886 2 | -------------------------------------------------------------------------------- /data/temp_blockings/herzfelde.bbd: -------------------------------------------------------------------------------- 1 | q4 40862,8996 41318,8912 2 | -------------------------------------------------------------------------------- /data/temp_blockings/karstaedt.bbd: -------------------------------------------------------------------------------- 1 | q4 -104247,81788 -103601,81383 2 | -------------------------------------------------------------------------------- /data/temp_blockings/koenigsheideweg.bbd: -------------------------------------------------------------------------------- 1 | q4; 17516,4657 17266,4720 17115,4757 2 | -------------------------------------------------------------------------------- /data/temp_blockings/kranarbeiten.bbd: -------------------------------------------------------------------------------- 1 | 2 9615,11225 9653,10950 2 | -------------------------------------------------------------------------------- /data/temp_blockings/kudamm_tauentzien.bbd: -------------------------------------------------------------------------------- 1 | 2 5475,10808 5656,10876 2 | 2 6025,10746 5907,10821 5782,10884 3 | 2 5725,10892 5782,10884 4 | -------------------------------------------------------------------------------- /data/temp_blockings/langhansstr.bbd: -------------------------------------------------------------------------------- 1 | 2 12189,16578 12045,16574 2 | -------------------------------------------------------------------------------- /data/temp_blockings/liesenstr.bbd: -------------------------------------------------------------------------------- 1 | q4; 8671,14919 8653,14899 8423,14667 8336,14586 2 | -------------------------------------------------------------------------------- /data/temp_blockings/marzahner_promenade.bbd: -------------------------------------------------------------------------------- 1 | q4 20667,15721 20693,15758 20732,15868 20761,15940 2 | -------------------------------------------------------------------------------- /data/temp_blockings/maybachufer.bbd: -------------------------------------------------------------------------------- 1 | 2 11880,9874 12053,9793 12085,9778 2 | 2 11880,9874 11669,9987 11543,10015 3 | -------------------------------------------------------------------------------- /data/temp_blockings/muellerstr.bbd: -------------------------------------------------------------------------------- 1 | q4 6005,16712 5923,16784 5894,16810 5772,16919 2 | q4 6098,16630 6201,16538 6304,16447 3 | -------------------------------------------------------------------------------- /data/temp_blockings/oberbaumbruecke.bbd: -------------------------------------------------------------------------------- 1 | q4 13332,10832 13305,10789 2 | q4 13178,10623 13206,10651 3 | q4 13305,10789 13206,10651 4 | -------------------------------------------------------------------------------- /data/temp_blockings/pillgram.bbd: -------------------------------------------------------------------------------- 1 | 2 77769,-6821 77264,-6590 2 | -------------------------------------------------------------------------------- /data/temp_blockings/rathenower.bbd: -------------------------------------------------------------------------------- 1 | q4 6656,14311 6677,14219 6719,14047 6730,14021 2 | -------------------------------------------------------------------------------- /data/temp_blockings/reinhardtstr.bbd: -------------------------------------------------------------------------------- 1 | 2 8997,13037 9058,13054 9118,13070 9262,13111 2 | -------------------------------------------------------------------------------- /data/temp_blockings/richardplatz.bbd: -------------------------------------------------------------------------------- 1 | 2 13416,7712 13378,7695 13288,7653 2 | 2 13288,7653 13174,7644 3 | 2 13179,7613 13174,7644 4 | -------------------------------------------------------------------------------- /data/temp_blockings/sbhf_pankow.bbd: -------------------------------------------------------------------------------- 1 | 2 10830,17985 10849,17848 2 | -------------------------------------------------------------------------------- /data/temp_blockings/scheidemannstr.bbd: -------------------------------------------------------------------------------- 1 | 2 8354,12416 8119,12414 2 | 2 8354,12416 8373,12416 8400,12417 8540,12420 3 | -------------------------------------------------------------------------------- /data/temp_blockings/schlichtallee.bbd: -------------------------------------------------------------------------------- 1 | 2 15758,10578 15639,10469 2 | -------------------------------------------------------------------------------- /data/temp_blockings/sophienstr.bbd: -------------------------------------------------------------------------------- 1 | 2 9986,13412 10321,13259 2 | -------------------------------------------------------------------------------- /data/temp_blockings/sowj_ehrenmal.bbd: -------------------------------------------------------------------------------- 1 | 2 8055,12186 8089,12190 8214,12205 2 | 2 8214,12205 8303,12216 8344,12221 8538,12245 3 | -------------------------------------------------------------------------------- /data/temp_blockings/spandauer.bbd: -------------------------------------------------------------------------------- 1 | 2 10431,12709 10542,12587 10599,12526 2 | 2 10716,12382 10687,12421 10646,12470 10599,12526 3 | -------------------------------------------------------------------------------- /data/temp_blockings/strassenfest-karl-marx-str.bbd: -------------------------------------------------------------------------------- 1 | 2 12494,8501 12545,8449 12562,8432 12582,8408 12598,8390 2 | 2 12598,8390 12765,8435 3 | -------------------------------------------------------------------------------- /data/temp_blockings/turmstr.bbd: -------------------------------------------------------------------------------- 1 | 2 5705,13359 5857,13342 2 | 2 5956,13330 5857,13342 3 | 2 5956,13330 6022,13330 6105,13328 6228,13324 4 | -------------------------------------------------------------------------------- /data/temp_blockings/wiesenfest.bbd: -------------------------------------------------------------------------------- 1 | 2 6473,21969 6436,21897 6373,21810 2 | 2 6320,21777 6373,21810 3 | -------------------------------------------------------------------------------- /data/ubahn-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/ubahn-orig -------------------------------------------------------------------------------- /data/ubahnhof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/ubahnhof -------------------------------------------------------------------------------- /data/ubahnhof-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/ubahnhof-orig -------------------------------------------------------------------------------- /data/ubahnhof_bg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/ubahnhof_bg -------------------------------------------------------------------------------- /data/umsteigebhf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/umsteigebhf -------------------------------------------------------------------------------- /data/upgrade_scope_hint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/upgrade_scope_hint -------------------------------------------------------------------------------- /data/vorfahrt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/vorfahrt -------------------------------------------------------------------------------- /data/vorfahrt-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/vorfahrt-orig -------------------------------------------------------------------------------- /data/wasserstrassen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/wasserstrassen -------------------------------------------------------------------------------- /data/wasserstrassen-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/wasserstrassen-orig -------------------------------------------------------------------------------- /data/wasserumland: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/wasserumland -------------------------------------------------------------------------------- /data/wasserumland-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/wasserumland-orig -------------------------------------------------------------------------------- /data/wasserumland2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/wasserumland2 -------------------------------------------------------------------------------- /data/zebrastreifen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/data/zebrastreifen -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- 1 | /links.html 2 | -------------------------------------------------------------------------------- /doc/TODO.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/doc/TODO.pod -------------------------------------------------------------------------------- /doc/bbd.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/doc/bbd.pod -------------------------------------------------------------------------------- /doc/links.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/doc/links.pod -------------------------------------------------------------------------------- /doc/tests.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/doc/tests.pod -------------------------------------------------------------------------------- /doc/why_not_osm.pod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/doc/why_not_osm.pod -------------------------------------------------------------------------------- /ext/BBBikeXS/BBBikeXS.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/ext/BBBikeXS/BBBikeXS.pm -------------------------------------------------------------------------------- /ext/BBBikeXS/BBBikeXS.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/ext/BBBikeXS/BBBikeXS.xs -------------------------------------------------------------------------------- /ext/BBBikeXS/MANIFEST: -------------------------------------------------------------------------------- 1 | MANIFEST 2 | Makefile.PL 3 | BBBikeXS.pm 4 | BBBikeXS.xs 5 | t/base.t 6 | typemap 7 | sqrt.c 8 | README 9 | -------------------------------------------------------------------------------- /ext/BBBikeXS/t/utf8.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/ext/BBBikeXS/t/utf8.t -------------------------------------------------------------------------------- /ext/BBBikeXS/typemap: -------------------------------------------------------------------------------- 1 | StrassenNetz T_SV 2 | -------------------------------------------------------------------------------- /ext/Strassen-Inline/Inline.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/ext/Strassen-Inline/Inline.pm -------------------------------------------------------------------------------- /ext/VirtArray/MANIFEST: -------------------------------------------------------------------------------- 1 | Changes 2 | VirtArray.pm 3 | VirtArray.xs 4 | MANIFEST 5 | Makefile.PL 6 | t/basic.t 7 | -------------------------------------------------------------------------------- /ext/VirtArray/Makefile.PL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/ext/VirtArray/Makefile.PL -------------------------------------------------------------------------------- /ext/VirtArray/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/ext/VirtArray/README -------------------------------------------------------------------------------- /ext/VirtArray/VirtArray.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/ext/VirtArray/VirtArray.xs -------------------------------------------------------------------------------- /ext/VirtArray/typemap: -------------------------------------------------------------------------------- 1 | VirtArray T_PTROBJ 2 | -------------------------------------------------------------------------------- /gnome/BBBikeDoc.tmpl: -------------------------------------------------------------------------------- 1 | URL: file:%%DOCDIR%%/bbbike.html 2 | -------------------------------------------------------------------------------- /gnome/BBBikeWWW: -------------------------------------------------------------------------------- 1 | URL: http://user.cs.tu-berlin.de/~eserte/bbbike/cgi/bbbike.cgi 2 | -------------------------------------------------------------------------------- /gnome/bbbike.mime: -------------------------------------------------------------------------------- 1 | application/x-gistrack 2 | ext: trk 3 | 4 | application/x-bbbike-route 5 | ext: bbr 6 | 7 | -------------------------------------------------------------------------------- /html/.gitignore: -------------------------------------------------------------------------------- 1 | /bbbikeleaflet.en.html 2 | -------------------------------------------------------------------------------- /html/bbbike_result.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/html/bbbike_result.js -------------------------------------------------------------------------------- /html/bbbike_start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/html/bbbike_start.js -------------------------------------------------------------------------------- /html/empty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/html/empty.html -------------------------------------------------------------------------------- /html/fragezeichenform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/html/fragezeichenform.html -------------------------------------------------------------------------------- /html/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/html/help.html -------------------------------------------------------------------------------- /html/legende.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/html/legende.html -------------------------------------------------------------------------------- /html/newstreetform.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/html/newstreetform.html -------------------------------------------------------------------------------- /html/newstreetform.tpl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/html/newstreetform.tpl.html -------------------------------------------------------------------------------- /html/presse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/html/presse.html -------------------------------------------------------------------------------- /images/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/Makefile -------------------------------------------------------------------------------- /images/PoweredByPerl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/PoweredByPerl.gif -------------------------------------------------------------------------------- /images/QR_icon_16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/QR_icon_16x16.png -------------------------------------------------------------------------------- /images/abc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/abc.gif -------------------------------------------------------------------------------- /images/abc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/abc.png -------------------------------------------------------------------------------- /images/abc_hi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/abc_hi.gif -------------------------------------------------------------------------------- /images/abc_hi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/abc_hi.png -------------------------------------------------------------------------------- /images/achtung.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/achtung.gif -------------------------------------------------------------------------------- /images/achtung.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/achtung.png -------------------------------------------------------------------------------- /images/airport.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/airport.gif -------------------------------------------------------------------------------- /images/ampel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/ampel.gif -------------------------------------------------------------------------------- /images/ampel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/ampel.png -------------------------------------------------------------------------------- /images/ampel_klein.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/ampel_klein.gif -------------------------------------------------------------------------------- /images/ampel_klein.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/ampel_klein.jpg -------------------------------------------------------------------------------- /images/ampel_klein.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/ampel_klein.png -------------------------------------------------------------------------------- /images/ampel_klein2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/ampel_klein2.gif -------------------------------------------------------------------------------- /images/ampel_klein2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/ampel_klein2.jpg -------------------------------------------------------------------------------- /images/ampel_klein2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/ampel_klein2.png -------------------------------------------------------------------------------- /images/ampelf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/ampelf.gif -------------------------------------------------------------------------------- /images/ampelf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/ampelf.png -------------------------------------------------------------------------------- /images/ampelf_klein.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/ampelf_klein.gif -------------------------------------------------------------------------------- /images/ampelf_klein.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/ampelf_klein.png -------------------------------------------------------------------------------- /images/ampelf_klein2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/ampelf_klein2.gif -------------------------------------------------------------------------------- /images/ampelf_klein2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/ampelf_klein2.png -------------------------------------------------------------------------------- /images/ampelf_noalpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/ampelf_noalpha.png -------------------------------------------------------------------------------- /images/andreaskr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/andreaskr.gif -------------------------------------------------------------------------------- /images/andreaskr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/andreaskr.png -------------------------------------------------------------------------------- /images/andreaskr_klein.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/andreaskr_klein.gif -------------------------------------------------------------------------------- /images/andreaskr_klein.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/andreaskr_klein.jpg -------------------------------------------------------------------------------- /images/andreaskr_klein.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/andreaskr_klein.png -------------------------------------------------------------------------------- /images/andreaskr_klein2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/andreaskr_klein2.gif -------------------------------------------------------------------------------- /images/andreaskr_klein2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/andreaskr_klein2.jpg -------------------------------------------------------------------------------- /images/andreaskr_klein2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/andreaskr_klein2.png -------------------------------------------------------------------------------- /images/apfel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/apfel.gif -------------------------------------------------------------------------------- /images/apfel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/apfel.png -------------------------------------------------------------------------------- /images/aufzug.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/aufzug.gif -------------------------------------------------------------------------------- /images/aufzug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/aufzug.png -------------------------------------------------------------------------------- /images/aufzug_klein.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/aufzug_klein.gif -------------------------------------------------------------------------------- /images/aufzug_klein.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/aufzug_klein.png -------------------------------------------------------------------------------- /images/aufzug_klein2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/aufzug_klein2.gif -------------------------------------------------------------------------------- /images/aufzug_klein2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/aufzug_klein2.png -------------------------------------------------------------------------------- /images/bab_table_16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/bab_table_16.gif -------------------------------------------------------------------------------- /images/bab_table_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/bab_table_16.png -------------------------------------------------------------------------------- /images/bab_table_32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/bab_table_32.gif -------------------------------------------------------------------------------- /images/bab_table_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/bab_table_32.png -------------------------------------------------------------------------------- /images/bbbike_google.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/bbbike_google.gif -------------------------------------------------------------------------------- /images/bbbike_google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/bbbike_google.png -------------------------------------------------------------------------------- /images/bbbike_leaflet_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/bbbike_leaflet_16.png -------------------------------------------------------------------------------- /images/bbbike_leaflet_57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/bbbike_leaflet_57.png -------------------------------------------------------------------------------- /images/bbbike_munin.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/bbbike_munin.ico -------------------------------------------------------------------------------- /images/bbbike_splash.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/bbbike_splash.gif -------------------------------------------------------------------------------- /images/berlin_small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/berlin_small.gif -------------------------------------------------------------------------------- /images/berlin_small_hi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/berlin_small_hi.gif -------------------------------------------------------------------------------- /images/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/bg.gif -------------------------------------------------------------------------------- /images/bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/bg.jpg -------------------------------------------------------------------------------- /images/bicycle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/bicycle.gif -------------------------------------------------------------------------------- /images/birne.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/birne.gif -------------------------------------------------------------------------------- /images/birne.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/birne.png -------------------------------------------------------------------------------- /images/bluedot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/bluedot.png -------------------------------------------------------------------------------- /images/bomb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/bomb.png -------------------------------------------------------------------------------- /images/bw_hleft.wbmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/bw_hleft.wbmp -------------------------------------------------------------------------------- /images/bw_hright.wbmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/bw_hright.wbmp -------------------------------------------------------------------------------- /images/bw_left.wbmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/bw_left.wbmp -------------------------------------------------------------------------------- /images/bw_right.wbmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/bw_right.wbmp -------------------------------------------------------------------------------- /images/bw_straight.wbmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/bw_straight.wbmp -------------------------------------------------------------------------------- /images/cal.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/cal.gif -------------------------------------------------------------------------------- /images/cal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/cal.png -------------------------------------------------------------------------------- /images/cal_questionmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/cal_questionmark.png -------------------------------------------------------------------------------- /images/car.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/car.gif -------------------------------------------------------------------------------- /images/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/car.png -------------------------------------------------------------------------------- /images/cemetery_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/cemetery_bg.gif -------------------------------------------------------------------------------- /images/cemetery_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/cemetery_bg.png -------------------------------------------------------------------------------- /images/cemetery_jewish_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/cemetery_jewish_bg.gif -------------------------------------------------------------------------------- /images/cemetery_jewish_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/cemetery_jewish_bg.png -------------------------------------------------------------------------------- /images/cemetery_muslim_bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/cemetery_muslim_bg.gif -------------------------------------------------------------------------------- /images/cemetery_muslim_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/cemetery_muslim_bg.png -------------------------------------------------------------------------------- /images/cgi_legende.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/cgi_legende.gif -------------------------------------------------------------------------------- /images/church.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/church.gif -------------------------------------------------------------------------------- /images/church.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/church.png -------------------------------------------------------------------------------- /images/click.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/click.gif -------------------------------------------------------------------------------- /images/clock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/clock.png -------------------------------------------------------------------------------- /images/cross.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/cross.gif -------------------------------------------------------------------------------- /images/de_flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/de_flag.png -------------------------------------------------------------------------------- /images/delete_ovl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/delete_ovl.gif -------------------------------------------------------------------------------- /images/dest.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/dest.gif -------------------------------------------------------------------------------- /images/dest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/dest.png -------------------------------------------------------------------------------- /images/eisenbahn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/eisenbahn.gif -------------------------------------------------------------------------------- /images/eisenbahn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/eisenbahn.png -------------------------------------------------------------------------------- /images/eisenbahn15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/eisenbahn15.png -------------------------------------------------------------------------------- /images/eisenbahn_klein.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/eisenbahn_klein.gif -------------------------------------------------------------------------------- /images/eisenbahn_klein.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/eisenbahn_klein.png -------------------------------------------------------------------------------- /images/eisenbahn_mini.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/eisenbahn_mini.gif -------------------------------------------------------------------------------- /images/eisenbahn_mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/eisenbahn_mini.png -------------------------------------------------------------------------------- /images/eisenbahn_stillg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/eisenbahn_stillg.gif -------------------------------------------------------------------------------- /images/eisenbahn_stillg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/eisenbahn_stillg.png -------------------------------------------------------------------------------- /images/essen.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/essen.gif -------------------------------------------------------------------------------- /images/essen_klein.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/essen_klein.gif -------------------------------------------------------------------------------- /images/exit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/exit.gif -------------------------------------------------------------------------------- /images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/favicon.ico -------------------------------------------------------------------------------- /images/ferry.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/ferry.gif -------------------------------------------------------------------------------- /images/ferry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/ferry.png -------------------------------------------------------------------------------- /images/ferry_klein.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/ferry_klein.gif -------------------------------------------------------------------------------- /images/ferry_klein.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/ferry_klein.png -------------------------------------------------------------------------------- /images/ferry_mini.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/ferry_mini.gif -------------------------------------------------------------------------------- /images/ferry_mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/ferry_mini.png -------------------------------------------------------------------------------- /images/flaechen.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/flaechen.gif -------------------------------------------------------------------------------- /images/flag2_bl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/flag2_bl.gif -------------------------------------------------------------------------------- /images/flag2_bl.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/flag2_bl.jpg -------------------------------------------------------------------------------- /images/flag2_bl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/flag2_bl.png -------------------------------------------------------------------------------- /images/flag2_bl.wbmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/flag2_bl.wbmp -------------------------------------------------------------------------------- /images/flag2_bl_centered.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/flag2_bl_centered.gif -------------------------------------------------------------------------------- /images/flag2_bl_centered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/flag2_bl_centered.png -------------------------------------------------------------------------------- /images/flag2_bl_noalpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/flag2_bl_noalpha.png -------------------------------------------------------------------------------- /images/flag_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/flag_shadow.png -------------------------------------------------------------------------------- /images/flag_via.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/flag_via.gif -------------------------------------------------------------------------------- /images/flag_via.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/flag_via.png -------------------------------------------------------------------------------- /images/flag_via_centered.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/flag_via_centered.gif -------------------------------------------------------------------------------- /images/flag_via_centered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/flag_via_centered.png -------------------------------------------------------------------------------- /images/flag_ziel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/flag_ziel.gif -------------------------------------------------------------------------------- /images/flag_ziel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/flag_ziel.jpg -------------------------------------------------------------------------------- /images/flag_ziel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/flag_ziel.png -------------------------------------------------------------------------------- /images/flag_ziel_centered.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/flag_ziel_centered.gif -------------------------------------------------------------------------------- /images/flag_ziel_centered.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/flag_ziel_centered.png -------------------------------------------------------------------------------- /images/flag_ziel_noalpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/flag_ziel_noalpha.png -------------------------------------------------------------------------------- /images/gb_flag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/gb_flag.png -------------------------------------------------------------------------------- /images/gefaelle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/gefaelle.gif -------------------------------------------------------------------------------- /images/gefaelle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/gefaelle.png -------------------------------------------------------------------------------- /images/glas.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/glas.gif -------------------------------------------------------------------------------- /images/glas_klein.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/glas_klein.gif -------------------------------------------------------------------------------- /images/google.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/google.gif -------------------------------------------------------------------------------- /images/grenzuebergang_16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/grenzuebergang_16.gif -------------------------------------------------------------------------------- /images/grenzuebergang_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/grenzuebergang_16.png -------------------------------------------------------------------------------- /images/grenzuebergang_32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/grenzuebergang_32.gif -------------------------------------------------------------------------------- /images/grenzuebergang_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/grenzuebergang_32.png -------------------------------------------------------------------------------- /images/haltestelle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/haltestelle.gif -------------------------------------------------------------------------------- /images/hatched_ring.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/hatched_ring.gif -------------------------------------------------------------------------------- /images/hatched_ring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/hatched_ring.png -------------------------------------------------------------------------------- /images/help.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/help.gif -------------------------------------------------------------------------------- /images/hospital.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/hospital.gif -------------------------------------------------------------------------------- /images/hospital.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/hospital.png -------------------------------------------------------------------------------- /images/hotel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/hotel.png -------------------------------------------------------------------------------- /images/info.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/info.gif -------------------------------------------------------------------------------- /images/inwork.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/inwork.gif -------------------------------------------------------------------------------- /images/inwork_12.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/inwork_12.gif -------------------------------------------------------------------------------- /images/inwork_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/inwork_12.png -------------------------------------------------------------------------------- /images/inwork_18.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/inwork_18.gif -------------------------------------------------------------------------------- /images/inwork_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/inwork_18.png -------------------------------------------------------------------------------- /images/kino_klein.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/kino_klein.gif -------------------------------------------------------------------------------- /images/kirsche.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/kirsche.gif -------------------------------------------------------------------------------- /images/kirsche.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/kirsche.png -------------------------------------------------------------------------------- /images/koord.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/koord.gif -------------------------------------------------------------------------------- /images/kopfstein_klein.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/kopfstein_klein.gif -------------------------------------------------------------------------------- /images/kreisverkehr.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/kreisverkehr.gif -------------------------------------------------------------------------------- /images/kreisverkehr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/kreisverkehr.png -------------------------------------------------------------------------------- /images/kreuzung.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/kreuzung.gif -------------------------------------------------------------------------------- /images/kreuzung.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/kreuzung.png -------------------------------------------------------------------------------- /images/kreuzung_klein.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/kreuzung_klein.gif -------------------------------------------------------------------------------- /images/kreuzung_klein.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/kreuzung_klein.png -------------------------------------------------------------------------------- /images/landstrasse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/landstrasse.gif -------------------------------------------------------------------------------- /images/legend_blocked.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/legend_blocked.gif -------------------------------------------------------------------------------- /images/legend_blocked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/legend_blocked.png -------------------------------------------------------------------------------- /images/legend_carry.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/legend_carry.gif -------------------------------------------------------------------------------- /images/legend_carry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/legend_carry.png -------------------------------------------------------------------------------- /images/legend_oneway.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/legend_oneway.gif -------------------------------------------------------------------------------- /images/legend_oneway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/legend_oneway.png -------------------------------------------------------------------------------- /images/lightning.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/lightning.gif -------------------------------------------------------------------------------- /images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/loading.gif -------------------------------------------------------------------------------- /images/map.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/map.gif -------------------------------------------------------------------------------- /images/mapserver_logo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/mapserver_logo.gif -------------------------------------------------------------------------------- /images/mapserver_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/mapserver_logo.png -------------------------------------------------------------------------------- /images/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/mask.png -------------------------------------------------------------------------------- /images/menupfeil.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/menupfeil.gif -------------------------------------------------------------------------------- /images/minicross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/minicross.png -------------------------------------------------------------------------------- /images/monument.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/monument.gif -------------------------------------------------------------------------------- /images/monument.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/monument.png -------------------------------------------------------------------------------- /images/mosque.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/mosque.gif -------------------------------------------------------------------------------- /images/mosque.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/mosque.png -------------------------------------------------------------------------------- /images/movehand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/movehand.gif -------------------------------------------------------------------------------- /images/moz_grab.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/moz_grab.gif -------------------------------------------------------------------------------- /images/museum.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/museum.gif -------------------------------------------------------------------------------- /images/museum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/museum.png -------------------------------------------------------------------------------- /images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/music.png -------------------------------------------------------------------------------- /images/newlayer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/newlayer.gif -------------------------------------------------------------------------------- /images/newlayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/newlayer.png -------------------------------------------------------------------------------- /images/night.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/night.png -------------------------------------------------------------------------------- /images/night_klein.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/night_klein.png -------------------------------------------------------------------------------- /images/notrailer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/notrailer.gif -------------------------------------------------------------------------------- /images/notrailer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/notrailer.png -------------------------------------------------------------------------------- /images/open.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/open.gif -------------------------------------------------------------------------------- /images/open_ovl.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/open_ovl.gif -------------------------------------------------------------------------------- /images/opt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/opt.gif -------------------------------------------------------------------------------- /images/ort.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/ort.gif -------------------------------------------------------------------------------- /images/pflaume.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/pflaume.gif -------------------------------------------------------------------------------- /images/pflaume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/pflaume.png -------------------------------------------------------------------------------- /images/playstreet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/playstreet.png -------------------------------------------------------------------------------- /images/printer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/printer.gif -------------------------------------------------------------------------------- /images/printer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/printer.png -------------------------------------------------------------------------------- /images/printer_narrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/printer_narrow.gif -------------------------------------------------------------------------------- /images/printer_narrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/printer_narrow.png -------------------------------------------------------------------------------- /images/px_1t.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/px_1t.gif -------------------------------------------------------------------------------- /images/radrouten.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/radrouten.gif -------------------------------------------------------------------------------- /images/rain_snow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/rain_snow.png -------------------------------------------------------------------------------- /images/rampe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/rampe.gif -------------------------------------------------------------------------------- /images/rampe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/rampe.png -------------------------------------------------------------------------------- /images/rbahn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/rbahn.gif -------------------------------------------------------------------------------- /images/redcross.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/redcross.gif -------------------------------------------------------------------------------- /images/redcross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/redcross.png -------------------------------------------------------------------------------- /images/reddot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/reddot.gif -------------------------------------------------------------------------------- /images/reddot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/reddot.png -------------------------------------------------------------------------------- /images/ropeway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/ropeway.png -------------------------------------------------------------------------------- /images/ropeway_klein.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/ropeway_klein.png -------------------------------------------------------------------------------- /images/ropeway_mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/ropeway_mini.png -------------------------------------------------------------------------------- /images/rueckweg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/rueckweg.gif -------------------------------------------------------------------------------- /images/salesman.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/salesman.gif -------------------------------------------------------------------------------- /images/save.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/save.gif -------------------------------------------------------------------------------- /images/sbahn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/sbahn.gif -------------------------------------------------------------------------------- /images/sbahn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/sbahn.jpg -------------------------------------------------------------------------------- /images/sbahn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/sbahn.png -------------------------------------------------------------------------------- /images/sbahn_klein.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/sbahn_klein.gif -------------------------------------------------------------------------------- /images/sbahn_klein.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/sbahn_klein.jpg -------------------------------------------------------------------------------- /images/sbahn_klein.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/sbahn_klein.png -------------------------------------------------------------------------------- /images/sbahn_mini.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/sbahn_mini.gif -------------------------------------------------------------------------------- /images/sbahn_mini.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/sbahn_mini.jpg -------------------------------------------------------------------------------- /images/sbahn_mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/sbahn_mini.png -------------------------------------------------------------------------------- /images/search.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/search.gif -------------------------------------------------------------------------------- /images/search_pref.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/search_pref.gif -------------------------------------------------------------------------------- /images/search_pref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/search_pref.png -------------------------------------------------------------------------------- /images/shop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/shop.png -------------------------------------------------------------------------------- /images/srtbike.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/srtbike.gif -------------------------------------------------------------------------------- /images/srtbike.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/srtbike.ico -------------------------------------------------------------------------------- /images/srtbike.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/srtbike.jpg -------------------------------------------------------------------------------- /images/srtbike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/srtbike.png -------------------------------------------------------------------------------- /images/srtbike1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/srtbike1.ico -------------------------------------------------------------------------------- /images/srtbike114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/srtbike114.png -------------------------------------------------------------------------------- /images/srtbike120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/srtbike120.png -------------------------------------------------------------------------------- /images/srtbike152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/srtbike152.png -------------------------------------------------------------------------------- /images/srtbike16.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/srtbike16.gif -------------------------------------------------------------------------------- /images/srtbike16a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/srtbike16a.png -------------------------------------------------------------------------------- /images/srtbike180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/srtbike180.png -------------------------------------------------------------------------------- /images/srtbike192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/srtbike192.png -------------------------------------------------------------------------------- /images/srtbike32.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/srtbike32.gif -------------------------------------------------------------------------------- /images/srtbike32a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/srtbike32a.png -------------------------------------------------------------------------------- /images/srtbike48a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/srtbike48a.png -------------------------------------------------------------------------------- /images/srtbike57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/srtbike57.png -------------------------------------------------------------------------------- /images/srtbike72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/srtbike72.png -------------------------------------------------------------------------------- /images/srtbike_solid.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/srtbike_solid.gif -------------------------------------------------------------------------------- /images/srtbike_url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/srtbike_url.png -------------------------------------------------------------------------------- /images/srtbike_www.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/srtbike_www.ico -------------------------------------------------------------------------------- /images/star.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/star.gif -------------------------------------------------------------------------------- /images/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/star.png -------------------------------------------------------------------------------- /images/start.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/start.gif -------------------------------------------------------------------------------- /images/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/start.png -------------------------------------------------------------------------------- /images/start_ptr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/start_ptr.png -------------------------------------------------------------------------------- /images/steigung.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/steigung.gif -------------------------------------------------------------------------------- /images/steigung.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/steigung.png -------------------------------------------------------------------------------- /images/stern2003_titel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/stern2003_titel.jpg -------------------------------------------------------------------------------- /images/stern2004_titel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/stern2004_titel.jpg -------------------------------------------------------------------------------- /images/stern2005_titel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/stern2005_titel.jpg -------------------------------------------------------------------------------- /images/stern2006_titel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/stern2006_titel.jpg -------------------------------------------------------------------------------- /images/stern2007_titel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/stern2007_titel.jpg -------------------------------------------------------------------------------- /images/strasse.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/strasse.gif -------------------------------------------------------------------------------- /images/strassenbahn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/strassenbahn.gif -------------------------------------------------------------------------------- /images/strassenbahn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/strassenbahn.png -------------------------------------------------------------------------------- /images/strassenbahn_klein.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/strassenbahn_klein.gif -------------------------------------------------------------------------------- /images/strassenbahn_klein.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/strassenbahn_klein.png -------------------------------------------------------------------------------- /images/strlist.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/strlist.gif -------------------------------------------------------------------------------- /images/synagogue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/synagogue.gif -------------------------------------------------------------------------------- /images/synagogue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/synagogue.png -------------------------------------------------------------------------------- /images/theater.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/theater.gif -------------------------------------------------------------------------------- /images/theater.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/theater.png -------------------------------------------------------------------------------- /images/touristinfo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/touristinfo.gif -------------------------------------------------------------------------------- /images/touristinfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/touristinfo.png -------------------------------------------------------------------------------- /images/ubahn.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/ubahn.gif -------------------------------------------------------------------------------- /images/ubahn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/ubahn.jpg -------------------------------------------------------------------------------- /images/ubahn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/ubahn.png -------------------------------------------------------------------------------- /images/ubahn_klein.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/ubahn_klein.gif -------------------------------------------------------------------------------- /images/ubahn_klein.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/ubahn_klein.jpg -------------------------------------------------------------------------------- /images/ubahn_klein.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/ubahn_klein.png -------------------------------------------------------------------------------- /images/ubahn_mini.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/ubahn_mini.gif -------------------------------------------------------------------------------- /images/ubahn_mini.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/ubahn_mini.jpg -------------------------------------------------------------------------------- /images/ubahn_mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/ubahn_mini.png -------------------------------------------------------------------------------- /images/usercross.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/usercross.gif -------------------------------------------------------------------------------- /images/usercross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/usercross.png -------------------------------------------------------------------------------- /images/via.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/via.gif -------------------------------------------------------------------------------- /images/via.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/via.png -------------------------------------------------------------------------------- /images/viewmag+.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/viewmag+.gif -------------------------------------------------------------------------------- /images/viewmag-.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/viewmag-.gif -------------------------------------------------------------------------------- /images/vorfahrt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/vorfahrt.gif -------------------------------------------------------------------------------- /images/vorfahrt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/vorfahrt.png -------------------------------------------------------------------------------- /images/vorfahrt_klein.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/vorfahrt_klein.gif -------------------------------------------------------------------------------- /images/vorfahrt_klein.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/vorfahrt_klein.png -------------------------------------------------------------------------------- /images/wasser.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/wasser.gif -------------------------------------------------------------------------------- /images/wegweiser_mini.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/wegweiser_mini.png -------------------------------------------------------------------------------- /images/wikipedia.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/wikipedia.gif -------------------------------------------------------------------------------- /images/windrose.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/windrose.gif -------------------------------------------------------------------------------- /images/windrose2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/windrose2.gif -------------------------------------------------------------------------------- /images/xmas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/xmas.png -------------------------------------------------------------------------------- /images/ziel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/ziel.gif -------------------------------------------------------------------------------- /images/ziel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/ziel.png -------------------------------------------------------------------------------- /images/ziel_ptr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/ziel_ptr.png -------------------------------------------------------------------------------- /images/zugbruecke.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/zugbruecke.gif -------------------------------------------------------------------------------- /images/zugbruecke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/zugbruecke.png -------------------------------------------------------------------------------- /images/zugbruecke_klein.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/zugbruecke_klein.gif -------------------------------------------------------------------------------- /images/zugbruecke_klein.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/zugbruecke_klein.jpg -------------------------------------------------------------------------------- /images/zugbruecke_klein.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/images/zugbruecke_klein.png -------------------------------------------------------------------------------- /install.bat: -------------------------------------------------------------------------------- 1 | perl install.pl 2 | -------------------------------------------------------------------------------- /install.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/install.pl -------------------------------------------------------------------------------- /java/.gitignore: -------------------------------------------------------------------------------- 1 | /*.class 2 | -------------------------------------------------------------------------------- /java/Manifest.txt: -------------------------------------------------------------------------------- 1 | Main-Class: BBBike 2 | -------------------------------------------------------------------------------- /lib/.gitignore: -------------------------------------------------------------------------------- 1 | /5.[0-9].* 2 | /5.[0-9][0-9].* 3 | -------------------------------------------------------------------------------- /lib/BikePower.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/lib/BikePower.pm -------------------------------------------------------------------------------- /lib/BikePower/HTML.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/lib/BikePower/HTML.pm -------------------------------------------------------------------------------- /lib/BikePower/Tk.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/lib/BikePower/Tk.pm -------------------------------------------------------------------------------- /lib/BrowserInfo.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/lib/BrowserInfo.pm -------------------------------------------------------------------------------- /lib/Http.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/lib/Http.pm -------------------------------------------------------------------------------- /lib/KDEUtil.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/lib/KDEUtil.pm -------------------------------------------------------------------------------- /lib/Met/Wind.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/lib/Met/Wind.pm -------------------------------------------------------------------------------- /lib/Tk/Arrow.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/lib/Tk/Arrow.pm -------------------------------------------------------------------------------- /lib/Tk/Enscript.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/lib/Tk/Enscript.pm -------------------------------------------------------------------------------- /lib/Tk/Getopt.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/lib/Tk/Getopt.pm -------------------------------------------------------------------------------- /lib/Tk/K2Listbox.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/lib/Tk/K2Listbox.pm -------------------------------------------------------------------------------- /lib/Tk/LogScale.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/lib/Tk/LogScale.pm -------------------------------------------------------------------------------- /lib/Tk/RotFont.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/lib/Tk/RotFont.pm -------------------------------------------------------------------------------- /lib/Tk/RotX11Font.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/lib/Tk/RotX11Font.pm -------------------------------------------------------------------------------- /lib/Tk/SRTProgress.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/lib/Tk/SRTProgress.pm -------------------------------------------------------------------------------- /lib/Tk/UnderlineAll.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/lib/Tk/UnderlineAll.pm -------------------------------------------------------------------------------- /lib/Tk/WidgetDump.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/lib/Tk/WidgetDump.pm -------------------------------------------------------------------------------- /lib/Tk/grid000.xbm: -------------------------------------------------------------------------------- 1 | #define grid090_width 4 2 | #define grid090_height 1 3 | static unsigned char grid090_bits[] = { 4 | 0x03}; 5 | -------------------------------------------------------------------------------- /lib/Tk/layereye.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/lib/Tk/layereye.gif -------------------------------------------------------------------------------- /lib/TkChange.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/lib/TkChange.pm -------------------------------------------------------------------------------- /lib/TkCompat.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/lib/TkCompat.pm -------------------------------------------------------------------------------- /lib/UnixUtil.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/lib/UnixUtil.pm -------------------------------------------------------------------------------- /lib/VectorUtil.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/lib/VectorUtil.pm -------------------------------------------------------------------------------- /lib/Waitproc.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/lib/Waitproc.pm -------------------------------------------------------------------------------- /lib/Win32Util.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/lib/Win32Util.pm -------------------------------------------------------------------------------- /lib/WinCompat.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/lib/WinCompat.pm -------------------------------------------------------------------------------- /lib/click.au: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/lib/click.au -------------------------------------------------------------------------------- /lib/click.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/lib/click.wav -------------------------------------------------------------------------------- /lib/wettermeldung2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/lib/wettermeldung2 -------------------------------------------------------------------------------- /mapserver/brb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/mapserver/brb/Makefile -------------------------------------------------------------------------------- /mapserver/brb/brb.html-tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/mapserver/brb/brb.html-tpl -------------------------------------------------------------------------------- /mapserver/brb/brb.map-tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/mapserver/brb/brb.map-tpl -------------------------------------------------------------------------------- /mapserver/brb/empty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/mapserver/brb/empty.html -------------------------------------------------------------------------------- /mapserver/brb/help.html-tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/mapserver/brb/help.html-tpl -------------------------------------------------------------------------------- /mapserver/brb/mapserver.conf: -------------------------------------------------------------------------------- 1 | CONFIG 2 | ENV 3 | MS_MAP_PATTERN "^/.*\.map$" 4 | END 5 | END 6 | -------------------------------------------------------------------------------- /mapserver/brb/query.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/mapserver/brb/query.html -------------------------------------------------------------------------------- /mapserver/brb/query_footer2.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /misc/BASE: -------------------------------------------------------------------------------- 1 | ampelschaltung-orig.txt H 2 | -------------------------------------------------------------------------------- /misc/GNUmakefile: -------------------------------------------------------------------------------- 1 | ../data/GNUmakefile -------------------------------------------------------------------------------- /misc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/misc/Makefile -------------------------------------------------------------------------------- /misc/abdeckung.bbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/misc/abdeckung.bbd -------------------------------------------------------------------------------- /misc/abdeckung.bbd-orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/misc/abdeckung.bbd-orig -------------------------------------------------------------------------------- /misc/abdeckung2.bbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/misc/abdeckung2.bbd -------------------------------------------------------------------------------- /misc/ampelschaltung-orig.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/misc/ampelschaltung-orig.txt -------------------------------------------------------------------------------- /misc/ampelschaltung2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/misc/ampelschaltung2.txt -------------------------------------------------------------------------------- /misc/ampelschaltung_rules.bbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/misc/ampelschaltung_rules.bbd -------------------------------------------------------------------------------- /misc/data_corrected/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/misc/data_corrected/Makefile -------------------------------------------------------------------------------- /misc/garmin_userdef_symbols/.gitignore: -------------------------------------------------------------------------------- 1 | /bike2015 2 | -------------------------------------------------------------------------------- /misc/gps_correction_all.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/misc/gps_correction_all.dat -------------------------------------------------------------------------------- /misc/kartensignaturen/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/misc/kartensignaturen/README -------------------------------------------------------------------------------- /misc/mkgmap/srt-style/version: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /misc/mkgmap/typ/M000002a.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/misc/mkgmap/typ/M000002a.TXT -------------------------------------------------------------------------------- /misc/mkgmap/typ/M000002a.TYP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/misc/mkgmap/typ/M000002a.TYP -------------------------------------------------------------------------------- /misc/webcams.bbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/misc/webcams.bbd -------------------------------------------------------------------------------- /misc/weblinks.bbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/misc/weblinks.bbd -------------------------------------------------------------------------------- /miscsrc/ApproxCityparts.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/miscsrc/ApproxCityparts.pm -------------------------------------------------------------------------------- /miscsrc/BBBikeOsmUtil.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/miscsrc/BBBikeOsmUtil.pm -------------------------------------------------------------------------------- /miscsrc/Cov.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/miscsrc/Cov.pm -------------------------------------------------------------------------------- /miscsrc/GeocoderAddr.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/miscsrc/GeocoderAddr.pm -------------------------------------------------------------------------------- /miscsrc/VMZTool.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/miscsrc/VMZTool.pm -------------------------------------------------------------------------------- /miscsrc/XXX_new_comments.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/miscsrc/XXX_new_comments.pl -------------------------------------------------------------------------------- /miscsrc/ampelschaltung.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/miscsrc/ampelschaltung.pl -------------------------------------------------------------------------------- /miscsrc/any2gpsman: -------------------------------------------------------------------------------- 1 | gpx2gpsman -------------------------------------------------------------------------------- /miscsrc/bbbike.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/miscsrc/bbbike.el -------------------------------------------------------------------------------- /miscsrc/bbbike_chooser.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/miscsrc/bbbike_chooser.pl -------------------------------------------------------------------------------- /miscsrc/bbd2esri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/miscsrc/bbd2esri -------------------------------------------------------------------------------- /miscsrc/bbd2osm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/miscsrc/bbd2osm -------------------------------------------------------------------------------- /miscsrc/bbr2bbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/miscsrc/bbr2bbd -------------------------------------------------------------------------------- /miscsrc/check_berlin_plz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/miscsrc/check_berlin_plz -------------------------------------------------------------------------------- /miscsrc/check_cont: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/miscsrc/check_cont -------------------------------------------------------------------------------- /miscsrc/check_images: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/miscsrc/check_images -------------------------------------------------------------------------------- /miscsrc/check_neighbour: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/miscsrc/check_neighbour -------------------------------------------------------------------------------- /miscsrc/check_points: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/miscsrc/check_points -------------------------------------------------------------------------------- /miscsrc/combine_streets.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/miscsrc/combine_streets.pl -------------------------------------------------------------------------------- /miscsrc/convert2hafas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/miscsrc/convert2hafas -------------------------------------------------------------------------------- /miscsrc/convert_berlinmap.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/miscsrc/convert_berlinmap.pl -------------------------------------------------------------------------------- /miscsrc/convert_coordsys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/miscsrc/convert_coordsys -------------------------------------------------------------------------------- /miscsrc/convert_radwege: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/miscsrc/convert_radwege -------------------------------------------------------------------------------- /miscsrc/dwd-soil-stations.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/miscsrc/dwd-soil-stations.pl -------------------------------------------------------------------------------- /miscsrc/flood_search.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/miscsrc/flood_search.pl -------------------------------------------------------------------------------- /miscsrc/geocode_images: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/miscsrc/geocode_images -------------------------------------------------------------------------------- /miscsrc/grepstrassen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/miscsrc/grepstrassen -------------------------------------------------------------------------------- /miscsrc/insert_points: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/miscsrc/insert_points -------------------------------------------------------------------------------- /miscsrc/link_ext_mod.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/miscsrc/link_ext_mod.pl -------------------------------------------------------------------------------- /miscsrc/match_bbd_data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/miscsrc/match_bbd_data -------------------------------------------------------------------------------- /miscsrc/missing_streets.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/miscsrc/missing_streets.pl -------------------------------------------------------------------------------- /miscsrc/mudways-enrich.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/miscsrc/mudways-enrich.pl -------------------------------------------------------------------------------- /miscsrc/newstreetform_data.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/miscsrc/newstreetform_data.pl -------------------------------------------------------------------------------- /miscsrc/osm2bbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/miscsrc/osm2bbd -------------------------------------------------------------------------------- /miscsrc/osm2bbd-postprocess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/miscsrc/osm2bbd-postprocess -------------------------------------------------------------------------------- /miscsrc/small_berlinmap.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/miscsrc/small_berlinmap.pl -------------------------------------------------------------------------------- /miscsrc/sort-coords-data.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/miscsrc/sort-coords-data.pl -------------------------------------------------------------------------------- /miscsrc/sortbycat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/miscsrc/sortbycat -------------------------------------------------------------------------------- /miscsrc/steigung_stat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/miscsrc/steigung_stat -------------------------------------------------------------------------------- /miscsrc/steps_stats.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/miscsrc/steps_stats.pl -------------------------------------------------------------------------------- /miscsrc/str_stat.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/miscsrc/str_stat.pl -------------------------------------------------------------------------------- /miscsrc/tkzincbbbike: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/miscsrc/tkzincbbbike -------------------------------------------------------------------------------- /miscsrc/track_stats.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/miscsrc/track_stats.pl -------------------------------------------------------------------------------- /miscsrc/trafficlightgraph.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/miscsrc/trafficlightgraph.pl -------------------------------------------------------------------------------- /miscsrc/typ2legend.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/miscsrc/typ2legend.pl -------------------------------------------------------------------------------- /msg/bbbike/en: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/msg/bbbike/en -------------------------------------------------------------------------------- /msg/install/en: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/msg/install/en -------------------------------------------------------------------------------- /plugins/BBBikeFlickrPlugin.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/plugins/BBBikeFlickrPlugin.pm -------------------------------------------------------------------------------- /plugins/BBBikeFloodSearchPlugin.pm: -------------------------------------------------------------------------------- 1 | ../miscsrc/flood_search.pl -------------------------------------------------------------------------------- /plugins/BBBikeGeoURLPlugin.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/plugins/BBBikeGeoURLPlugin.pm -------------------------------------------------------------------------------- /plugins/BBBikeRuler.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/plugins/BBBikeRuler.pm -------------------------------------------------------------------------------- /plugins/BBBikeSalesman.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/plugins/BBBikeSalesman.pm -------------------------------------------------------------------------------- /plugins/BBBikeThunder.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/plugins/BBBikeThunder.pm -------------------------------------------------------------------------------- /plugins/BBBikeViewImages.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/plugins/BBBikeViewImages.pm -------------------------------------------------------------------------------- /plugins/FahrinfoQuery.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/plugins/FahrinfoQuery.pm -------------------------------------------------------------------------------- /plugins/GeocoderPlugin.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/plugins/GeocoderPlugin.pm -------------------------------------------------------------------------------- /plugins/KaupertsPlugin.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/plugins/KaupertsPlugin.pm -------------------------------------------------------------------------------- /plugins/LogTracker.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/plugins/LogTracker.pm -------------------------------------------------------------------------------- /plugins/LuiseBerlin.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/plugins/LuiseBerlin.pm -------------------------------------------------------------------------------- /plugins/MerkaartorPlugin.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/plugins/MerkaartorPlugin.pm -------------------------------------------------------------------------------- /plugins/MultiMap.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/plugins/MultiMap.pm -------------------------------------------------------------------------------- /plugins/SRTShortcuts.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/plugins/SRTShortcuts.pm -------------------------------------------------------------------------------- /plugins/WaypointUploader.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/plugins/WaypointUploader.pm -------------------------------------------------------------------------------- /port/ci/travis-functions.sh: -------------------------------------------------------------------------------- 1 | ci-functions.sh -------------------------------------------------------------------------------- /port/debian/compat: -------------------------------------------------------------------------------- 1 | 8 2 | -------------------------------------------------------------------------------- /port/debian/docs: -------------------------------------------------------------------------------- 1 | README 2 | README.english 3 | CHANGES 4 | -------------------------------------------------------------------------------- /port/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /port/freebsd/pkg-message: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/port/freebsd/pkg-message -------------------------------------------------------------------------------- /port/old-debian/compat: -------------------------------------------------------------------------------- 1 | 4 2 | -------------------------------------------------------------------------------- /port/rpm/.gitignore: -------------------------------------------------------------------------------- 1 | /.rpm.release 2 | -------------------------------------------------------------------------------- /port/rpm/mkrpm.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/port/rpm/mkrpm.pl -------------------------------------------------------------------------------- /port/travis-ci: -------------------------------------------------------------------------------- 1 | ci -------------------------------------------------------------------------------- /port/windows/.gitignore: -------------------------------------------------------------------------------- 1 | /bbbike.iss 2 | /bbbike-snapshot-*.iss 3 | -------------------------------------------------------------------------------- /port/windows/bbbike.tpl.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/port/windows/bbbike.tpl.iss -------------------------------------------------------------------------------- /projects/.gitignore: -------------------------------------------------------------------------------- 1 | /bbbike.sourceforge.net 2 | /bbbike-timeline 3 | /radlstadtplan_muenchen 4 | -------------------------------------------------------------------------------- /projects/bbbike.de-hosteurope/.gitignore: -------------------------------------------------------------------------------- 1 | /.last 2 | /.not_rsyncable 3 | /BBBike 4 | /cgi-bin 5 | /public 6 | -------------------------------------------------------------------------------- /projects/bbbike.de-hosteurope/etc/mapserver-brb-brb.map-localinc-jessie: -------------------------------------------------------------------------------- 1 | [% -%] 2 | -------------------------------------------------------------------------------- /projects/bbbike.de-hosteurope/public/robots-private.txt: -------------------------------------------------------------------------------- 1 | User-agent: W3C-checklink 2 | Allow: / 3 | 4 | User-agent: * 5 | Disallow: / 6 | -------------------------------------------------------------------------------- /t/.gitignore: -------------------------------------------------------------------------------- 1 | /tmp/ -------------------------------------------------------------------------------- /t/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/Makefile -------------------------------------------------------------------------------- /t/abbiegen.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/abbiegen.t -------------------------------------------------------------------------------- /t/bbbikecgiapi.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/bbbikecgiapi.t -------------------------------------------------------------------------------- /t/bbbikecgicache.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/bbbikecgicache.t -------------------------------------------------------------------------------- /t/bbbikecgiutil.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/bbbikecgiutil.t -------------------------------------------------------------------------------- /t/bbbikeedit-fmt-text.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/bbbikeedit-fmt-text.t -------------------------------------------------------------------------------- /t/bbbikegeojson.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/bbbikegeojson.t -------------------------------------------------------------------------------- /t/bbbikegooglemap-selenium.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/bbbikegooglemap-selenium.t -------------------------------------------------------------------------------- /t/bbbikegooglemap.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/bbbikegooglemap.t -------------------------------------------------------------------------------- /t/bbbikerouting.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/bbbikerouting.t -------------------------------------------------------------------------------- /t/cgi-masstest.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/cgi-masstest.pl -------------------------------------------------------------------------------- /t/cgi-mechanize.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/cgi-mechanize.t -------------------------------------------------------------------------------- /t/cgi-test.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/cgi-test.t -------------------------------------------------------------------------------- /t/cgi.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/cgi.t -------------------------------------------------------------------------------- /t/cgi2.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/cgi2.pl -------------------------------------------------------------------------------- /t/cgihead.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/cgihead.t -------------------------------------------------------------------------------- /t/cvsdiffbbd.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/cvsdiffbbd.t -------------------------------------------------------------------------------- /t/data-test/ampeln: -------------------------------------------------------------------------------- 1 | # -*- mode:bbbike -*- 2 | PlaDeLu X 9229,8785 3 | Koppenstr F 12612,12470 4 | -------------------------------------------------------------------------------- /t/data-test/comments_path: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/data-test/comments_path -------------------------------------------------------------------------------- /t/data-test/faehren: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/data-test/faehren -------------------------------------------------------------------------------- /t/data-test/fragezeichen: -------------------------------------------------------------------------------- 1 | Fragezeichen1 ? -11487,-2373 -11472,-2406 -11475,-2454 2 | Fragezeichen2 ? -11015,-3091 -10859,-3249 3 | -------------------------------------------------------------------------------- /t/data-test/hoehe: -------------------------------------------------------------------------------- 1 | 39.7 X 22172,194 2 | 39.7 X 22145,208 3 | 55.0 X 21933,152 4 | 46.4 X 21968,-15 5 | 39.9 X 22060,-260 6 | -------------------------------------------------------------------------------- /t/data-test/strassen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/data-test/strassen -------------------------------------------------------------------------------- /t/dataset.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/dataset.t -------------------------------------------------------------------------------- /t/geocoder-addr.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/geocoder-addr.t -------------------------------------------------------------------------------- /t/grepstrassen.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/grepstrassen.t -------------------------------------------------------------------------------- /t/img/gpspostest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/img/gpspostest.jpg -------------------------------------------------------------------------------- /t/liveserver.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/liveserver.t -------------------------------------------------------------------------------- /t/locate.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/locate.t -------------------------------------------------------------------------------- /t/mapserver-util.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/mapserver-util.t -------------------------------------------------------------------------------- /t/mapserver_comment.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/mapserver_comment.t -------------------------------------------------------------------------------- /t/new_comments.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/new_comments.t -------------------------------------------------------------------------------- /t/old_comments.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/old_comments.t -------------------------------------------------------------------------------- /t/osm2bbd.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/osm2bbd.t -------------------------------------------------------------------------------- /t/plz-expected/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/plz-expected/1 -------------------------------------------------------------------------------- /t/plz-expected/10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/plz-expected/10 -------------------------------------------------------------------------------- /t/plz-expected/11: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/plz-expected/11 -------------------------------------------------------------------------------- /t/plz-expected/12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/plz-expected/12 -------------------------------------------------------------------------------- /t/plz-expected/2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/plz-expected/2 -------------------------------------------------------------------------------- /t/plz-expected/3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/plz-expected/3 -------------------------------------------------------------------------------- /t/plz-expected/4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/plz-expected/4 -------------------------------------------------------------------------------- /t/plz-expected/5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/plz-expected/5 -------------------------------------------------------------------------------- /t/plz-expected/6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/plz-expected/6 -------------------------------------------------------------------------------- /t/plz-expected/7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/plz-expected/7 -------------------------------------------------------------------------------- /t/plz-expected/8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/plz-expected/8 -------------------------------------------------------------------------------- /t/plz-expected/9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/plz-expected/9 -------------------------------------------------------------------------------- /t/plz.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/plz.t -------------------------------------------------------------------------------- /t/plzlogfile.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/plzlogfile.t -------------------------------------------------------------------------------- /t/radrouten-selenium.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/radrouten-selenium.t -------------------------------------------------------------------------------- /t/reverse-geocoding.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/reverse-geocoding.t -------------------------------------------------------------------------------- /t/route-descr.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/route-descr.t -------------------------------------------------------------------------------- /t/strasse.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/strasse.t -------------------------------------------------------------------------------- /t/strassen-agrep.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/strassen-agrep.t -------------------------------------------------------------------------------- /t/strassen-bench.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/strassen-bench.pl -------------------------------------------------------------------------------- /t/strassen-combine.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/strassen-combine.t -------------------------------------------------------------------------------- /t/strassen-gpx.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/strassen-gpx.t -------------------------------------------------------------------------------- /t/strassen-grid.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/strassen-grid.t -------------------------------------------------------------------------------- /t/strassen-kml.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/strassen-kml.t -------------------------------------------------------------------------------- /t/strassen-kreuzungen.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/strassen-kreuzungen.t -------------------------------------------------------------------------------- /t/strassen-lookup.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/strassen-lookup.t -------------------------------------------------------------------------------- /t/strassen-sort.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/strassen-sort.t -------------------------------------------------------------------------------- /t/strassen-stream.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/strassen-stream.t -------------------------------------------------------------------------------- /t/strassen.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/strassen.t -------------------------------------------------------------------------------- /t/strassennetz-heavy.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/strassennetz-heavy.t -------------------------------------------------------------------------------- /t/strassennetz.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/strassennetz.t -------------------------------------------------------------------------------- /t/temp_blockings_dates.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/temp_blockings_dates.t -------------------------------------------------------------------------------- /t/testbbd/globdir.bbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/testbbd/globdir.bbd -------------------------------------------------------------------------------- /t/tmp/.keep_me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/tmp/.keep_me -------------------------------------------------------------------------------- /t/typ2legend.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/typ2legend.t -------------------------------------------------------------------------------- /t/update.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/update.t -------------------------------------------------------------------------------- /t/vector-in-grid-tk.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/vector-in-grid-tk.t -------------------------------------------------------------------------------- /t/vectorutil.t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/t/vectorutil.t -------------------------------------------------------------------------------- /tcl/bbbike.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/tcl/bbbike.tcl -------------------------------------------------------------------------------- /tcl/strassen.tcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/tcl/strassen.tcl -------------------------------------------------------------------------------- /tmp/.keep_me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/tmp/.keep_me -------------------------------------------------------------------------------- /tmp/www/.keep_me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eserte/bbbike/1af14eae2b663ecb2e314a299e2bbca64bfc0f31/tmp/www/.keep_me --------------------------------------------------------------------------------