1 | #
|
---|
2 | # REMEMBER
|
---|
3 | # latitude : phi
|
---|
4 | # longitude : lam
|
---|
5 | #
|
---|
6 | import os
|
---|
7 | import yaml
|
---|
8 | import urllib
|
---|
9 |
|
---|
10 | try:
|
---|
11 | CACHE_FILE = os.environ['RD2ETRS_CACHE']
|
---|
12 | except KeyError:
|
---|
13 | CACHE_FILE = os.path.join(os.environ['HOME'],'.rd2etrs.yaml')
|
---|
14 | coordinates = None
|
---|
15 |
|
---|
16 | def get_yaml(gfile):
|
---|
17 | """ Get configuration yaml for 'item'"""
|
---|
18 | f = open(gfile, 'r')
|
---|
19 | datadump = yaml.load(f)
|
---|
20 | return datadump
|
---|
21 |
|
---|
22 | def write_yaml(gfile, datadump):
|
---|
23 | """ Write configuration yaml for 'item'"""
|
---|
24 | try:
|
---|
25 | f = open(gfile, 'w')
|
---|
26 | f.write(yaml.dump(datadump, default_flow_style=False))
|
---|
27 | f.close()
|
---|
28 | except IOError:
|
---|
29 | pass
|
---|
30 |
|
---|
31 | def etrs2rd(lam, phi):
|
---|
32 | """ Convert etrs to rd """
|
---|
33 |
|
---|
34 | item['lam'] = lam
|
---|
35 | item['phi'] = phi
|
---|
36 | item['func'] = 'etrs2rd'
|
---|
37 | url = 'http://vanderzwet.net/rdnap/%(func)s/%(xrd)s/%(yrd)s/0/' % item
|
---|
38 |
|
---|
39 | f = urllib.urlopen(url)
|
---|
40 | raw = f.read()
|
---|
41 |
|
---|
42 | rdnap_x,rdnap_y,rdnap_h = raw.split('/')
|
---|
43 | return (rdnap_x, rdnap_y)
|
---|
44 |
|
---|
45 |
|
---|
46 |
|
---|
47 | def rd2etrs(xrd, yrd, hnap=0.0):
|
---|
48 | """
|
---|
49 | Convert rd to etrs
|
---|
50 | JavaScript Version: https://rdinfo.kadaster.nl/rd/transformator.html
|
---|
51 | """
|
---|
52 | # Get cache is exists
|
---|
53 | global coordinates
|
---|
54 | if coordinates == None:
|
---|
55 | try:
|
---|
56 | coordinates = get_yaml(CACHE_FILE)
|
---|
57 | except (IOError,AttributeError):
|
---|
58 | coordinates = dict()
|
---|
59 | pass
|
---|
60 |
|
---|
61 | # Check if item in cache
|
---|
62 | xrd = float(str(xrd))
|
---|
63 | yrd = float(str(yrd))
|
---|
64 | if coordinates.has_key((xrd, yrd)):
|
---|
65 | return coordinates[(xrd, yrd)]
|
---|
66 |
|
---|
67 | # Get new coordinate
|
---|
68 | item = dict()
|
---|
69 | item['xrd'] = xrd
|
---|
70 | item['yrd'] = yrd
|
---|
71 | item['hnap'] = hnap
|
---|
72 | item['func'] = 'rd2etrs'
|
---|
73 | url = 'http://vanderzwet.net/rdnap/%(func)s/%(xrd)s/%(yrd)s/%(hnap)s/' % item
|
---|
74 | print "### Not in Cache, Fetching coordinate %s, %s from %s" % (xrd, yrd, url)
|
---|
75 | f = urllib.urlopen(url)
|
---|
76 | raw = f.read()
|
---|
77 |
|
---|
78 | # Coordinates returned in 'odd' order
|
---|
79 | phi,lam,h = raw.split('/')
|
---|
80 | coordinates[(xrd, yrd)] = (lam, phi)
|
---|
81 | write_yaml(CACHE_FILE, coordinates)
|
---|
82 | return (lam, phi)
|
---|