Skip to content

demot/arscode

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

arscode

arscode provides Rust types and utilities for working with the German Amtlicher Regionalschlüssel (ARS) — a twelve-digit hierarchical regional classification used to identify administrative regions in Germany from the country level down to municipalities.

Features

  • Parse and format ARS codes
  • Validate ARS code parts (state, district, county, admin associations, municipality)
  • Inspect and navigate administrative hierarchy (parent/child levels)
  • Convert between FederalState and ARSCode

Examples

use arscode::{ARSCode, ARSLevel, FederalState};

let municipality = ARSCode::new(5, 3, 15, 8, 4, 42).unwrap();
assert_eq!(municipality.level(), ARSLevel::MUNICIPALITY);
println!("{}", municipality);

let state: ARSCode = FederalState::Hamburg.into();
assert_eq!(state.level(), ARSLevel::STATE);

Reference

License This project is licensed under the MIT License.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages