Japan Geo Reverse Lookup
A Rust library for reverse geocoding in Japan. Given a longitude and latitude, this library returns information about the region(s) the coordinates are located in, including code, name, and English name.
Installation
Rust
// reversejp-rust/examples/demo.rs
use ReverseJp;
let reverse_jp = with_embedded_data.unwrap;
let props = reverse_jp.find_properties;
for prop in props
Example output:
Code: 130010, Name: 東京都, English Name: Tokyo
Code: 1310100, Name: 千代田区, English Name: Chiyoda City
Python
# reversejp-python/examples/demo.py
=
Example output:
130010 東京都 Tokyo
1310100 千代田区 Chiyoda City
License
MIT
Data is sourced from the Japan Meteorological Agency website.