邮政编码/地址查找器
像很多人一样,我想要邮局 PAF 文件来获取邮政编码到地址数据。我现在拥有的是操作系统坐标文件的邮政编码。有什么解决方案可以获取此类数据吗?我可以从卫星导航邮政编码文件中提取任何可靠的数据吗?
Like a lot of people I would like the Post Office PAF file for Postcode to Address data. What I have at the minute is the Postcode to O/S coordinates file. Are there any solutions for getting this type of data ? Could I rip any credible data from a sat nav postcode file ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我使用的来源是雅虎地理星球。
您可以下载 TSV 格式的整个 GeoPlanet 数据文件。
当我下载它时,我只是使用 mysqlimport 将它导入到 mysql 中。
http://developer.yahoo.com/geo/geoplanet/data/
包含世界上每个不同地理位置的记录。大量的邮政编码(几乎是我在英国需要的所有邮政编码)。
您所需要做的就是仅使用
place_type
zip 的记录。示例
点击 https://i.sstatic.net/1l2Yc.png
The source which I use is Yahoo Geo Planet.
You can download the entire GeoPlanet Data file which comes in TSV format.
When I downloaded it I just imported it to mysql using mysqlimport.
http://developer.yahoo.com/geo/geoplanet/data/
It contains a record for every distinct geographically location in the world. A tonne of post codes, (pretty much every code I have needed for UK).
All you would need to do is only use records with are of
place_type
zip.Example
Click https://i.sstatic.net/1l2Yc.png
对于新西兰数据,最好的选择是使用新西兰邮政官方的 邮政地址文件 (PAF) 和新西兰土地信息 (LINZ) 带有纬度和经度地理坐标的街道地址文件。如果您更喜欢使用 SOAP 或 REST API 进行编程,那么地址查找器搜索 API< /a> 与 地理编码地址 API 结合将有助于批量反向查找。
For New Zealand data, your best bet is to use the official NZ Post’s Postal Address File (PAF) and Land Information New Zealand (LINZ) for street address files with latitude and longitude geo coordinates. If you prefer programming with SOAP or REST APIs then an Address Finder Search API combined with the Geocode Address API would help for bulk reverse lookups.