ntra00 / marc2bibframe

Convert marc to BIBFRAME 1.0 - see lcnetdev/marc2bibframe2 for current release
http://www.loc.gov/bibframe/
Other
64 stars 20 forks source link

MARC 752 #199

Open kiegel opened 9 years ago

kiegel commented 9 years ago

Field 752 (Added Entry-Hierarchical Place Name) does not provide subject access, rather it provides hierarchical access to place names. Conversion as a topic is not correct.

752 |a Germany |d Bonn. 752 |a Switzerland |d Zürich.

<http://example.org/99161784028101452topic17> a bf:Topic,
        madsrdf:HierarchicalGeographic ;
    bf:authorizedAccessPoint "Germany. Bonn." ;
    bf:hasAuthority [ a madsrdf:Authority ;
            madsrdf:authoritativeLabel "Germany. Bonn." ;
            madsrdf:componentList ( [ a madsrdf:Country ;
                        madsrdf:authoritativeLabel "Germany" ] [ a madsrdf:City ;
                        madsrdf:authoritativeLabel "Bonn." ] ) ] .

<http://example.org/99161784028101452topic18> a bf:Topic,
        madsrdf:HierarchicalGeographic ;
    bf:authorizedAccessPoint "Switzerland. Zürich." ;
    bf:hasAuthority [ a madsrdf:Authority ;
            madsrdf:authoritativeLabel "Switzerland. Zürich." ;
            madsrdf:componentList ( [ a madsrdf:Country ;
                        madsrdf:authoritativeLabel "Switzerland" ] [ a madsrdf:City ;
                        madsrdf:authoritativeLabel "Zürich." ] ) ] .

It is better to make it bf:Place.

(OCLC # 270561349)