Changeset 10400 in genesis


Ignore:
Timestamp:
Apr 8, 2012, 8:22:49 PM (13 years ago)
Author:
rick
Message:

Aanpassingen coordinaten in Kaag en Braassem, de WGS84 (degrees) to NAD27
(decimals) conversion is done using:

http://transition.fcc.gov/mb/audio/bickel/DDDMMSS-decimal.html

Reported-by: henk

Files:
7 edited

Legend:

Unmodified
Added
Removed
  • nodes/CNodeAMSchiphol/wleiden.yaml

    r10374 r10400  
    55ileiden   : True
    66latitude  : "52.25493"
    7 location  : ""
    8 longitude : "4.75742"
     7location  : "52.261853"
     8longitude : "4.73463"
    99masterip  : "172.16.17.1"
    10 nodename  : "Schiphol"
     10nodename  : "AMSchiphol"
    1111nodetype  : "CNode"
    12 rdnap_x   : 111998
    13 rdnap_y   : 474286
     12rdnap_x   : "110442"
     13rdnap_y   : "474300"
    1414release   : "8.1-RELEASE"
    1515status    : "dw"
  • nodes/CNodeDrijfhuis/wleiden.yaml

    r10374 r10400  
    44comment   : "None"
    55ileiden   : True
    6 latitude  : "52.26384"
     6latitude  : "52.26387"
    77location  : "Jachthaven Drijfhuis,1431 AA,Aalsmeer"
    8 longitude : "4.74572"
     8longitude : "4.74555"
    99masterip  : "172.17.12.1"
    1010nodename  : "Drijfhuis"
    1111nodetype  : "CNode"
    12 rdnap_x   : 111208
    13 rdnap_y   : 475284
     12rdnap_x   : "111196"
     13rdnap_y   : "475288"
    1414release   : "8.2-RELEASE"
    1515status    : "up"
  • nodes/CNodeGraficall/wleiden.yaml

    r10374 r10400  
    44comment   : "None"
    55ileiden   : True
    6 latitude  : "52.15596"
     6latitude  : "52.15630"
    77location  : "Zusterflat Ziekenhuis Rijnland, Simon Smitweg 1, 2353 GA, Leiderdorp"
    8 longitude : "4.54125"
     8longitude : "4.53926"
    99masterip  : "172.24.16.1"
    1010nodename  : "Graficall"
    1111nodetype  : "CNode"
    12 rdnap_x   : 97110
    13 rdnap_y   : 463425
     12rdnap_x   : "96974"
     13rdnap_y   : "463464"
    1414release   : "8.2-RELEASE"
    1515status    : "up"
  • nodes/CNodeRecpark/wleiden.yaml

    r10374 r10400  
    44comment   : "None"
    55ileiden   : True
    6 latitude  : "52.25834"
     6latitude  : "52.25868"
    77location  : "Recreatiepark,Uiterweg 214,1431AJ,Aalsmeer"
    8 longitude : "4.72635"
     8longitude : "4.75814"
    99masterip  : "172.17.11.1"
    1010nodename  : "Recpark"
    1111nodetype  : "CNode"
    12 rdnap_x   : 109880
    13 rdnap_y   : 474684
     12rdnap_x   : "112051"
     13rdnap_y   : "474703"
    1414release   : "8.2-RELEASE"
    1515status    : "up"
  • nodes/proxy17/wleiden.yaml

    r10374 r10400  
    88internalif: "vr1"
    99internalroute: "172.17.0.33"
    10 latitude  : "52.26427"
    11 location  : "Somewhere in Aalsmeer (line of sight Watertoren)"
    12 longitude : "4.75732"
     10latitude  : "52.25868"
     11location  : "Jasmijnstraat 25 1431 RH Aalsmeer"
     12longitude : "4.75797"
    1313masterip  : "172.17.0.36"
    1414nat       : True
     
    1616nodetype  : "Proxy"
    1717proxyid   : 17
    18 rdnap_x   : 112000
    19 rdnap_y   : 475325
     18rdnap_x   : "112039"
     19rdnap_y   : "474703"
    2020release   : "8.2-RELEASE"
    2121status    : "up"
  • tools/gformat.py

    r10391 r10400  
    10771077
    10781078      for host,datadump in datadumps.iteritems():
    1079         datadump['latitude'], datadump['longitude'] = rdnap.rd2etrs(datadump['rdnap_x'], datadump['rdnap_y'])
     1079        if datadump['rdnap_x'] and datadump['rdnap_y']:
     1080          datadump['latitude'], datadump['longitude'] = rdnap.rd2etrs(datadump['rdnap_x'], datadump['rdnap_y'])
     1081        elif datadump['latitude'] and datadump['longitude']:
     1082          datadump['rdnap_x'], datadump['rdnap_y'] = rdnap.etrs2rd(datadump['latitude'], datadump['longitude'])
     1083
    10801084        if datadump['nodename'].startswith('Proxy'):
    10811085          datadump['nodename'] = datadump['nodename'].lower()
  • tools/rdnap.py

    r10373 r10400  
    3838  """
    3939 
    40   item['phi'] = phi
    41   item['lam'] = lam
    42   item['func'] = 'etrs2rd'
     40  item = { 'phi' : phi, 'lam' : lam, 'func': 'etrs2rd' }
    4341  url = 'http://vanderzwet.net/rdnap/%(func)s/%(phi)s/%(lam)s/0/' % item
    4442
Note: See TracChangeset for help on using the changeset viewer.