Skip to content

Commit

Permalink
Fix lexing of bboxes to handle decimal points.
Browse files Browse the repository at this point in the history
  • Loading branch information
ByronCinNZ committed Oct 1, 2024
1 parent 66d0148 commit 61cd9cc
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -286,11 +286,12 @@
</xsl:for-each>
</xsl:for-each>-->
<xsl:for-each select=".//dc:coverage[. != '']">

<mri:extent>
<gex:EX_Extent>
<gex:geographicElement>
<gex:EX_GeographicBoundingBox>
<xsl:for-each select="tokenize(., ',|\..*')">
<xsl:for-each select="tokenize(., ',|\.\s+.*')">
<xsl:variable name="component" select="normalize-space(.)" />
<xsl:choose>
<xsl:when test="starts-with($component, 'North')">
Expand Down

0 comments on commit 61cd9cc

Please sign in to comment.