diff --git a/src/MDConcCloserLocationTypes.php b/src/MDConcCloserLocationTypes.php new file mode 100644 index 0000000..39340f4 --- /dev/null +++ b/src/MDConcCloserLocationTypes.php @@ -0,0 +1,36 @@ + + */ +declare(strict_types = 1); + +/** + * Provides lists for categorizing spelled out closer location types. + */ +final class MDConcCloserLocationTypes { + + const LOCATION_TYPES_VERBOSE = [ + + # Place of recording + "" => "0", + "0" => "0", + + # Place of recording + "1" => "1", + "Place of recording" => "1", + + # Finding place + "2" => "2", + "Fundort" => "2", + "Place of discovery" => "2", + + # Former place + "3" => "3", + "Former place" => "3", + + ]; + +}