Projekte
Aus Mein Wiki
Sebra (Diskussion | Beiträge) (→PLZ-Umkreissuche) |
Sebra (Diskussion | Beiträge) (→Fusca RefactorPHP) |
||
Zeile 4: | Zeile 4: | ||
* http://opengeodb.org/wiki/OpenGeoDB_Downloads | * http://opengeodb.org/wiki/OpenGeoDB_Downloads | ||
* http://www.php.de/beitragsarchiv/22418-umkreissuche-mit-postleitzahlen.html | * http://www.php.de/beitragsarchiv/22418-umkreissuche-mit-postleitzahlen.html | ||
+ | |||
+ | * http://www.togis.com/address-geodecoder/ | ||
+ | * http://www.geotag.de/geokoordinaten.html | ||
+ | |||
+ | * APIs | ||
+ | ** http://www.geotag.de/geocoding.html | ||
+ | |||
+ | |||
+ | * Entfernungsberechnung: | ||
+ | ** Haversine-Formel. | ||
+ | |||
+ | dlon = B_lon - A_lon | ||
+ | dlat = B_lat - A_lat | ||
+ | a = (sin(dlat/2))^2 + cos(A_lat) * cos(B_lat) * (sin(dlon/2))^2 | ||
+ | c = 2 * arcsin(min(1,sqrt(a))) | ||
+ | d = R * c | ||
+ | |||
+ | (R = Erdradius) | ||
+ | |||
+ | |||
+ | * http://www.kompf.de/gps/distcalc.html | ||
+ | Um die Entfernung in Kilometern zu bekommen, muss man noch den Arkuskosinus bilden und das Ergebnis mit dem Erdradius multiplizieren: | ||
+ | dist = 6378.388 * acos(sin(lat1) * sin(lat2) + cos(lat1) * cos(lat2) * cos(lon2 - lon1)) | ||
+ | mit dist: Entfernung in km | ||
+ | |||
+ | = Singlebörsen / Partnerbörse = | ||
+ | == Ideen / Vorbilder == | ||
+ | * KissNoFrog http://www.kissnofrog.de | ||
+ | * FlirtFair http://ext.flirtfair.net/002/index.php?pid=DE00225FN&sub=18476&spub_id=1j | ||
+ | * HaltMich.de http://www.haltmich.de | ||
+ | * OnlineGlück - http://www.onlineGlueck.de | ||
+ | |||
+ | = Fusca RefactorPHP = | ||
+ | [[Fusca RefactorPHP]] |