English
Regulars table & Café

Done: The Profaner-ticket

 
- Page 1 -



Normann
Strübli
I have me always demand as well looks would if one
a Deutschlandkarte takes and any Members time einzeichnet...

OK, soooviel Time I had then still not

but with denjenigen with the most Posts in this Forum have I
me The work time made.
the whole erhebt naturally none claim on Vollständigkeit or accuracy.



PS: falls you Perhaps something on???
 
11/02/04  
 



 
- Page 2 -



Normann
Strübli


the sees Yes really very very promising from, good work!

can certainly not only iF for its tack using separate is Perhaps too
for others programs interestingly...

The list contains ne whole crowd nützlicher info:
state
Bundesland
county
Landkreis
Verwaltungszusammenschluss
place
part of town/Stadtteil
Gemeindeteil unspezifizierter manner
Breitengrad
Längengrad
Autokennzeichen
postcode(en)

and Dohren is too with Drin -and the wants already what hot!
now need one only another suitable Deutschlandkarte and a couple leads
for Lengths and Breitengrade.
 
11/04/04  
 



very, a beautiful large ticket ala 800x600, and then könn wa Yes erstma with nem Profan-Progg begin the To testing,- thereafter mach ichs here in the community ala PHP->Profil.

salvo, the becomes goil, iF
 
11/04/04  
 




Frank
Abbing
Hi.

Spitzenseite! Ahaus standing too drin...
 
11/04/04  
 




Manfred
Barei
Hello Norman,

hears not badly on, could very interesant go a Übersichtskarte with all Profanern (but only such The this entry want, it can Yes his the of/ one this entry of where it comes not would like )

means on The work and fluks a ticket prepares into itself eachone present can, if it wants!

Grus from the Heath of Manfred
 
Zu wenig Wissen ist gefärlich, zu viel auch.(XProfan X4) | Win 10 Pro 64 | Win7 Ultimate 32/64 | AMD FX-8320, 16GB, GeForce GT 630 |
11/04/04  
 




Normann
Strübli
ticket - find I well.

has because about already jmd. started one proggi To write???
what me yet missing are (ausgehend of this ticket) The wide/ Längengrade the
Eckpunkte this ticket.
Anhand this should itself still right simply The restlichen Coordinates converting let.
has The already someone?
 
11/05/04  
 




Michael
Dell
Uuups stood already there, there i was well with Blindheit geschalge.

Sorry...
 
Salu Michael...

Hab zwar krumme Fieß awer dofir e' ecklich Gsicht! 
11/05/04  
 




I mean I Have there ne nice File (as attachment downloadable) made.

and the from the Source first rausextrahiert:
CompileMarkSeparation
/**
* Converts degrees/minutes/seconds to degrees
*
* Converts a string which represents a latitude/longitude as degree/minutes/seconds
* to a float degree value. If no valid string is passed it will return 0.
*
* @access  public
* @param   string  $dms  latitude/longitude as degree/minutes/seconds
* @return  float   degree
*/

function dms2deg($dms, $language = GEO_LANGUAGE_DEFAULT) {

    global $cfgStrings;
     $negativeSigns = array($cfgStrings[GEO_ORIENTATION_SHORT][$language][4], $cfgStrings[GEO_ORIENTATION_SHORT][$language][6], -);
     $negativeSignsString = $cfgStrings[GEO_ORIENTATION_SHORT][$language][4].$cfgStrings[GEO_ORIENTATION_SHORT][$language][6];

    if (strlen($dms) == 6) {

         $dms = 0.$dms;

    } elseif (strlen($dms) == 5) {

         $dms = 00.$dms;

    }

     $searchPattern = |s*([$negativeSignsString-+]?)s*(d{1,3})[°s]*(d{1,2})[\s]*(d{1,2})([,.]*)(d*)[\s]*([$negativeSignsString-+]?)|i;

    if(preg_match($searchPattern, $dms, $result)) {

        if (in_array(strtoupper($result[1]), $negativeSigns) || in_array(strtoupper($result[7]), $negativeSigns)) {

             $algSign = -1.;

        } else {

             $algSign = 1.;

        }

        if (((1. * $result[2]) > 360) || ($result[3] >= 60) || ($result[4] >= 60)) {

            return PEAR::raiseError(Values out of range);

        }

        return $algSign * ($result[2] +(($result[3] + (($result[4]...$result[6]) * 10/6)/100)*10/6)/100);

    } else {

        return PEAR::raiseError(No DMS-Format (Like 51° 24 32.123\ W));

    }

}

/**
* Converts a float value to degrees/minutes/seconds
*
* Converts a float value to degrees/minutes/second (e.g. 50.1833300 to 50° 10 60)
* The seconds could contain the number of decimal places one passes to the optional
* parameter $decPlaces. The direction (N, S, W, E) must be added manually
* (e.g. $output = E .deg2dms(7.441944); )
*
* @access  public
* @param   float   $degFloat
* @param   int     $decPlaces
* @return  string  degrees minutes seconds
*/

function deg2dms($degFloat, $decPlaces = 0) {

     $degree = abs(floor($degFloat));
     $minSec = 60 * ($degFloat - $degree);
     $minutes = floor($minSec);
     $seconds = round(($minSec - $minutes) * 60, $decPlaces);
    return $degree.° $minutes $seconds;

}

/**
* Returns the radius of the earth
*
* Returns the radius of the earth in the given unit.
* GEO_EARTH_RADIUS is set to the mean value: 6371. km
* equatorial radius as of WGS84: 6378.137 km
*
* @access  public
* @param   int     $unit  use the GEO_UNIT_* constants
*/

function getEarthRadius($unit = GEO_UNIT_DEFAULT) {

    switch ($unit) {

        case GEO_UNIT_KM:// Kilometer
        return GEO_EARTH_RADIUS;
        case GEO_UNIT_MI:// Meilen
        return GEO_EARTH_RADIUS * 0.621371;
        case GEO_UNIT_IN:// Zoll/Inch
        return GEO_EARTH_RADIUS * 39370.08;
        case GEO_UNIT_SM:// See-Meilen
        return GEO_EARTH_RADIUS * 0.5399568;
        default:
        return GEO_EARTH_RADIUS;

    }

}

unfortunately Have I this WE no bisl Time means stell ichs time simply here into,- otherwise würd ichs quick hinproggen. Nurn hint in php is the point . one StringConcat. means $s=$s.Test is the same How s$=s$+Test,- only the one in php instead of $s=$s.Test sooner $s.=test write would - is aba the same. Achso, and php - Nich annoy let - goes too $s=$minutes bla $hours instead of $s=$minutes. bla .$hours write To must,- variables go means too in Strings geparst.

I würd me too really froin ifs opensource bliebe.

salvo, iF
 
11/06/04  
 



mandatory I there about still self ran? Hä?

salvo, iF
 
11/11/04  
 




Normann
Strübli
[quote:b8fe5d2610]mandatory I there about still self ran? Hä?[/quote:b8fe5d2610]
Nöö, having only latest week no Time but this WE werd I
something Basteln.
 
11/15/04  
 



any the Profil updaten.

I have new area postcode eingetüttelt. Please any The interest having on of/ one kommenten Profan-ticket To attend there a PLZ indicate.

The ticket self progg I strain.

salvo, iF
 
11/16/04  
 



Juuhuhuhuu gugt time into Memberlist.

salvo, iF
 
11/16/04  
 




R.Schneider
Hello IF,
Real calm! Have me too on it attempts be but miserable on the data base failed.
How have You, the with the PLZ resolved? have me The data base as TXT-File runtergeladen and wished tappt im dunkeln with Exel in a Dbase-File transform. thereby have I fixes the large cities a great many Postleitzahlen having, The not one DB-area fit.
Rudger
 
Perbody is nofect !
11/16/04  
 




Answer


Topictitle, max. 100 characters.
 

Systemprofile:

no Systemprofil laid out. [anlegen]

XProfan:

 Posting  Font  Smilies  ▼ 

Please register circa a Posting To verfassen.
 

Topic-Options

50.764 Views

Untitledvor 0 min.
Manfred Barei02/09/13
iF12/20/12
Juergen Baier01/08/12

Themeninformationen



Admins  |  AGB  |  Applications  |  Authors  |  Chat  |  Privacy Policy  |  Download  |  Entrance  |  Help  |  Merchantportal  |  Imprint  |  Mart  |  Interfaces  |  SDK  |  Services  |  Games  |  Search  |  Support

One proposition all XProfan, The there's!


My XProfan
Private Messages
Own Storage Forum
Topics-Remember-List
Own Posts
Own Topics
Clipboard
Log off
 Deutsch English Français Español Italia
Translations

Privacy Policy


we use Cookies only as Session-Cookies because of the technical necessity and with us there no Cookies of Drittanbietern.

If you here on our Website click or navigate, stimmst You ours registration of Information in our Cookies on XProfan.Net To.

further Information To our Cookies and moreover, How You The control above keep, find You in ours nachfolgenden Datenschutzerklärung.


all rightDatenschutzerklärung
i want none Cookie