microsimulation / ijm-xml

XML files for the International Journal of Microsimulation
MIT License
0 stars 0 forks source link

City and Country inconsistency in affiliations #171

Open fred-atherden opened 4 years ago

fred-atherden commented 4 years ago

Cities should be captured using <addr-line><named-content content-type="city">...</named-content></addr-line> elements, as a direct child of <aff>. Countries should be captured using <country> as a direct child of <aff>.

City

The following articles contain <named-content content-type="city"> elements which are direct children of <aff> (when they should be contained in <addr-line>):

Example (ijm-00004)

<aff id="aff2">
    <label>2</label>
    <institution content-type="dept">Vaccines and Biologicals</institution>
    <institution>World Health Organization</institution>
    <named-content content-type="city">Geneva</named-content>
    <country>Switzerland</country>
</aff>

Country

ijm-00004 also contains a <country> element which is a child of <addr-line> (when it should be a direct child of <aff>):

<aff id="aff1">
    <label>1</label>
    <institution content-type="dept">Department of Physics</institution>
    <institution>University of Liverpool</institution>
    <addr-line>
        <named-content content-type="city">Liverpool</named-content>
        <country>United Kingdom</country>
    </addr-line>
</aff>