-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Matrikkelidentifikator docs
- Loading branch information
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# Matrikkelidentifikator | ||
|
||
The matrikkelidentifikator is a 20-digit string, constructed in the following manner | ||
|
||
`KKKKGGGGGBBBBFFFFSSS` | ||
|
||
Where: | ||
* KKKK is kommune(municipality)-number padded with zeroes to be 4 characters wide | ||
* GGGGG is gårdsnummer, padded with zeroes to be 5 characters wide | ||
* BBBB is brukssnummer, padded with zeroes to be 4 characters wide | ||
* FFFF is festenummer, padded with zeroes to be 4 characters wide. This is optional, and set to 0000 if not present | ||
* SSS is seksjonsnummer, padded with zeroes to be 3 characters wide. This is optional, and set to 000 if not present | ||
|
||
## Example | ||
|
||
We have an eiendom: | ||
* kommune: 0301 | ||
* gårdsnummer: 31 | ||
* bruksnummer: 472 | ||
* festenummer: null | ||
* seksjonsnummer: null | ||
|
||
This becomes: `03010003104720000000` |