xslt - how to transform xml file to graphml file -


<?xml version="1.0" encoding="iso-8859-1"?> <fmimodeldescription   fmiversion="1.0"   modelname="bouncingball"   modelidentifier="bouncingball"   guid="{8c4e810f-3df3-4a00-8276-176fa3c9f003}"   numberofcontinuousstates="2"   numberofeventindicators="1"> <modelvariables>   <scalarvariable name="h" valuereference="0" description="height, used state">      <real start="1" fixed="true"/>   </scalarvariable>   <scalarvariable name="der(h)" valuereference="1" description="velocity of ball">      <real/>   </scalarvariable>    <scalarvariable name="v" valuereference="2" description="velocity of ball, used state">      <real/>   </scalarvariable>   <scalarvariable name="der(v)" valuereference="3" description="acceleration of ball">      <real/>   </scalarvariable>   <scalarvariable name="g" valuereference="3" description="acceleration of gravity"                    variability="parameter" alias="negatedalias">      <real start="9.81" fixed="true"/>   </scalarvariable>   <scalarvariable name="e" valuereference="4" description="dimensionless parameter"                    variability="parameter">      <real start="0.7" fixed="true"/>   </scalarvariable> </modelvariables>  <implementation>   <cosimulation_standalone>     <capabilities       canhandlevariablecommuni   cationstepsize="true"       canhandleevents="true"/>   </cosimulation_standalone> </implementation> </fmimodeldescription> 

this xml file, want convert graphml file, searched xslt, didn't find many documents conversion. new here, can me?


Comments

Popular posts from this blog

resizing Telegram inline keyboard -

command line - How can a Python program background itself? -

php - "cURL error 28: Resolving timed out" on Wordpress on Azure App Service on Linux -