In this step you will add the instructions that copy the story city and country to the city and country GN4 attributes.
<!-- <location/> -->
<city>
<xsl:value-of select="$DescriptiveMetadata/Location/Property[@FormalName='City']/@Value"/>
</city>
<!-- <state/> -->
<xsl:if test="$DescriptiveMetadata/Location/Property[@FormalName='Country']/@Value != 'ZZZ'">
<country>
<xsl:value-of select="$DescriptiveMetadata/Location/Property[@FormalName='Country']/@Value"/>
</country>
</xsl:if>
<!-- <countryCode/> -->