mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Include pressure data on UDDF import
Importing pressure samples on UDDF import was missing. This patch adds that bit of information to our import. See #499 Signed-off-by: Miika Turkia <miika.turkia@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
d98f715942
commit
4d48eb8262
1 changed files with 6 additions and 0 deletions
|
@ -418,6 +418,12 @@
|
|||
</xsl:attribute>
|
||||
</xsl:if>
|
||||
|
||||
<xsl:if test="tankpressure|u:tankpressure|u1:tankpressure != ''">
|
||||
<xsl:attribute name="pressure">
|
||||
<xsl:value-of select="concat(format-number(tankpressure|u:tankpressure|u1:tankpressure div 100000, '0.0'), ' bar')"/>
|
||||
</xsl:attribute>
|
||||
</xsl:if>
|
||||
|
||||
<xsl:if test="otu|u:otu|u1:otu > 0">
|
||||
<xsl:attribute name="otu">
|
||||
<xsl:value-of select="otu|u:otu|u1:otu"/>
|
||||
|
|
Loading…
Add table
Reference in a new issue