Changeset 7732 for mauRepo/xml2owl
- Timestamp:
- 18/11/10 12:42:01 (10 years ago)
- Location:
- mauRepo/xml2owl/trunk
- Files:
-
- 1 added
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
mauRepo/xml2owl/trunk/pom.xml
r7721 r7732 94 94 <scope>test</scope> 95 95 </dependency> 96 97 <dependency> 98 <groupId>org.openrdf.sesame</groupId> 99 <artifactId>sesame-repository-api</artifactId> 100 <version>2.3.0</version> 101 <scope>compile</scope> 102 </dependency> 96 103 </dependencies> 97 104 -
mauRepo/xml2owl/trunk/protege.properties
r7726 r7732 1 1 #Protege Properties 2 #Fri Nov 12 14:53:05 GMT 2010 2 #Tue Nov 16 15:19:32 GMT 2010 3 history.projects.reopen=file\:/home/users/mnagni/workspace/ESGGateway/metafor/examples/newspaper/newspaper.pprj,file\:/home/users/mnagni/workspace/ESGGateway/metafor/examples/pizza/pizza.owl.pprj 3 4 SwitchableClassDefinitionType=edu.stanford.smi.protegex.owl.ui.cls.LogicClassDefinitionWidgetType 4 history.projects.reopen=file\:/home/users/mnagni/workspace/ESGGateway/metafor/examples/newspaper/newspaper.pprj,file\:/home/users/mnagni/workspace/ESGGateway/metafor/examples/pizza/pizza.owl.pprj -
mauRepo/xml2owl/trunk/src/main/java/ndg/ontology/OntIngester.java
r7726 r7732 137 137 } 138 138 139 private <T> void ingest(Iterator<T> ops, XQExpression xqe) throws XPathExpressionException, XQException , StatementSupportException{139 private <T> void ingest(Iterator<T> ops, XQExpression xqe) throws XPathExpressionException, XQException { 140 140 while (ops.hasNext()) { 141 141 T obj = ops.next(); 142 try { 142 143 if (obj instanceof AddLabel) 143 process((AddLabel)obj, xqe);144 process((AddLabel)obj, xqe); 144 145 if (obj instanceof AddTriple) 145 146 process((AddTriple)obj, xqe); 146 147 if (obj instanceof AddTripleLiteral) 147 148 process((AddTripleLiteral)obj, xqe); 149 } catch (StatementSupportException e) { 150 logger.error("Error! But continuing to loop. Detailed error follows ", e); 151 } 148 152 } 149 153 } … … 183 187 private void process(AddTripleLiteral item, XQExpression xqe) throws XPathExpressionException, XQException, StatementSupportException{ 184 188 String sbjClass = item.getOntSubject().trim(); 185 String ontPredicate = item.getOntPredicate().getUri().trim(); 186 XQResultSequence triples = executeXQuery(xqe, item.getXquery()); 187 188 while (triples.next()) { 189 String atVal = triples.getAtomicValue(); 190 191 String[] values = doSplit(atVal); 192 if (values.length != 2 || values[1] == null) 193 continue; 194 statementSupport.addLiteral(sbjClass, values[0], ontPredicate, values[1]); 189 String ontPredicate = ""; 190 if (item.getOntPredicate() == null) 191 throw new StatementSupportException("ontPredicate cannot be null!"); 192 193 if (item.getOntPredicate().getUri() != null) 194 ontPredicate = item.getOntPredicate().getUri().trim(); 195 196 197 XQResultSequence triples = executeXQuery(xqe, item.getXquery()); 198 199 while (triples.next()) { 200 String atVal = triples.getAtomicValue(); 201 202 String[] values = doSplit(atVal); 203 String sbjURI = null; 204 String objURI = null; 205 String predURI = null; 206 if (item.getOntPredicate().isDynamic() != null && item.getOntPredicate().isDynamic()) { 207 if (values.length != 3) 208 continue; 209 sbjURI = values[0]; 210 objURI = values[1]; 211 predURI = values[2]; 212 } else { 213 if (values.length != 2) 214 continue; 215 sbjURI = values[0]; 216 objURI = values[1]; 217 predURI = ontPredicate; 218 } 219 statementSupport.addLiteral(sbjClass, sbjURI, predURI, objURI); 195 220 } 196 221 -
mauRepo/xml2owl/trunk/src/test/resources/ingesterConfig.xml
r7726 r7732 85 85 http://www.earthsystemgrid.org/esg.owl#ComputingEnvironment 86 86 </ndg:ontSubject> 87 <ndg:ontPredicate uri=" >http://www.earthsystemgrid.org/esg.owl#hasInterconnectType"/>87 <ndg:ontPredicate uri="http://www.earthsystemgrid.org/esg.owl#hasInterconnectType"/> 88 88 <ndg:ontObject> 89 89 http://www.earthsystemgrid.org/esg.owl#InterconnectType … … 658 658 </ndg:addTriple> 659 659 660 <!-- model --> 661 <ndg:addTriple> 662 <ndg:ontSubject> 663 http://www.earthsystemgrid.org/esg.owl#Model 664 </ndg:ontSubject> 665 <ndg:ontPredicate uri="http://www.earthsystemgrid.org/esg.owl#hasChildModelComponent"/> 666 <ndg:ontObject> 667 http://www.earthsystemgrid.org/esg.owl#Model 668 </ndg:ontObject> 669 <ndg:xquery> 670 <![CDATA[ 671 declare default element namespace "http://www.metaforclimate.eu/schema/cim/1.5"; 672 for $comp in //CIMRecord 673 let $nodes := $comp/modelComponent/childComponent/modelComponent 674 let $res := for $item in $nodes 675 return 676 concat($comp/shortName, ";;", $item/shortName) 677 return $res]]> 678 </ndg:xquery> 679 </ndg:addTriple> 680 <!-- child model --> 681 <ndg:addTriple> 682 <ndg:ontSubject> 683 http://www.earthsystemgrid.org/esg.owl#Model 684 </ndg:ontSubject> 685 <ndg:ontPredicate uri="http://www.earthsystemgrid.org/esg.owl#hasChildModelComponent"/> 686 <ndg:ontObject> 687 http://www.earthsystemgrid.org/esg.owl#ModelComponent 688 </ndg:ontObject> 689 <ndg:xquery> 690 <![CDATA[ 691 declare default element namespace "http://www.metaforclimate.eu/schema/cim/1.5"; 692 for $comp in //CIMRecord 693 let $nodes := $comp/modelComponent/childComponent/modelComponent 694 let $res := for $item in $nodes//childComponent/modelComponent 695 return 696 concat($comp/shortName, ";;", $item/shortName) 697 return $res]]> 698 </ndg:xquery> 699 </ndg:addTriple> 700 <!-- child's model component--> 701 <ndg:addTriple> 702 <ndg:ontSubject> 703 http://www.earthsystemgrid.org/esg.owl#ModelComponent 704 </ndg:ontSubject> 705 <ndg:ontPredicate uri="http://www.earthsystemgrid.org/esg.owl#hasChildModelComponent"/> 706 <ndg:ontObject> 707 http://www.earthsystemgrid.org/esg.owl#ModelComponent 708 </ndg:ontObject> 709 <ndg:xquery> 710 <![CDATA[ 711 declare default element namespace "http://www.metaforclimate.eu/schema/cim/1.5"; 712 for $comp in //CIMRecord/modelComponent/childComponent/modelComponent/childComponent/modelComponent 713 let $nodes := $comp//childComponent/modelComponent 714 let $res := for $item in $nodes 715 return 716 concat($comp/shortName, ";;", $item/shortName) 717 return $res]]> 718 </ndg:xquery> 719 </ndg:addTriple> 660 720 661 721 <!-- model and childmodel --> … … 690 750 </ndg:xquery> 691 751 </ndg:addTriple> 752 692 753 <!-- model and childmodel --> 693 754 <ndg:addTriple> … … 749 810 </ndg:xquery> 750 811 </ndg:addTriple> 812 751 813 <!-- model and childmodel --> 752 814 <ndg:addTriple> … … 777 839 </ndg:addTriple> 778 840 779 780 841 <!-- model and childmodel --> 781 842 <ndg:addTriple> … … 805 866 </ndg:xquery> 806 867 </ndg:addTriple> 868 869 807 870 <!-- model and childmodel --> 808 871 <ndg:addTriple> … … 833 896 </ndg:addTriple> 834 897 835 <!-- model and childmodel --> 836 <ndg:addTripleLiteral> 837 <ndg:ontSubject> 838 http://www.earthsystemgrid.org/esg.owl#Model 839 </ndg:ontSubject> 840 <ndg:ontPredicate uri="http://www.earthsystemgrid.org/esg.owl#hasReference"/> 841 <ndg:xquery> 842 <![CDATA[ 898 <!-- model and childmodel --> 899 <ndg:addTripleLiteral> 900 <ndg:ontSubject> 901 http://www.earthsystemgrid.org/esg.owl#Model 902 </ndg:ontSubject> 903 <ndg:ontPredicate dynamic="true"/> 904 <ndg:xquery> 905 <![CDATA[ 906 declare default element namespace "http://www.metaforclimate.eu/schema/cim/1.5"; 907 declare namespace xs = "http://www.w3.org/2001/XMLSchema"; 908 declare namespace ndg = "http://www.ndg.ac.uk"; 909 declare variable $lookup external; 910 declare function ndg:getValueFromMap 911 ($node as node()*, $arg as xs:string) as xs:string* { 912 let $ret := for $el in $node 913 return 914 if (data($el/@CIMName) = $arg) 915 then data($el/@esgName) 916 else data(()) 917 return 918 if (count($ret) > 0) 919 then $ret[1] 920 else data(()) 921 }; 922 923 declare function ndg:mapProperty 924 ($node as node()*, $key as xs:string) as xs:string { 925 concat("http://www.earthsystemgrid.org/esg.owl#has", ndg:getValueFromMap($node, $key)) 926 }; 927 928 for $comp in //CIMRecord 929 let $nodes := $comp/modelComponent | $comp/modelComponent/childComponent/modelComponent 930 let $res := for $item in $nodes 931 let $types := for $type in $item/type/@value 932 let $props := for $prop in $item/componentProperties/componentProperty 933 return 934 concat($item/shortName, ";;", string-join(data($prop/value), ','), ";;", ndg:mapProperty($lookup//ndg:entry, concat($type, $prop/shortName))) 935 return $props 936 return $types 937 return $res]]> 938 </ndg:xquery> 939 </ndg:addTripleLiteral> 940 941 <!-- child's model component--> 942 <ndg:addTripleLiteral> 943 <ndg:ontSubject> 944 http://www.earthsystemgrid.org/esg.owl#ModelComponent 945 </ndg:ontSubject> 946 <ndg:ontPredicate dynamic="true"/> 947 <ndg:xquery> 948 <![CDATA[ 949 declare default element namespace "http://www.metaforclimate.eu/schema/cim/1.5"; 950 declare namespace xs = "http://www.w3.org/2001/XMLSchema"; 951 declare namespace ndg = "http://www.ndg.ac.uk"; 952 declare variable $lookup external; 953 declare function ndg:getValueFromMap 954 ($node as node()*, $arg as xs:string) as xs:string* { 955 let $ret := for $el in $node 956 return 957 if (data($el/@CIMName) = $arg) 958 then data($el/@esgName) 959 else data(()) 960 return 961 if (count($ret) > 0) 962 then $ret[1] 963 else data(()) 964 }; 965 966 declare function ndg:mapProperty 967 ($node as node()*, $key as xs:string) as xs:string { 968 concat("http://www.earthsystemgrid.org/esg.owl#has", ndg:getValueFromMap($node, $key)) 969 }; 970 971 for $comp in //CIMRecord/modelComponent/childComponent/modelComponent 972 let $nodes := $comp//childComponent/modelComponent 973 let $res := for $item in $nodes 974 let $types := for $type in $item/type/@value 975 let $props := for $prop in $item/componentProperties/componentProperty 976 return 977 concat($item/shortName, ";;", string-join(data($prop/value), ','), ";;", ndg:mapProperty($lookup//ndg:entry, concat($type, $prop/shortName))) 978 return $props 979 return $types 980 return $res]]> 981 </ndg:xquery> 982 </ndg:addTripleLiteral> 983 984 <!-- model and childmodel --> 985 <ndg:addTripleLiteral> 986 <ndg:ontSubject> 987 http://www.earthsystemgrid.org/esg.owl#Model 988 </ndg:ontSubject> 989 <ndg:ontPredicate uri="http://www.earthsystemgrid.org/esg.owl#isConfigured"/> 990 <ndg:xquery> 991 <![CDATA[ 843 992 declare default element namespace "http://www.metaforclimate.eu/schema/cim/1.5"; 844 declare namespace xs="http://www.w3.org/2001/XMLSchema"; 845 declare namespace myx = "http://www.functx.com"; 846 declare function myx:commaSeperatedListValue 847 ($arg as node()) as xs:string { 848 let $res := '' 849 for $prop in $arg/value 850 let $ret := concat($res, "," , $prop) 851 return $res 852 }; 853 for $comp in //CIMRecord 854 let $nodes := $comp/modelComponent | $comp/modelComponent/childComponent/modelComponent 993 for $comp in //CIMRecord 994 let $nodes := $comp/modelComponent | $comp/modelComponent/childComponent/modelComponent 995 let $res := for $item in $nodes 996 return 997 concat($item/shortName, ";;", "true") 998 return $res]]> 999 </ndg:xquery> 1000 </ndg:addTripleLiteral> 1001 1002 <!-- child's model component--> 1003 <ndg:addTripleLiteral> 1004 <ndg:ontSubject> 1005 http://www.earthsystemgrid.org/esg.owl#ModelComponent 1006 </ndg:ontSubject> 1007 <ndg:ontPredicate uri="http://www.earthsystemgrid.org/esg.owl#isConfigured"/> 1008 <ndg:xquery> 1009 <![CDATA[ 1010 declare default element namespace "http://www.metaforclimate.eu/schema/cim/1.5"; 1011 1012 for $comp in //CIMRecord/modelComponent/childComponent/modelComponent 1013 let $nodes := $comp//childComponent/modelComponent 855 1014 let $res := for $item in $nodes 856 let $types := for $type in $item/type/@value 857 let $props := for $prop in $item/componentProperties/componentProperty 858 return 859 concat($item/shortName, ";;", myx:commaSeperatedListValue($prop/value), ";;", "http://www.earthsystemgrid.org/esg.owl#has$type+$prop/shortName") 860 return $props 861 return $types 862 return $res]]> 863 </ndg:xquery> 864 </ndg:addTripleLiteral> 1015 return 1016 concat($item/shortName, ";;", "true") 1017 return $res]]> 1018 </ndg:xquery> 1019 </ndg:addTripleLiteral> 1020 1021 <!-- model and childmodel --> 1022 <ndg:addTripleLiteral> 1023 <ndg:ontSubject> 1024 http://www.earthsystemgrid.org/esg.owl#Model 1025 </ndg:ontSubject> 1026 <ndg:ontPredicate uri="http://www.earthsystemgrid.org/esg.owl#hasVersion"/> 1027 <ndg:xquery> 1028 <![CDATA[ 1029 declare default element namespace "http://www.metaforclimate.eu/schema/cim/1.5"; 1030 for $comp in //CIMRecord 1031 let $nodes := $comp/modelComponent | $comp/modelComponent/childComponent/modelComponent 1032 let $res := for $item in $nodes 1033 return 1034 concat($item/shortName, ";;", $item/shortName) 1035 return $res]]> 1036 </ndg:xquery> 1037 </ndg:addTripleLiteral> 1038 <!-- child's model component--> 1039 <ndg:addTripleLiteral> 1040 <ndg:ontSubject> 1041 http://www.earthsystemgrid.org/esg.owl#ModelComponent 1042 </ndg:ontSubject> 1043 <ndg:ontPredicate uri="http://www.earthsystemgrid.org/esg.owl#hasVersion"/> 1044 <ndg:xquery> 1045 <![CDATA[ 1046 declare default element namespace "http://www.metaforclimate.eu/schema/cim/1.5"; 1047 1048 for $comp in //CIMRecord/modelComponent/childComponent/modelComponent 1049 let $nodes := $comp//childComponent/modelComponent 1050 let $res := for $item in $nodes 1051 return 1052 concat($item/shortName, ";;", $item/shortName) 1053 return $res]]> 1054 </ndg:xquery> 1055 </ndg:addTripleLiteral> 1056 1057 <!-- model and childmodel --> 1058 <ndg:addTripleLiteral> 1059 <ndg:ontSubject> 1060 http://www.earthsystemgrid.org/esg.owl#Model 1061 </ndg:ontSubject> 1062 <ndg:ontPredicate uri="http://www.earthsystemgrid.org/esg.owl#hasYearReleased"/> 1063 <ndg:xquery> 1064 <![CDATA[ 1065 declare default element namespace "http://www.metaforclimate.eu/schema/cim/1.5"; 1066 for $comp in //CIMRecord 1067 let $nodes := $comp/modelComponent | $comp/modelComponent/childComponent/modelComponent 1068 let $res := for $item in $nodes 1069 return 1070 concat($item/shortName, ";;", $item/releaseDate) 1071 return $res]]> 1072 </ndg:xquery> 1073 </ndg:addTripleLiteral> 1074 <!-- child's model component--> 1075 <ndg:addTripleLiteral> 1076 <ndg:ontSubject> 1077 http://www.earthsystemgrid.org/esg.owl#ModelComponent 1078 </ndg:ontSubject> 1079 <ndg:ontPredicate uri="http://www.earthsystemgrid.org/esg.owl#hasYearReleased"/> 1080 <ndg:xquery> 1081 <![CDATA[ 1082 declare default element namespace "http://www.metaforclimate.eu/schema/cim/1.5"; 1083 for $comp in //CIMRecord/modelComponent/childComponent/modelComponent 1084 let $nodes := $comp//childComponent/modelComponent 1085 let $res := for $item in $nodes 1086 return 1087 concat($item/shortName, ";;", $item/releaseDate) 1088 return $res]]> 1089 </ndg:xquery> 1090 </ndg:addTripleLiteral> 1091 1092 1093 <!-- model and childmodel --> 1094 <ndg:addTripleLiteral> 1095 <ndg:ontSubject> 1096 http://www.earthsystemgrid.org/esg.owl#Model 1097 </ndg:ontSubject> 1098 <ndg:ontPredicate uri="http://www.earthsystemgrid.org/esg.owl#hasPreviousVersion"/> 1099 <ndg:xquery> 1100 <![CDATA[ 1101 declare default element namespace "http://www.metaforclimate.eu/schema/cim/1.5"; 1102 for $comp in //CIMRecord 1103 let $nodes := $comp/modelComponent | $comp/modelComponent/childComponent/modelComponent 1104 let $res := for $item in $nodes 1105 return 1106 concat($item/shortName, ";;", $item/documentGenealogy/relationship/documentRelationship/target/reference/name) 1107 return $res]]> 1108 </ndg:xquery> 1109 </ndg:addTripleLiteral> 1110 <!-- child's model component--> 1111 <ndg:addTripleLiteral> 1112 <ndg:ontSubject> 1113 http://www.earthsystemgrid.org/esg.owl#ModelComponent 1114 </ndg:ontSubject> 1115 <ndg:ontPredicate uri="http://www.earthsystemgrid.org/esg.owl#hasPreviousVersion"/> 1116 <ndg:xquery> 1117 <![CDATA[ 1118 declare default element namespace "http://www.metaforclimate.eu/schema/cim/1.5"; 1119 for $comp in //CIMRecord/modelComponent/childComponent/modelComponent 1120 let $nodes := $comp//childComponent/modelComponent 1121 let $res := for $item in $nodes 1122 return 1123 concat($item/shortName, ";;", $item/documentGenealogy/relationship/documentRelationship/target/reference/name) 1124 return $res]]> 1125 </ndg:xquery> 1126 </ndg:addTripleLiteral> 1127 865 1128 866 1129 <!-- hasPhysicalDomain ???? --> 867 1130 <!-- // Add the conformances and deployment info from the simulation. --> 1131 <!-- dealWithInputs --> 1132 868 1133 </ndg:ingester> -
mauRepo/xml2owl/trunk/src/test/resources/lookup.xml
r7726 r7732 1 < lookup>2 < entry CIMName="LandIceLandIceKeyPropertiesCouplingIceSheet-IceShelves"1 <ndg:lookup xmlns:ndg="http://www.ndg.ac.uk"> 2 <ndg:entry CIMName="LandIceLandIceKeyPropertiesCouplingIceSheet-IceShelves" 3 3 esgName="LandIceCouplingIceSheet-IceShelves" /> 4 < entry CIMName="LandIceLandIceKeyPropertiesGroundingLineMethod"4 <ndg:entry CIMName="LandIceLandIceKeyPropertiesGroundingLineMethod" 5 5 esgName="LandIceGroundingLineMethod" /> 6 < entry CIMName="LandIceLandIceKeyPropertiesLandIceAlbedo"6 <ndg:entry CIMName="LandIceLandIceKeyPropertiesLandIceAlbedo" 7 7 esgName="LandIceLandIceAlbedo" /> 8 < entry CIMName="LandIceLandIceKeyPropertiesAlbedoFunctionOf"8 <ndg:entry CIMName="LandIceLandIceKeyPropertiesAlbedoFunctionOf" 9 9 esgName="LandIceAlbedoFunctionOf" /> 10 < entry CIMName="LandIceLandIceGlaciersDynamicArealExtent"10 <ndg:entry CIMName="LandIceLandIceGlaciersDynamicArealExtent" 11 11 esgName="LandIceGlaciersDynamicArealExtent" /> 12 < entry CIMName="LandIceLandIceGlaciersMassBalanceAblationCalculation"12 <ndg:entry CIMName="LandIceLandIceGlaciersMassBalanceAblationCalculation" 13 13 esgName="LandIceGlaciersMassBalanceAblationCalculation" /> 14 < entry CIMName="LandIceLandIceGlaciersSnowTreatmentMethod"14 <ndg:entry CIMName="LandIceLandIceGlaciersSnowTreatmentMethod" 15 15 esgName="LandIceGlaciersSnowTreatmentMethod" /> 16 < entry CIMName="LandIceLandIceGlaciersSnowTreatmentProperties"16 <ndg:entry CIMName="LandIceLandIceGlaciersSnowTreatmentProperties" 17 17 esgName="LandIceGlaciersSnowTreatmentProperties" /> 18 < entry CIMName="LandIceLandIceSheetMassBalanceAblationCalculation"18 <ndg:entry CIMName="LandIceLandIceSheetMassBalanceAblationCalculation" 19 19 esgName="LandIceIceSheetMassBalanceAblationCalculation" /> 20 < entry20 <ndg:entry 21 21 CIMName="LandIceLandIceSheetIceSheetDynamicsModel-NumericsTimeSteppingMethod" 22 22 esgName="LandIceIceSheetDynamicsModel-NumericsTimeSteppingMethod" /> 23 < entry CIMName="LandIceLandIceSheetIceSheetDynamicsModel-NumericsGridConfig"23 <ndg:entry CIMName="LandIceLandIceSheetIceSheetDynamicsModel-NumericsGridConfig" 24 24 esgName="LandIceIceSheetDynamicsModel-NumericsGridConfig" /> 25 < entry CIMName="LandIceLandIceSheetIceSheetDynamicsModel-NumericsApproximation"25 <ndg:entry CIMName="LandIceLandIceSheetIceSheetDynamicsModel-NumericsApproximation" 26 26 esgName="LandIceIceSheetDynamicsModel-NumericsApproximation" /> 27 < entry CIMName="LandIceLandIceSheetIceSheetDynamicsModel-NumericsIceStreams"27 <ndg:entry CIMName="LandIceLandIceSheetIceSheetDynamicsModel-NumericsIceStreams" 28 28 esgName="LandIceIceSheetDynamicsModel-NumericsIceStreams" /> 29 < entry CIMName="LandIceLandIceSheetSnowTreatmentMethod" esgName="LandIceIceSheetSnowTreatmentMethod" />30 < entry CIMName="LandIceLandIceSheetSnowTreatmentListOfPrognosticVariables"29 <ndg:entry CIMName="LandIceLandIceSheetSnowTreatmentMethod" esgName="LandIceIceSheetSnowTreatmentMethod" /> 30 <ndg:entry CIMName="LandIceLandIceSheetSnowTreatmentListOfPrognosticVariables" 31 31 esgName="LandIceIceSheetSnowTreatmentListOfPrognosticVariables" /> 32 < entry CIMName="LandIceLandIceSheetSnowTreatmentProcesses"32 <ndg:entry CIMName="LandIceLandIceSheetSnowTreatmentProcesses" 33 33 esgName="LandIceIceSheetSnowTreatmentProcesses" /> 34 < entry CIMName="LandIceLandIceShelvesIceShelvesAttributesBottom"34 <ndg:entry CIMName="LandIceLandIceShelvesIceShelvesAttributesBottom" 35 35 esgName="LandIceIceShelvesAttributesBottom" /> 36 < entry CIMName="LandIceLandIceShelvesMassBalanceAblationCalculation"36 <ndg:entry CIMName="LandIceLandIceShelvesMassBalanceAblationCalculation" 37 37 esgName="LandIceIceShelvesMassBalanceAblationCalculation" /> 38 < entry38 <ndg:entry 39 39 CIMName="LandIceLandIceShelvesLandIceShelvesDynamicsModel-NumericsTimeSteppingMethod" 40 40 esgName="LandIceIceShelvesDynamicsModel-NumericsTimeSteppingMethod" /> 41 < entry41 <ndg:entry 42 42 CIMName="LandIceLandIceShelvesLandIceShelvesDynamicsModel-NumericsGridConfig" 43 43 esgName="LandIceIceShelvesDynamicsModel-NumericsGridConfig" /> 44 < entry44 <ndg:entry 45 45 CIMName="LandIceLandIceShelvesLandIceShelvesDynamicsModel-NumericsApproximation" 46 46 esgName="LandIceIceShelvesDynamicsModel-NumericsApproximation" /> 47 < entry CIMName="LandIceLandIceShelvesSnowTreatmentMethod"47 <ndg:entry CIMName="LandIceLandIceShelvesSnowTreatmentMethod" 48 48 esgName="LandIceIceShelvesSnowTreatmentMethod" /> 49 < entry CIMName="LandIceLandIceShelvesSnowTreatmentListOfPrognosticVariables"49 <ndg:entry CIMName="LandIceLandIceShelvesSnowTreatmentListOfPrognosticVariables" 50 50 esgName="LandIceIceShelvesSnowTreatmentListOfPrognosticVariables" /> 51 < entry CIMName="LandIceLandIceShelvesSnowTreatmentProcesses"51 <ndg:entry CIMName="LandIceLandIceShelvesSnowTreatmentProcesses" 52 52 esgName="LandIceIceShelvesSnowTreatmentProcesses" /> 53 < entry CIMName="AerosolsAerosolKeyPropertiesAerosolSchemeScope"53 <ndg:entry CIMName="AerosolsAerosolKeyPropertiesAerosolSchemeScope" 54 54 esgName="AerosolsAerosolSchemeScope" /> 55 < entry CIMName="AerosolsAerosolKeyPropertiesListOfPrognosticVariables"55 <ndg:entry CIMName="AerosolsAerosolKeyPropertiesListOfPrognosticVariables" 56 56 esgName="AerosolsListOfPrognosticVariables" /> 57 < entry CIMName="AerosolsAerosolKeyPropertiesFamilyApproach"57 <ndg:entry CIMName="AerosolsAerosolKeyPropertiesFamilyApproach" 58 58 esgName="AerosolsFamilyApproach" /> 59 < entry59 <ndg:entry 60 60 CIMName="AerosolsAerosolKeyPropertiesAerosolSpaceConfigHorizontalDomainGridConfig" 61 61 esgName="AerosolsHorizontalGridConfig" /> 62 < entry62 <ndg:entry 63 63 CIMName="AerosolsAerosolKeyPropertiesAerosolSpaceConfigVerticalDomainGridConfiguration" 64 64 esgName="AerosolsVerticalGridConfiguration" /> 65 < entry CIMName="AerosolsAerosolKeyPropertiesAerosolTimeStepFrameworkMethod"65 <ndg:entry CIMName="AerosolsAerosolKeyPropertiesAerosolTimeStepFrameworkMethod" 66 66 esgName="AerosolsAerosolTimeStepFrameworkMethod" /> 67 < entry CIMName="AerosolsAerosolKeyPropertiesAerosolTimeStepFrameworkSchemeType"67 <ndg:entry CIMName="AerosolsAerosolKeyPropertiesAerosolTimeStepFrameworkSchemeType" 68 68 esgName="AerosolsAerosolTimeStepFrameworkSchemeType" /> 69 < entry CIMName="AerosolsAerosolTransportMethod" esgName="AerosolsTransportMethod" />70 < entry CIMName="AerosolsAerosolTransportSchemeType" esgName="AerosolsTransportSchemeType" />71 < entry CIMName="AerosolsAerosolTransportMassConservation"69 <ndg:entry CIMName="AerosolsAerosolTransportMethod" esgName="AerosolsTransportMethod" /> 70 <ndg:entry CIMName="AerosolsAerosolTransportSchemeType" esgName="AerosolsTransportSchemeType" /> 71 <ndg:entry CIMName="AerosolsAerosolTransportMassConservation" 72 72 esgName="AerosolsTransportMassConservation" /> 73 < entry CIMName="AerosolsAerosolTransportConvection" esgName="AerosolsTransportConvection" />74 < entry CIMName="AerosolsAerosolTransportTurbulenceMethod"73 <ndg:entry CIMName="AerosolsAerosolTransportConvection" esgName="AerosolsTransportConvection" /> 74 <ndg:entry CIMName="AerosolsAerosolTransportTurbulenceMethod" 75 75 esgName="AerosolsTransportTurbulenceMethod" /> 76 < entry CIMName="AerosolsAerosolEmissionAndConc2D-EmissionsMethod"76 <ndg:entry CIMName="AerosolsAerosolEmissionAndConc2D-EmissionsMethod" 77 77 esgName="AerosolsEmissionAndConc2D-EmissionsMethod" /> 78 < entry CIMName="AerosolsAerosolEmissionAndConc2D-EmissionsSourceTypes"78 <ndg:entry CIMName="AerosolsAerosolEmissionAndConc2D-EmissionsSourceTypes" 79 79 esgName="AerosolsEmissionAndConc2D-EmissionsSourceTypes" /> 80 < entry CIMName="AerosolsAerosolEmissionAndConc2D-EmissionsClimatologyType"80 <ndg:entry CIMName="AerosolsAerosolEmissionAndConc2D-EmissionsClimatologyType" 81 81 esgName="AerosolsEmissionAndConc2D-EmissionsClimatologyType" /> 82 < entry CIMName="AerosolsAerosolEmissionAndConc3D-EmissionsMethod"82 <ndg:entry CIMName="AerosolsAerosolEmissionAndConc3D-EmissionsMethod" 83 83 esgName="AerosolsEmissionAndConc3D-EmissionsMethod" /> 84 < entry CIMName="AerosolsAerosolEmissionAndConc3D-EmissionsSourceTypes"84 <ndg:entry CIMName="AerosolsAerosolEmissionAndConc3D-EmissionsSourceTypes" 85 85 esgName="AerosolsEmissionAndConc3D-EmissionsSourceTypes" /> 86 < entry CIMName="AerosolsAerosolEmissionAndConc3D-EmissionsClimatologyType"86 <ndg:entry CIMName="AerosolsAerosolEmissionAndConc3D-EmissionsClimatologyType" 87 87 esgName="AerosolsEmissionAndConc3D-EmissionsClimatologyType" /> 88 < entry CIMName="AerosolsAerosolModelProcesses" esgName="AerosolsModelProcesses" />89 < entry CIMName="AerosolsAerosolModelCouplingWith" esgName="AerosolsModelCouplingWith" />90 < entry CIMName="AerosolsAerosolModelGasPhasePrecursors" esgName="AerosolsModelGasPhasePrecursors" />91 < entry CIMName="AerosolsAerosolModelAerosolSchemeSchemeType"88 <ndg:entry CIMName="AerosolsAerosolModelProcesses" esgName="AerosolsModelProcesses" /> 89 <ndg:entry CIMName="AerosolsAerosolModelCouplingWith" esgName="AerosolsModelCouplingWith" /> 90 <ndg:entry CIMName="AerosolsAerosolModelGasPhasePrecursors" esgName="AerosolsModelGasPhasePrecursors" /> 91 <ndg:entry CIMName="AerosolsAerosolModelAerosolSchemeSchemeType" 92 92 esgName="AerosolsModelSchemeType" /> 93 < entry CIMName="AerosolsAerosolModelAerosolSchemeSpecies"93 <ndg:entry CIMName="AerosolsAerosolModelAerosolSchemeSpecies" 94 94 esgName="AerosolsModelSchemeSpecies" /> 95 < entry CIMName="AerosolsAerosolModelAerosolSchemeFramework"95 <ndg:entry CIMName="AerosolsAerosolModelAerosolSchemeFramework" 96 96 esgName="AerosolsModelSchemeFramework" /> 97 < entry CIMName="AerosolsAerosolModelAerosolSchemeSpecies"97 <ndg:entry CIMName="AerosolsAerosolModelAerosolSchemeSpecies" 98 98 esgName="AerosolsModelSchemeSpecies" /> 99 < entry CIMName="AerosolsAerosolModelAerosolSchemeFramework"99 <ndg:entry CIMName="AerosolsAerosolModelAerosolSchemeFramework" 100 100 esgName="AerosolsModelSchemeFramework" /> 101 < entry CIMName="AerosolsAerosolModelAerosolSchemeSpecies"101 <ndg:entry CIMName="AerosolsAerosolModelAerosolSchemeSpecies" 102 102 esgName="AerosolsModelSchemeSpecies" /> 103 < entry CIMName="AerosolsAerosolModelAerosolSchemeFramework"103 <ndg:entry CIMName="AerosolsAerosolModelAerosolSchemeFramework" 104 104 esgName="AerosolsModelSchemeFramework" /> 105 < entry CIMName="AerosolsAerosolModelAerosolSchemeSpecies"105 <ndg:entry CIMName="AerosolsAerosolModelAerosolSchemeSpecies" 106 106 esgName="AerosolsModelSchemeSpecies" /> 107 < entry CIMName="AtmosphericChemistryAtmChemKeyPropertiesChemSchemeScope"107 <ndg:entry CIMName="AtmosphericChemistryAtmChemKeyPropertiesChemSchemeScope" 108 108 esgName="AtmosphericChemistryChemSchemeScope" /> 109 < entry109 <ndg:entry 110 110 CIMName="AtmosphericChemistryAtmChemKeyPropertiesListOfPrognosticVariables" 111 111 esgName="AtmosphericChemistryListOfPrognosticVariables" /> 112 < entry CIMName="AtmosphericChemistryAtmChemKeyPropertiesFamilyApproach"112 <ndg:entry CIMName="AtmosphericChemistryAtmChemKeyPropertiesFamilyApproach" 113 113 esgName="AtmosphericChemistryFamilyApproach" /> 114 < entry114 <ndg:entry 115 115 CIMName="AtmosphericChemistryAtmChemKeyPropertiesAtmChemSpaceConfigHorizontalDomainGridConfig" 116 116 esgName="AtmosphericChemistryHorizontalGridConfig" /> 117 < entry117 <ndg:entry 118 118 CIMName="AtmosphericChemistryAtmChemKeyPropertiesAtmChemSpaceConfigVerticalDomainGridConfiguration" 119 119 esgName="AtmosphericChemistryVerticalGridConfiguration" /> 120 < entry120 <ndg:entry 121 121 CIMName="AtmosphericChemistryAtmChemKeyPropertiesAtmChemSpaceConfigVerticalDomainVerticalCoordinateSystem" 122 122 esgName="AtmosphericChemistryVerticalCoordinateSystem" /> 123 < entry123 <ndg:entry 124 124 CIMName="AtmosphericChemistryAtmChemKeyPropertiesTimeSteppingFrameworkMethod" 125 125 esgName="AtmosphericChemistryTimeSteppingFrameworkMethod" /> 126 < entry126 <ndg:entry 127 127 CIMName="AtmosphericChemistryAtmChemKeyPropertiesTimeSteppingFrameworkSchemeType" 128 128 esgName="AtmosphericChemistryTimeSteppingFrameworkSchemeType" /> 129 < entry CIMName="AtmosphericChemistryAtmChemTransportSchemeType"129 <ndg:entry CIMName="AtmosphericChemistryAtmChemTransportSchemeType" 130 130 esgName="AtmosphericChemistryTransportSchemeType" /> 131 < entry CIMName="AtmosphericChemistryAtmChemTransportMassConservation"131 <ndg:entry CIMName="AtmosphericChemistryAtmChemTransportMassConservation" 132 132 esgName="AtmosphericChemistryTransportMassConservation" /> 133 < entry CIMName="AtmosphericChemistryAtmChemTransportConvection"133 <ndg:entry CIMName="AtmosphericChemistryAtmChemTransportConvection" 134 134 esgName="AtmosphericChemistryTransportConvection" /> 135 < entry CIMName="AtmosphericChemistryAtmChemTransportTurbulenceType"135 <ndg:entry CIMName="AtmosphericChemistryAtmChemTransportTurbulenceType" 136 136 esgName="AtmosphericChemistryTransportTurbulenceType" /> 137 < entry137 <ndg:entry 138 138 CIMName="AtmosphericChemistryAtmChemTransportTurbulenceCouplingWithChemicalReactivity" 139 139 esgName="AtmosphericChemistryTransportTurbulenceCouplingWithChemicalReactivity" /> 140 < entry140 <ndg:entry 141 141 CIMName="AtmosphericChemistryAtmChemEmissionAndConcAtmChem2D-SourcesVegetationMethod" 142 142 esgName="AtmosphericChemistryEmissionAndConc2D-SourcesVegetationMethod" /> 143 < entry143 <ndg:entry 144 144 CIMName="AtmosphericChemistryAtmChemEmissionAndConcAtmChem2D-SourcesVegetationClimatologyType" 145 145 esgName="AtmosphericChemistryEmissionAndConc2D-SourcesVegetationClimatologyType" /> 146 < entry146 <ndg:entry 147 147 CIMName="AtmosphericChemistryAtmChemEmissionAndConcAtmChem2D-SourcesBareGroundMethod" 148 148 esgName="AtmosphericChemistryEmissionAndConc2D-SourcesBareGroundMethod" /> 149 < entry149 <ndg:entry 150 150 CIMName="AtmosphericChemistryAtmChemEmissionAndConcAtmChem2D-SourcesBareGroundClimatologyType" 151 151 esgName="AtmosphericChemistryEmissionAndConc2D-SourcesBareGroundClimatologyType" /> 152 < entry152 <ndg:entry 153 153 CIMName="AtmosphericChemistryAtmChemEmissionAndConcAtmChem2D-SourcesSeaSurfaceMethod" 154 154 esgName="AtmosphericChemistryEmissionAndConc2D-SourcesSeaSurfaceMethod" /> 155 < entry155 <ndg:entry 156 156 CIMName="AtmosphericChemistryAtmChemEmissionAndConcAtmChem2D-SourcesSeaSurfaceClimatologyType" 157 157 esgName="AtmosphericChemistryEmissionAndConc2D-SourcesSeaSurfaceClimatologyType" /> 158 < entry158 <ndg:entry 159 159 CIMName="AtmosphericChemistryAtmChemEmissionAndConcAtmChem2D-SourcesAnthropogenicMethod" 160 160 esgName="AtmosphericChemistryEmissionAndConc2D-SourcesAnthropogenicMethod" /> 161 < entry161 <ndg:entry 162 162 CIMName="AtmosphericChemistryAtmChemEmissionAndConcAtmChem2D-SourcesAnthropogenicClimatologyType" 163 163 esgName="AtmosphericChemistryEmissionAndConc2D-SourcesAnthropogenicClimatologyType" /> 164 < entry164 <ndg:entry 165 165 CIMName="AtmosphericChemistryAtmChemEmissionAndConcAtmChem3D-SourcesAircraftMethod" 166 166 esgName="AtmosphericChemistryEmissionAndConc3D-SourcesAircraftMethod" /> 167 < entry167 <ndg:entry 168 168 CIMName="AtmosphericChemistryAtmChemEmissionAndConcAtmChem3D-SourcesAircraftClimatologyType" 169 169 esgName="AtmosphericChemistryEmissionAndConc3D-SourcesAircraftClimatologyType" /> 170 < entry170 <ndg:entry 171 171 CIMName="AtmosphericChemistryAtmChemEmissionAndConcAtmChem3D-SourcesBiomassBurningMethod" 172 172 esgName="AtmosphericChemistryEmissionAndConc3D-SourcesBiomassBurningMethod" /> 173 < entry173 <ndg:entry 174 174 CIMName="AtmosphericChemistryAtmChemEmissionAndConcAtmChem3D-SourcesBiomassBurningClimatologyType" 175 175 esgName="AtmosphericChemistryEmissionAndConc3D-SourcesBiomassBurningClimatologyType" /> 176 < entry176 <ndg:entry 177 177 CIMName="AtmosphericChemistryAtmChemEmissionAndConcAtmChem3D-SourcesLightningMethod" 178 178 esgName="AtmosphericChemistryEmissionAndConc3D-SourcesLightningMethod" /> 179 < entry179 <ndg:entry 180 180 CIMName="AtmosphericChemistryAtmChemEmissionAndConcAtmChem3D-SourcesLightningClimatologyType" 181 181 esgName="AtmosphericChemistryEmissionAndConc3D-SourcesLightningClimatologyType" /> 182 < entry182 <ndg:entry 183 183 CIMName="AtmosphericChemistryAtmChemEmissionAndConcAtmChem3D-SourcesVolcanicMethod" 184 184 esgName="AtmosphericChemistryEmissionAndConc3D-SourcesVolcanicMethod" /> 185 < entry185 <ndg:entry 186 186 CIMName="AtmosphericChemistryAtmChemEmissionAndConcAtmChem3D-SourcesVolcanicClimatologyType" 187 187 esgName="AtmosphericChemistryEmissionAndConc3D-SourcesVolcanicClimatologyType" /> 188 < entry188 <ndg:entry 189 189 CIMName="AtmosphericChemistryAtmChemGasPhaseChemistryAtmGasPhaseChemistryAttributesSpecies" 190 190 esgName="AtmosphericChemistryGasPhaseChemistrySpecies" /> 191 < entry191 <ndg:entry 192 192 CIMName="AtmosphericChemistryAtmChemGasPhaseChemistryProcessesDryDeposition" 193 193 esgName="AtmosphericChemistryGasPhaseChemistryProcessesDryDeposition" /> 194 < entry194 <ndg:entry 195 195 CIMName="AtmosphericChemistryAtmChemGasPhaseChemistryProcessesWetDeposition" 196 196 esgName="AtmosphericChemistryGasPhaseChemistryProcessesWetDeposition" /> 197 < entry CIMName="AtmosphericChemistryAtmChemGasPhaseChemistryProcessesOxidation"197 <ndg:entry CIMName="AtmosphericChemistryAtmChemGasPhaseChemistryProcessesOxidation" 198 198 esgName="AtmosphericChemistryGasPhaseChemistryProcessesOxidation" /> 199 < entry199 <ndg:entry 200 200 CIMName="AtmosphericChemistryAtmChemGasPhaseChemistryProcessesWashOut-RainOut" 201 201 esgName="AtmosphericChemistryGasPhaseChemistryProcessesWashOut-RainOut" /> 202 < entry202 <ndg:entry 203 203 CIMName="AtmosphericChemistryAtmChemHeterogenChemistryStratosphericHeterChemSpeciesGasPhase" 204 204 esgName="AtmosphericChemistryHeterogenChemistryStratosphericSpeciesGasPhase" /> 205 < entry205 <ndg:entry 206 206 CIMName="AtmosphericChemistryAtmChemHeterogenChemistryStratosphericHeterChemSpeciesAerosol" 207 207 esgName="AtmosphericChemistryHeterogenChemistryStratosphericSpeciesAerosol" /> 208 < entry208 <ndg:entry 209 209 CIMName="AtmosphericChemistryAtmChemHeterogenChemistryStratosphericHeterChemProcessesSedimentation" 210 210 esgName="AtmosphericChemistryHeterogenChemistryStratosphericProcessesSedimentation" /> 211 < entry211 <ndg:entry 212 212 CIMName="AtmosphericChemistryAtmChemHeterogenChemistryStratosphericHeterChemProcessesCoagulation" 213 213 esgName="AtmosphericChemistryHeterogenChemistryStratosphericProcessesCoagulation" /> 214 < entry214 <ndg:entry 215 215 CIMName="AtmosphericChemistryAtmChemHeterogenChemistryTroposphericHeterChemSpeciesAerosol" 216 216 esgName="AtmosphericChemistryHeterogenChemistryTroposphericSpeciesAerosol" /> 217 < entry217 <ndg:entry 218 218 CIMName="AtmosphericChemistryAtmChemHeterogenChemistryTroposphericHeterChemProcessesDryDeposition" 219 219 esgName="AtmosphericChemistryHeterogenChemistryTroposphericProcessesDryDeposition" /> 220 < entry220 <ndg:entry 221 221 CIMName="AtmosphericChemistryAtmChemHeterogenChemistryTroposphericHeterChemProcessesWetDeposition" 222 222 esgName="AtmosphericChemistryHeterogenChemistryTroposphericProcessesWetDeposition" /> 223 < entry223 <ndg:entry 224 224 CIMName="AtmosphericChemistryAtmChemHeterogenChemistryTroposphericHeterChemProcessesWashOut-RainOut" 225 225 esgName="AtmosphericChemistryHeterogenChemistryTroposphericProcessesWashOut-RainOut" /> 226 < entry226 <ndg:entry 227 227 CIMName="AtmosphericChemistryAtmChemHeterogenChemistryTroposphericHeterChemProcessesCoagulation" 228 228 esgName="AtmosphericChemistryHeterogenChemistryTroposphericProcessesCoagulation" /> 229 < entry CIMName="AtmosphericChemistryAtmChemPhotoChemistryPhotolysisMethod"229 <ndg:entry CIMName="AtmosphericChemistryAtmChemPhotoChemistryPhotolysisMethod" 230 230 esgName="AtmosphericChemistryPhotoChemistryPhotolysisMethod" /> 231 < entry CIMName="AtmosphericChemistryAtmChemPhotoChemistryPhotolysisProcesses"231 <ndg:entry CIMName="AtmosphericChemistryAtmChemPhotoChemistryPhotolysisProcesses" 232 232 esgName="AtmosphericChemistryPhotoChemistryPhotolysisProcesses" /> 233 < entry233 <ndg:entry 234 234 CIMName="AtmosphericChemistryAtmChemPhotoChemistryPhotolysisReactionData" 235 235 esgName="AtmosphericChemistryPhotoChemistryPhotolysisReactionData" /> 236 < entry CIMName="OceanOceanKeyPropertiesModelFamily" esgName="OceanModelFamily" />237 < entry CIMName="OceanOceanKeyPropertiesBasicApproximations"236 <ndg:entry CIMName="OceanOceanKeyPropertiesModelFamily" esgName="OceanModelFamily" /> 237 <ndg:entry CIMName="OceanOceanKeyPropertiesBasicApproximations" 238 238 esgName="OceanBasicApproximations" /> 239 < entry CIMName="OceanOceanKeyPropertiesListOfPrognosticVariables"239 <ndg:entry CIMName="OceanOceanKeyPropertiesListOfPrognosticVariables" 240 240 esgName="OceanListOfPrognosticVariables" /> 241 < entry CIMName="OceanOceanKeyPropertiesSeaWaterEquationOfState"241 <ndg:entry CIMName="OceanOceanKeyPropertiesSeaWaterEquationOfState" 242 242 esgName="OceanSeaWaterEquationOfState" /> 243 < entry CIMName="OceanOceanKeyPropertiesSeaWaterFreezingPoint"243 <ndg:entry CIMName="OceanOceanKeyPropertiesSeaWaterFreezingPoint" 244 244 esgName="OceanSeaWaterFreezingPoint" /> 245 < entry CIMName="OceanOceanKeyPropertiesSeaWaterSpecificHeat"245 <ndg:entry CIMName="OceanOceanKeyPropertiesSeaWaterSpecificHeat" 246 246 esgName="OceanSeaWaterSpecificHeat" /> 247 < entry CIMName="OceanOceanKeyPropertiesNon-OceanicWaterIsolatedSeasMixing"247 <ndg:entry CIMName="OceanOceanKeyPropertiesNon-OceanicWaterIsolatedSeasMixing" 248 248 esgName="OceanNon-OceanicWaterIsolatedSeasMixing" /> 249 < entry249 <ndg:entry 250 250 CIMName="OceanOceanKeyPropertiesOceanSpaceConfigurationBathymetryBathymetryType" 251 251 esgName="OceanBathymetryType" /> 252 < entry252 <ndg:entry 253 253 CIMName="OceanOceanKeyPropertiesOceanSpaceConfigurationBathymetryReferenceDate" 254 254 esgName="OceanBathymetryReferenceDate" /> 255 < entry255 <ndg:entry 256 256 CIMName="OceanOceanKeyPropertiesOceanSpaceConfigurationBathymetryBathymetryAdjustment" 257 257 esgName="OceanBathymetryAdjustment" /> 258 < entry258 <ndg:entry 259 259 CIMName="OceanOceanKeyPropertiesOceanSpaceConfigurationBathymetryStraitsClosed" 260 260 esgName="OceanBathymetryStraitsClosed" /> 261 < entry261 <ndg:entry 262 262 CIMName="OceanOceanKeyPropertiesOceanSpaceConfigurationBathymetryInlandSeasChanges" 263 263 esgName="OceanBathymetryInlandSeasChanges" /> 264 < entry264 <ndg:entry 265 265 CIMName="OceanOceanKeyPropertiesOceanSpaceConfigurationOceanHorizontalDomainGridGridType" 266 266 esgName="OceanHorizontalGridType" /> 267 < entry267 <ndg:entry 268 268 CIMName="OceanOceanKeyPropertiesOceanSpaceConfigurationOceanHorizontalDomainGridHorizontalDiscretization" 269 269 esgName="OceanHorizontalDiscretization" /> 270 < entry270 <ndg:entry 271 271 CIMName="OceanOceanKeyPropertiesOceanSpaceConfigurationOceanHorizontalDomainGridGridName" 272 272 esgName="OceanHorizontalGridName" /> 273 < entry273 <ndg:entry 274 274 CIMName="OceanOceanKeyPropertiesOceanSpaceConfigurationOceanHorizontalDomainGridNorthPoleSingularityTreatment" 275 275 esgName="OceanHorizontalNorthPoleSingularityTreatment" /> 276 < entry276 <ndg:entry 277 277 CIMName="OceanOceanKeyPropertiesOceanSpaceConfigurationVerticalDomainVerticalCoordinateSystem" 278 278 esgName="OceanVerticalCoordinateSystem" /> 279 < entry279 <ndg:entry 280 280 CIMName="OceanOceanKeyPropertiesOceanSpaceConfigurationVerticalDomainPartialSteps" 281 281 esgName="OceanVerticalPartialSteps" /> 282 < entry282 <ndg:entry 283 283 CIMName="OceanOceanKeyPropertiesOceanSpaceConfigurationVerticalDomainReferencePressure" 284 284 esgName="OceanVerticalReferencePressure" /> 285 < entry CIMName="OceanOceanKeyPropertiesOceanNudgingTracersDampingAppliedTo"285 <ndg:entry CIMName="OceanOceanKeyPropertiesOceanNudgingTracersDampingAppliedTo" 286 286 esgName="OceanTracersDampingAppliedTo" /> 287 < entry CIMName="OceanOceanKeyPropertiesTimeSteppingFrameworkTracers"287 <ndg:entry CIMName="OceanOceanKeyPropertiesTimeSteppingFrameworkTracers" 288 288 esgName="OceanTimeSteppingFrameworkTracers" /> 289 < entry CIMName="OceanOceanKeyPropertiesTimeSteppingFrameworkBarotropicSolver"289 <ndg:entry CIMName="OceanOceanKeyPropertiesTimeSteppingFrameworkBarotropicSolver" 290 290 esgName="OceanTimeSteppingFrameworkBarotropicSolver" /> 291 < entry CIMName="OceanOceanKeyPropertiesTimeSteppingFrameworkBaroclinicMomentum"291 <ndg:entry CIMName="OceanOceanKeyPropertiesTimeSteppingFrameworkBaroclinicMomentum" 292 292 esgName="OceanTimeSteppingFrameworkBaroclinicMomentum" /> 293 < entry CIMName="OceanOceanAdvectionMomentumSchemeType" esgName="OceanMomentumSchemeType" />294 < entry CIMName="OceanOceanAdvectionLateralTracersSchemeType"293 <ndg:entry CIMName="OceanOceanAdvectionMomentumSchemeType" esgName="OceanMomentumSchemeType" /> 294 <ndg:entry CIMName="OceanOceanAdvectionLateralTracersSchemeType" 295 295 esgName="OceanLateralTracersSchemeType" /> 296 < entry CIMName="OceanOceanAdvectionLateralTracersMonotonicFluxLimiter"296 <ndg:entry CIMName="OceanOceanAdvectionLateralTracersMonotonicFluxLimiter" 297 297 esgName="OceanLateralTracersMonotonicFluxLimiter" /> 298 < entry CIMName="OceanOceanAdvectionVerticalTracersSchemeType"298 <ndg:entry CIMName="OceanOceanAdvectionVerticalTracersSchemeType" 299 299 esgName="OceanVerticalTracersSchemeType" /> 300 < entry CIMName="OceanOceanAdvectionVerticalTracersMonotonicFluxLimiter"300 <ndg:entry CIMName="OceanOceanAdvectionVerticalTracersMonotonicFluxLimiter" 301 301 esgName="OceanVerticalTracersMonotonicFluxLimiter" /> 302 < entry302 <ndg:entry 303 303 CIMName="OceanOceanLateralPhysicsOceanLateralPhysMomentumOperatorDirection" 304 304 esgName="OceanLateralPhysicsMomentumOperatorDirection" /> 305 < entry CIMName="OceanOceanLateralPhysicsOceanLateralPhysMomentumOperatorOrder"305 <ndg:entry CIMName="OceanOceanLateralPhysicsOceanLateralPhysMomentumOperatorOrder" 306 306 esgName="OceanLateralPhysicsMomentumOperatorOrder" /> 307 < entry307 <ndg:entry 308 308 CIMName="OceanOceanLateralPhysicsOceanLateralPhysMomentumOperatorDiscretization" 309 309 esgName="OceanLateralPhysicsMomentumOperatorDiscretization" /> 310 < entry310 <ndg:entry 311 311 CIMName="OceanOceanLateralPhysicsOceanLateralPhysMomentumEddyViscosityCoefficientCoefficientType" 312 312 esgName="OceanLateralPhysicsMomentumEddyViscosityCoefficientType" /> 313 < entry313 <ndg:entry 314 314 CIMName="OceanOceanLateralPhysicsOceanLateralPhysMomentumEddyViscosityCoefficientSpatialVariation" 315 315 esgName="OceanLateralPhysicsMomentumEddyViscosityCoefficientSpatialVariation" /> 316 < entry316 <ndg:entry 317 317 CIMName="OceanOceanLateralPhysicsOceanLateralPhysTracersMesoscaleClosure" 318 318 esgName="OceanLateralPhysicsTracersMesoscaleClosure" /> 319 < entry319 <ndg:entry 320 320 CIMName="OceanOceanLateralPhysicsOceanLateralPhysTracersOperatorDirection" 321 321 esgName="OceanLateralPhysicsTracersOperatorDirection" /> 322 < entry CIMName="OceanOceanLateralPhysicsOceanLateralPhysTracersOperatorOrder"322 <ndg:entry CIMName="OceanOceanLateralPhysicsOceanLateralPhysTracersOperatorOrder" 323 323 esgName="OceanLateralPhysicsTracersOperatorOrder" /> 324 < entry324 <ndg:entry 325 325 CIMName="OceanOceanLateralPhysicsOceanLateralPhysTracersOperatorDiscretization" 326 326 esgName="OceanLateralPhysicsTracersOperatorDiscretization" /> 327 < entry327 <ndg:entry 328 328 CIMName="OceanOceanLateralPhysicsOceanLateralPhysTracersEddyViscosityCoefficientCoefficientType" 329 329 esgName="OceanLateralPhysicsTracersEddyViscosityCoefficientType" /> 330 < entry330 <ndg:entry 331 331 CIMName="OceanOceanLateralPhysicsOceanLateralPhysTracersEddyViscosityCoefficientSpatialVariation" 332 332 esgName="OceanLateralPhysicsTracersEddyViscosityCoefficientSpatialVariation" /> 333 < entry333 <ndg:entry 334 334 CIMName="OceanOceanLateralPhysicsOceanLateralPhysTracersEddy-inducedVelocitySchemeType" 335 335 esgName="OceanLateralPhysicsTracersEddy-inducedVelocitySchemeType" /> 336 < entry336 <ndg:entry 337 337 CIMName="OceanOceanLateralPhysicsOceanLateralPhysTracersEddy-inducedVelocityCoefficientType" 338 338 esgName="OceanLateralPhysicsTracersEddy-inducedVelocityCoefficientType" /> 339 < entry339 <ndg:entry 340 340 CIMName="OceanOceanLateralPhysicsOceanLateralPhysTracersEddy-inducedVelocityFluxType" 341 341 esgName="OceanLateralPhysicsTracersEddy-inducedVelocityFluxType" /> 342 < entry342 <ndg:entry 343 343 CIMName="OceanOceanLateralPhysicsOceanLateralPhysTracersEddy-inducedVelocityAddedDiffusivity" 344 344 esgName="OceanLateralPhysicsTracersEddy-inducedVelocityAddedDiffusivity" /> 345 < entry CIMName="OceanOceanVerticalPhysicsConvection" esgName="OceanVerticalPhysicsConvection" />346 < entry CIMName="OceanOceanVerticalPhysicsTide-inducedMixing"345 <ndg:entry CIMName="OceanOceanVerticalPhysicsConvection" esgName="OceanVerticalPhysicsConvection" /> 346 <ndg:entry CIMName="OceanOceanVerticalPhysicsTide-inducedMixing" 347 347 esgName="OceanVerticalPhysicsTide-inducedMixing" /> 348 < entry CIMName="OceanOceanVerticalPhysicsOceanMixedLayerTracersSchemeType"348 <ndg:entry CIMName="OceanOceanVerticalPhysicsOceanMixedLayerTracersSchemeType" 349 349 esgName="OceanVerticalPhysicsMixedLayerTracersSchemeType" /> 350 < entry CIMName="OceanOceanVerticalPhysicsOceanMixedLayerTracersClosureOrder"350 <ndg:entry CIMName="OceanOceanVerticalPhysicsOceanMixedLayerTracersClosureOrder" 351 351 esgName="OceanVerticalPhysicsMixedLayerTracersClosureOrder" /> 352 < entry CIMName="OceanOceanVerticalPhysicsOceanMixedLayerMomentumSchemeType"352 <ndg:entry CIMName="OceanOceanVerticalPhysicsOceanMixedLayerMomentumSchemeType" 353 353 esgName="OceanVerticalPhysicsMixedLayerMomentumSchemeType" /> 354 < entry CIMName="OceanOceanVerticalPhysicsOceanMixedLayerMomentumClosureOrder"354 <ndg:entry CIMName="OceanOceanVerticalPhysicsOceanMixedLayerMomentumClosureOrder" 355 355 esgName="OceanVerticalPhysicsMixedLayerMomentumClosureOrder" /> 356 < entry CIMName="OceanOceanVerticalPhysicsOceanInteriorMixingTracersSchemeType"356 <ndg:entry CIMName="OceanOceanVerticalPhysicsOceanInteriorMixingTracersSchemeType" 357 357 esgName="OceanVerticalPhysicsInteriorMixingTracersSchemeType" /> 358 < entry358 <ndg:entry 359 359 CIMName="OceanOceanVerticalPhysicsOceanInteriorMixingTracersBackgroundType" 360 360 esgName="OceanVerticalPhysicsInteriorMixingTracersBackgroundType" /> 361 < entry CIMName="OceanOceanVerticalPhysicsOceanInteriorMixingMomentumSchemeType"361 <ndg:entry CIMName="OceanOceanVerticalPhysicsOceanInteriorMixingMomentumSchemeType" 362 362 esgName="OceanVerticalPhysicsInteriorMixingMomentumSchemeType" /> 363 < entry363 <ndg:entry 364 364 CIMName="OceanOceanVerticalPhysicsOceanInteriorMixingMomentumBackgroundType" 365 365 esgName="OceanVerticalPhysicsInteriorMixingMomentumBackgroundType" /> 366 < entry CIMName="OceanOceanUpAndLowBoundariesFreeSurfaceType"366 <ndg:entry CIMName="OceanOceanUpAndLowBoundariesFreeSurfaceType" 367 367 esgName="OceanFreeSurfaceType" /> 368 < entry CIMName="OceanOceanUpAndLowBoundariesBottomBoundaryLayerType"368 <ndg:entry CIMName="OceanOceanUpAndLowBoundariesBottomBoundaryLayerType" 369 369 esgName="OceanBottomBoundaryLayerType" /> 370 < entry CIMName="OceanOceanUpAndLowBoundariesBottomBoundaryLayerSillOverflow"370 <ndg:entry CIMName="OceanOceanUpAndLowBoundariesBottomBoundaryLayerSillOverflow" 371 371 esgName="OceanBottomBoundaryLayerSillOverflow" /> 372 < entry CIMName="OceanOceanBoundaryForcingMomentumBottomFriction"372 <ndg:entry CIMName="OceanOceanBoundaryForcingMomentumBottomFriction" 373 373 esgName="OceanBoundaryForcingMomentumBottomFriction" /> 374 < entry CIMName="OceanOceanBoundaryForcingMomentumLateralFriction"374 <ndg:entry CIMName="OceanOceanBoundaryForcingMomentumLateralFriction" 375 375 esgName="OceanBoundaryForcingMomentumLateralFriction" /> 376 < entry CIMName="OceanOceanBoundaryForcingMomentumSurfaceFluxCorrection"376 <ndg:entry CIMName="OceanOceanBoundaryForcingMomentumSurfaceFluxCorrection" 377 377 esgName="OceanBoundaryForcingMomentumSurfaceFluxCorrection" /> 378 < entry378 <ndg:entry 379 379 CIMName="OceanOceanBoundaryForcingOceanBoundForcingTracersGeothermalHeating" 380 380 esgName="OceanBoundaryForcingTracersGeothermalHeating" /> 381 < entry381 <ndg:entry 382 382 CIMName="OceanOceanBoundaryForcingOceanBoundForcingTracersSurfaceFluxCorrections" 383 383 esgName="OceanBoundaryForcingTracersSurfaceFluxCorrections" /> 384 < entry384 <ndg:entry 385 385 CIMName="OceanOceanBoundaryForcingOceanBoundForcingTracersSunlightPenetrationSchemeType" 386 386 esgName="OceanBoundaryForcingTracersSunlightPenetrationSchemeType" /> 387 < entry387 <ndg:entry 388 388 CIMName="OceanOceanBoundaryForcingOceanBoundForcingTracersSunlightPenetrationOceanColorDependent" 389 389 esgName="OceanBoundaryForcingTracersSunlightPenetrationOceanColorDependent" /> 390 < entry390 <ndg:entry 391 391 CIMName="OceanOceanBoundaryForcingOceanBoundForcingTracersSurfaceSalinityFromAtmosphere" 392 392 esgName="OceanBoundaryForcingTracersSurfaceSalinityFromAtmosphere" /> 393 < entry393 <ndg:entry 394 394 CIMName="OceanOceanBoundaryForcingOceanBoundForcingTracersSurfaceSalinityFromSeaIce" 395 395 esgName="OceanBoundaryForcingTracersSurfaceSalinityFromSeaIce" /> 396 < entry396 <ndg:entry 397 397 CIMName="OceanOceanBoundaryForcingOceanBoundForcingTracersSurfaceSalinityFromRiver" 398 398 esgName="OceanBoundaryForcingTracersSurfaceSalinityFromRiver" /> 399 < entry399 <ndg:entry 400 400 CIMName="OceanBiogeoChemistryOceanBioKeyPropertiesOceanBioTimeStepFrameworkPassiveTracersMethod" 401 401 esgName="OceanBiogeoChemistryTimeStepFrameworkPassiveTracersMethod" /> 402 < entry402 <ndg:entry 403 403 CIMName="OceanBiogeoChemistryOceanBioKeyPropertiesOceanBioTimeStepFrameworkBiologyMethod" 404 404 esgName="OceanBiogeoChemistryTimeStepFrameworkBiologyMethod" /> 405 < entry405 <ndg:entry 406 406 CIMName="OceanBiogeoChemistryOceanBioKeyPropertiesOceanBioSpaceConfigHorizontalDomainGridConfiguration" 407 407 esgName="OceanBiogeoChemistryHorizontalGridConfiguration" /> 408 < entry408 <ndg:entry 409 409 CIMName="OceanBiogeoChemistryOceanBioKeyPropertiesOceanBioSpaceConfigVerticalDomainGridConfiguration" 410 410 esgName="OceanBiogeoChemistryVerticalGridConfiguration" /> 411 < entry CIMName="OceanBiogeoChemistryOceanBioKeyPropertiesTransportMethod"411 <ndg:entry CIMName="OceanBiogeoChemistryOceanBioKeyPropertiesTransportMethod" 412 412 esgName="OceanBiogeoChemistryTransportMethod" /> 413 < entry413 <ndg:entry 414 414 CIMName="OceanBiogeoChemistryOceanBioBoundaryForcingAtmosphericDeposition" 415 415 esgName="OceanBiogeoChemistryBoundaryForcingAtmosphericDeposition" /> 416 < entry CIMName="OceanBiogeoChemistryOceanBioBoundaryForcingRiverInput"416 <ndg:entry CIMName="OceanBiogeoChemistryOceanBioBoundaryForcingRiverInput" 417 417 esgName="OceanBiogeoChemistryBoundaryForcingRiverInput" /> 418 < entry418 <ndg:entry 419 419 CIMName="OceanBiogeoChemistryOceanBioBoundaryForcingSedimentInteractions" 420 420 esgName="OceanBiogeoChemistryBoundaryForcingSedimentInteractions" /> 421 < entry CIMName="OceanBiogeoChemistryOceanBioGasExchangeCO2Present"421 <ndg:entry CIMName="OceanBiogeoChemistryOceanBioGasExchangeCO2Present" 422 422 esgName="OceanBiogeoChemistryGasExchangeCO2Present" /> 423 < entry CIMName="OceanBiogeoChemistryOceanBioGasExchangeCO2SchemeType"423 <ndg:entry CIMName="OceanBiogeoChemistryOceanBioGasExchangeCO2SchemeType" 424 424 esgName="OceanBiogeoChemistryGasExchangeCO2SchemeType" /> 425 < entry CIMName="OceanBiogeoChemistryOceanBioGasExchangeO2Present"425 <ndg:entry CIMName="OceanBiogeoChemistryOceanBioGasExchangeO2Present" 426 426 esgName="OceanBiogeoChemistryGasExchangeO2Present" /> 427 < entry CIMName="OceanBiogeoChemistryOceanBioGasExchangeO2SchemeType"427 <ndg:entry CIMName="OceanBiogeoChemistryOceanBioGasExchangeO2SchemeType" 428 428 esgName="OceanBiogeoChemistryGasExchangeO2SchemeType" /> 429 < entry CIMName="OceanBiogeoChemistryOceanBioGasExchangeDMSPresent"429 <ndg:entry CIMName="OceanBiogeoChemistryOceanBioGasExchangeDMSPresent" 430 430 esgName="OceanBiogeoChemistryGasExchangeDMSPresent" /> 431 < entry CIMName="OceanBiogeoChemistryOceanBioGasExchangeDMSSchemeType"431 <ndg:entry CIMName="OceanBiogeoChemistryOceanBioGasExchangeDMSSchemeType" 432 432 esgName="OceanBiogeoChemistryGasExchangeDMSSchemeType" /> 433 < entry CIMName="OceanBiogeoChemistryOceanBioGasExchangeN2Present"433 <ndg:entry CIMName="OceanBiogeoChemistryOceanBioGasExchangeN2Present" 434 434 esgName="OceanBiogeoChemistryGasExchangeN2Present" /> 435 < entry CIMName="OceanBiogeoChemistryOceanBioGasExchangeN2SchemeType"435 <ndg:entry CIMName="OceanBiogeoChemistryOceanBioGasExchangeN2SchemeType" 436 436 esgName="OceanBiogeoChemistryGasExchangeN2SchemeType" /> 437 < entry CIMName="OceanBiogeoChemistryOceanBioGasExchangeN2OPresent"437 <ndg:entry CIMName="OceanBiogeoChemistryOceanBioGasExchangeN2OPresent" 438 438 esgName="OceanBiogeoChemistryGasExchangeN2OPresent" /> 439 < entry CIMName="OceanBiogeoChemistryOceanBioGasExchangeN2OSchemeType"439 <ndg:entry CIMName="OceanBiogeoChemistryOceanBioGasExchangeN2OSchemeType" 440 440 esgName="OceanBiogeoChemistryGasExchangeN2OSchemeType" /> 441 < entry CIMName="OceanBiogeoChemistryOceanBioGasExchangeCOPresent"441 <ndg:entry CIMName="OceanBiogeoChemistryOceanBioGasExchangeCOPresent" 442 442 esgName="OceanBiogeoChemistryGasExchangeCOPresent" /> 443 < entry CIMName="OceanBiogeoChemistryOceanBioGasExchangeCOSchemeType"443 <ndg:entry CIMName="OceanBiogeoChemistryOceanBioGasExchangeCOSchemeType" 444 444 esgName="OceanBiogeoChemistryGasExchangeCOSchemeType" /> 445 < entry CIMName="OceanBiogeoChemistryOceanBioTracersSulfurCycle"445 <ndg:entry CIMName="OceanBiogeoChemistryOceanBioTracersSulfurCycle" 446 446 esgName="OceanBiogeoChemistryTracersSulfurCycle" /> 447 < entry CIMName="OceanBiogeoChemistryOceanBioTracersNutrientsListOfSpecies"447 <ndg:entry CIMName="OceanBiogeoChemistryOceanBioTracersNutrientsListOfSpecies" 448 448 esgName="OceanBiogeoChemistryTracersNutrientsListOfSpecies" /> 449 < entry CIMName="OceanBiogeoChemistryOceanBioTracersNutrientsNitrousSpecies"449 <ndg:entry CIMName="OceanBiogeoChemistryOceanBioTracersNutrientsNitrousSpecies" 450 450 esgName="OceanBiogeoChemistryTracersNutrientsNitrousSpecies" /> 451 < entry CIMName="OceanBiogeoChemistryOceanBioTracersNutrientsProcesses"451 <ndg:entry CIMName="OceanBiogeoChemistryOceanBioTracersNutrientsProcesses" 452 452 esgName="OceanBiogeoChemistryTracersNutrientsProcesses" /> 453 < entry453 <ndg:entry 454 454 CIMName="OceanBiogeoChemistryOceanBioTracersOceanBioTracersEcosystemUpperTrophicLevels" 455 455 esgName="OceanBiogeoChemistryTracersEcosystemUpperTrophicLevels" /> 456 < entry456 <ndg:entry 457 457 CIMName="OceanBiogeoChemistryOceanBioTracersOceanBioTracersEcosystemPhytoplanctonType" 458 458 esgName="OceanBiogeoChemistryTracersEcosystemPhytoplanctonType" /> 459 < entry459 <ndg:entry 460 460 CIMName="OceanBiogeoChemistryOceanBioTracersOceanBioTracersEcosystemPhytoplanctonListOfSpecies" 461 461 esgName="OceanBiogeoChemistryTracersEcosystemPhytoplanctonListOfSpecies" /> 462 < entry462 <ndg:entry 463 463 CIMName="OceanBiogeoChemistryOceanBioTracersOceanBioTracersEcosystemZooplanctonType" 464 464 esgName="OceanBiogeoChemistryTracersEcosystemZooplanctonType" /> 465 < entry465 <ndg:entry 466 466 CIMName="OceanBiogeoChemistryOceanBioTracersOceanBioTracersEcosystemZooplanctonListOfSpecies" 467 467 esgName="OceanBiogeoChemistryTracersEcosystemZooplanctonListOfSpecies" /> 468 < entry468 <ndg:entry 469 469 CIMName="OceanBiogeoChemistryOceanBioTracersDisolvedOrganicMatterLability" 470 470 esgName="OceanBiogeoChemistryTracersDisolvedOrganicMatterLability" /> 471 < entry471 <ndg:entry 472 472 CIMName="OceanBiogeoChemistryOceanBioTracersDisolvedOrganicMatterBacteriaRepresentation" 473 473 esgName="OceanBiogeoChemistryTracersDisolvedOrganicMatterBacteriaRepresentation" /> 474 < entry CIMName="OceanBiogeoChemistryOceanBioTracersParticulesMethod"474 <ndg:entry CIMName="OceanBiogeoChemistryOceanBioTracersParticulesMethod" 475 475 esgName="OceanBiogeoChemistryTracersParticulesMethod" /> 476 < entry CIMName="OceanBiogeoChemistryOceanBioTracersParticulesTypesOfParticules"476 <ndg:entry CIMName="OceanBiogeoChemistryOceanBioTracersParticulesTypesOfParticules" 477 477 esgName="OceanBiogeoChemistryTracersParticulesTypesOfParticules" /> 478 < entry CIMName="OceanBiogeoChemistryOceanBioTracersParticulesSizeSpectrum"478 <ndg:entry CIMName="OceanBiogeoChemistryOceanBioTracersParticulesSizeSpectrum" 479 479 esgName="OceanBiogeoChemistryTracersParticulesSizeSpectrum" /> 480 < entry CIMName="OceanBiogeoChemistryOceanBioTracersParticulesSinkingSpeed"480 <ndg:entry CIMName="OceanBiogeoChemistryOceanBioTracersParticulesSinkingSpeed" 481 481 esgName="OceanBiogeoChemistryTracersParticulesSinkingSpeed" /> 482 < entry CIMName="OceanBiogeoChemistryOceanBioChemistryCarbonChemistrypH-scale"482 <ndg:entry CIMName="OceanBiogeoChemistryOceanBioChemistryCarbonChemistrypH-scale" 483 483 esgName="OceanBiogeoChemistryCarbonChemistrypH-scale" /> 484 < entry CIMName="AtmosphereAtmosKeyPropertiesModelFamily" esgName="AtmosphereModelFamily" />485 < entry CIMName="AtmosphereAtmosKeyPropertiesBasicApproximations"484 <ndg:entry CIMName="AtmosphereAtmosKeyPropertiesModelFamily" esgName="AtmosphereModelFamily" /> 485 <ndg:entry CIMName="AtmosphereAtmosKeyPropertiesBasicApproximations" 486 486 esgName="AtmosphereBasicApproximations" /> 487 < entry CIMName="AtmosphereAtmosKeyPropertiesVolcanoesImplementation"487 <ndg:entry CIMName="AtmosphereAtmosKeyPropertiesVolcanoesImplementation" 488 488 esgName="AtmosphereVolcanoesImplementation" /> 489 < entry CIMName="AtmosphereAtmosKeyPropertiesVolcanoesForcingFields"489 <ndg:entry CIMName="AtmosphereAtmosKeyPropertiesVolcanoesForcingFields" 490 490 esgName="AtmosphereVolcanoesForcingFields" /> 491 < entry CIMName="AtmosphereAtmosKeyPropertiesTopOfAtmosInsolationImpactOnOzone"491 <ndg:entry CIMName="AtmosphereAtmosKeyPropertiesTopOfAtmosInsolationImpactOnOzone" 492 492 esgName="AtmosphereInsolationImpactOnOzone" /> 493 < entry493 <ndg:entry 494 494 CIMName="AtmosphereAtmosKeyPropertiesTopOfAtmosInsolationSolarConstantType" 495 495 esgName="AtmosphereInsolationSolarConstantType" /> 496 < entry496 <ndg:entry 497 497 CIMName="AtmosphereAtmosKeyPropertiesTopOfAtmosInsolationOrbitalParametersType" 498 498 esgName="AtmosphereInsolationOrbitalParametersType" /> 499 < entry499 <ndg:entry 500 500 CIMName="AtmosphereAtmosKeyPropertiesTopOfAtmosInsolationOrbitalParametersComputationMethod" 501 501 esgName="AtmosphereInsolationOrbitalParametersComputationMethod" /> 502 < entry502 <ndg:entry 503 503 CIMName="AtmosphereAtmosKeyPropertiesAtmosSpaceConfigurationOrographyOrographyType" 504 504 esgName="AtmosphereOrographyType" /> 505 < entry505 <ndg:entry 506 506 CIMName="AtmosphereAtmosKeyPropertiesAtmosSpaceConfigurationOrographyOrographyChanges" 507 507 esgName="AtmosphereOrographyChanges" /> 508 < entry508 <ndg:entry 509 509 CIMName="AtmosphereAtmosKeyPropertiesAtmosSpaceConfigurationAtmosHorizontalDomainGridGridType" 510 510 esgName="AtmosphereHorizontalGridType" /> 511 < entry511 <ndg:entry 512 512 CIMName="AtmosphereAtmosKeyPropertiesAtmosSpaceConfigurationAtmosHorizontalDomainGridPoleSingularityTreatment" 513 513 esgName="AtmosphereHorizontalPoleSingularityTreatment" /> 514 < entry514 <ndg:entry 515 515 CIMName="AtmosphereAtmosKeyPropertiesAtmosSpaceConfigurationVerticalDomainVerticalCoordinateSystem" 516 516 esgName="AtmosphereVerticalCoordinateSystem" /> 517 < entry CIMName="AtmosphereAtmosDynamicalCoreListOfPrognosticVariables"517 <ndg:entry CIMName="AtmosphereAtmosDynamicalCoreListOfPrognosticVariables" 518 518 esgName="AtmosphereDynamicalCoreListOfPrognosticVariables" /> 519 < entry CIMName="AtmosphereAtmosDynamicalCoreTopBoundaryCondition"519 <ndg:entry CIMName="AtmosphereAtmosDynamicalCoreTopBoundaryCondition" 520 520 esgName="AtmosphereDynamicalCoreTopBoundaryCondition" /> 521 < entry CIMName="AtmosphereAtmosDynamicalCoreLateralBoundaryCondition"521 <ndg:entry CIMName="AtmosphereAtmosDynamicalCoreLateralBoundaryCondition" 522 522 esgName="AtmosphereDynamicalCoreLateralBoundaryCondition" /> 523 < entry CIMName="AtmosphereAtmosDynamicalCoreTimeSteppingFrameworkSchemeType"523 <ndg:entry CIMName="AtmosphereAtmosDynamicalCoreTimeSteppingFrameworkSchemeType" 524 524 esgName="AtmosphereDynamicalCoreTimeSteppingFrameworkSchemeType" /> 525 < entry CIMName="AtmosphereAtmosDynamicalCoreHorizontalDiscretizationSchemeType"525 <ndg:entry CIMName="AtmosphereAtmosDynamicalCoreHorizontalDiscretizationSchemeType" 526 526 esgName="AtmosphereDynamicalCoreHorizontalDiscretizationSchemeType" /> 527 < entry527 <ndg:entry 528 528 CIMName="AtmosphereAtmosDynamicalCoreHorizontalDiscretizationSchemeMethod" 529 529 esgName="AtmosphereDynamicalCoreHorizontalDiscretizationSchemeMethod" /> 530 < entry CIMName="AtmosphereAtmosDynamicalCoreHorizontalDiffusionSchemeMethod"530 <ndg:entry CIMName="AtmosphereAtmosDynamicalCoreHorizontalDiffusionSchemeMethod" 531 531 esgName="AtmosphereDynamicalCoreHorizontalDiffusionSchemeMethod" /> 532 < entry CIMName="AtmosphereAtmosDynamicalCoreAtmosAdvectionTracersSchemeName"532 <ndg:entry CIMName="AtmosphereAtmosDynamicalCoreAtmosAdvectionTracersSchemeName" 533 533 esgName="AtmosphereDynamicalCoreAdvectionTracersSchemeName" /> 534 < entry CIMName="AtmosphereAtmosDynamicalCoreAtmosAdvectionTracersSchemeType"534 <ndg:entry CIMName="AtmosphereAtmosDynamicalCoreAtmosAdvectionTracersSchemeType" 535 535 esgName="AtmosphereDynamicalCoreAdvectionTracersSchemeType" /> 536 < entry536 <ndg:entry 537 537 CIMName="AtmosphereAtmosDynamicalCoreAtmosAdvectionTracersConservationMethod" 538 538 esgName="AtmosphereDynamicalCoreAdvectionTracersConservationMethod" /> 539 < entry CIMName="AtmosphereAtmosDynamicalCoreAtmosAdvectionMomentumSchemeType"539 <ndg:entry CIMName="AtmosphereAtmosDynamicalCoreAtmosAdvectionMomentumSchemeType" 540 540 esgName="AtmosphereDynamicalCoreAdvectionMomentumSchemeType" /> 541 < entry541 <ndg:entry 542 542 CIMName="AtmosphereAtmosDynamicalCoreAtmosAdvectionMomentumConservationMethod" 543 543 esgName="AtmosphereDynamicalCoreAdvectionMomentumConservationMethod" /> 544 < entry CIMName="AtmosphereAtmosRadiationAerosolTypes" esgName="AtmosphereRadiationAerosolTypes" />545 < entry CIMName="AtmosphereAtmosRadiationGHG-Types" esgName="AtmosphereRadiationGHG-Types" />546 < entry CIMName="AtmosphereAtmosRadiationLongwaveSchemeType"544 <ndg:entry CIMName="AtmosphereAtmosRadiationAerosolTypes" esgName="AtmosphereRadiationAerosolTypes" /> 545 <ndg:entry CIMName="AtmosphereAtmosRadiationGHG-Types" esgName="AtmosphereRadiationGHG-Types" /> 546 <ndg:entry CIMName="AtmosphereAtmosRadiationLongwaveSchemeType" 547 547 esgName="AtmosphereRadiationLongwaveSchemeType" /> 548 < entry CIMName="AtmosphereAtmosRadiationLongwaveSchemeMethod"548 <ndg:entry CIMName="AtmosphereAtmosRadiationLongwaveSchemeMethod" 549 549 esgName="AtmosphereRadiationLongwaveSchemeMethod" /> 550 < entry CIMName="AtmosphereAtmosRadiationShortwaveSchemeType"550 <ndg:entry CIMName="AtmosphereAtmosRadiationShortwaveSchemeType" 551 551 esgName="AtmosphereRadiationShortwaveSchemeType" /> 552 < entry552 <ndg:entry 553 553 CIMName="AtmosphereAtmosConvectTurbulCloudBoundaryLayerTurbulenceSchemeName" 554 554 esgName="AtmosphereBoundaryLayerTurbulenceSchemeName" /> 555 < entry555 <ndg:entry 556 556 CIMName="AtmosphereAtmosConvectTurbulCloudBoundaryLayerTurbulenceSchemeType" 557 557 esgName="AtmosphereBoundaryLayerTurbulenceSchemeType" /> 558 < entry558 <ndg:entry 559 559 CIMName="AtmosphereAtmosConvectTurbulCloudBoundaryLayerTurbulenceCounterGradient" 560 560 esgName="AtmosphereBoundaryLayerTurbulenceCounterGradient" /> 561 < entry CIMName="AtmosphereAtmosConvectTurbulCloudDeepConvectionSchemeType"561 <ndg:entry CIMName="AtmosphereAtmosConvectTurbulCloudDeepConvectionSchemeType" 562 562 esgName="AtmosphereDeepConvectionSchemeType" /> 563 < entry CIMName="AtmosphereAtmosConvectTurbulCloudDeepConvectionSchemeMethod"563 <ndg:entry CIMName="AtmosphereAtmosConvectTurbulCloudDeepConvectionSchemeMethod" 564 564 esgName="AtmosphereDeepConvectionSchemeMethod" /> 565 < entry CIMName="AtmosphereAtmosConvectTurbulCloudDeepConvectionProcesses"565 <ndg:entry CIMName="AtmosphereAtmosConvectTurbulCloudDeepConvectionProcesses" 566 566 esgName="AtmosphereDeepConvectionProcesses" /> 567 < entry CIMName="AtmosphereAtmosConvectTurbulCloudShallowConvectionMethod"567 <ndg:entry CIMName="AtmosphereAtmosConvectTurbulCloudShallowConvectionMethod" 568 568 esgName="AtmosphereShallowConvectionMethod" /> 569 < entry CIMName="AtmosphereAtmosConvectTurbulCloudShallowConvectionSchemeType"569 <ndg:entry CIMName="AtmosphereAtmosConvectTurbulCloudShallowConvectionSchemeType" 570 570 esgName="AtmosphereShallowConvectionSchemeType" /> 571 < entry CIMName="AtmosphereAtmosConvectTurbulCloudOtherConvectionSchemeType"571 <ndg:entry CIMName="AtmosphereAtmosConvectTurbulCloudOtherConvectionSchemeType" 572 572 esgName="AtmosphereOtherConvectionSchemeType" /> 573 < entry573 <ndg:entry 574 574 CIMName="AtmosphereAtmosConvectTurbulCloudLargeScalePrecipitationPrecipitatingHydrometeors" 575 575 esgName="AtmosphereLargeScalePrecipitationPrecipitatingHydrometeors" /> 576 < entry CIMName="AtmosphereAtmosConvectTurbulCloudMicrophysicsProcesses"576 <ndg:entry CIMName="AtmosphereAtmosConvectTurbulCloudMicrophysicsProcesses" 577 577 esgName="AtmosphereMicrophysicsProcesses" /> 578 < entry578 <ndg:entry 579 579 CIMName="AtmosphereAtmosConvectTurbulCloudAtmosCloudSchemeCloudSchemeAttributesSeparatedCloudTreatment" 580 580 esgName="AtmosphereCloudSchemeSeparatedCloudTreatment" /> 581 < entry581 <ndg:entry 582 582 CIMName="AtmosphereAtmosConvectTurbulCloudAtmosCloudSchemeCloudSchemeAttributesCloudOverlap" 583 583 esgName="AtmosphereCloudSchemeCloudOverlap" /> 584 < entry584 <ndg:entry 585 585 CIMName="AtmosphereAtmosConvectTurbulCloudAtmosCloudSchemeSubGridScaleWaterDistributionType" 586 586 esgName="AtmosphereCloudSchemeSubGridScaleWaterDistributionType" /> 587 < entry587 <ndg:entry 588 588 CIMName="AtmosphereAtmosConvectTurbulCloudAtmosCloudSchemeSubGridScaleWaterDistributionCouplingWithConvection" 589 589 esgName="AtmosphereCloudSchemeSubGridScaleWaterDistributionCouplingWithConvection" /> 590 < entry590 <ndg:entry 591 591 CIMName="AtmosphereAtmosConvectTurbulCloudCloudSimulatorCOSPAttributesCOSPRunConfiguration" 592 592 esgName="AtmosphereCloudSimulatorCOSPRunConfiguration" /> 593 < entry593 <ndg:entry 594 594 CIMName="AtmosphereAtmosConvectTurbulCloudCloudSimulatorInputsRadarRadarType" 595 595 esgName="AtmosphereCloudSimulatorInputsRadarRadarType" /> 596 < entry596 <ndg:entry 597 597 CIMName="AtmosphereAtmosConvectTurbulCloudCloudSimulatorInputsRadarUseGasAbsorption" 598 598 esgName="AtmosphereCloudSimulatorInputsRadarUseGasAbsorption" /> 599 < entry599 <ndg:entry 600 600 CIMName="AtmosphereAtmosConvectTurbulCloudCloudSimulatorInputsRadarUseEffectiveRadius" 601 601 esgName="AtmosphereCloudSimulatorInputsRadarUseEffectiveRadius" /> 602 < entry602 <ndg:entry 603 603 CIMName="AtmosphereAtmosConvectTurbulCloudCloudSimulatorInputsLidarLidarIceType" 604 604 esgName="AtmosphereCloudSimulatorInputsLidarLidarIceType" /> 605 < entry605 <ndg:entry 606 606 CIMName="AtmosphereAtmosConvectTurbulCloudCloudSimulatorInputsLidarOverlap" 607 607 esgName="AtmosphereCloudSimulatorInputsLidarOverlap" /> 608 < entry608 <ndg:entry 609 609 CIMName="AtmosphereAtmosConvectTurbulCloudCloudSimulatorISSCPAttributesTopHeight" 610 610 esgName="AtmosphereCloudSimulatorISSCPTopHeight" /> 611 < entry611 <ndg:entry 612 612 CIMName="AtmosphereAtmosConvectTurbulCloudCloudSimulatorISSCPAttributesTopHeightDirection" 613 613 esgName="AtmosphereCloudSimulatorISSCPTopHeightDirection" /> 614 < entry CIMName="AtmosphereAtmosOrographyAndWavesSpongeLayer"614 <ndg:entry CIMName="AtmosphereAtmosOrographyAndWavesSpongeLayer" 615 615 esgName="AtmosphereSpongeLayer" /> 616 < entry CIMName="AtmosphereAtmosOrographyAndWavesBackground"616 <ndg:entry CIMName="AtmosphereAtmosOrographyAndWavesBackground" 617 617 esgName="AtmosphereBackground" /> 618 < entry CIMName="AtmosphereAtmosOrographyAndWavesSubGridScaleOrography"618 <ndg:entry CIMName="AtmosphereAtmosOrographyAndWavesSubGridScaleOrography" 619 619 esgName="AtmosphereSubGridScaleOrography" /> 620 < entry620 <ndg:entry 621 621 CIMName="AtmosphereAtmosOrographyAndWavesOrographicGravityWavesSourceMechanisms" 622 622 esgName="AtmosphereOrographicGravityWavesSourceMechanisms" /> 623 < entry623 <ndg:entry 624 624 CIMName="AtmosphereAtmosOrographyAndWavesOrographicGravityWavesCalculationMethod" 625 625 esgName="AtmosphereOrographicGravityWavesCalculationMethod" /> 626 < entry626 <ndg:entry 627 627 CIMName="AtmosphereAtmosOrographyAndWavesOrographicGravityWavesPropagationScheme" 628 628 esgName="AtmosphereOrographicGravityWavesPropagationScheme" /> 629 < entry629 <ndg:entry 630 630 CIMName="AtmosphereAtmosOrographyAndWavesOrographicGravityWavesDissipationScheme" 631 631 esgName="AtmosphereOrographicGravityWavesDissipationScheme" /> 632 < entry632 <ndg:entry 633 633 CIMName="AtmosphereAtmosOrographyAndWavesConvectiveGravityWavesPropagationScheme" 634 634 esgName="AtmosphereConvectiveGravityWavesPropagationScheme" /> 635 < entry635 <ndg:entry 636 636 CIMName="AtmosphereAtmosOrographyAndWavesConvectiveGravityWavesDissipationScheme" 637 637 esgName="AtmosphereConvectiveGravityWavesDissipationScheme" /> 638 < entry638 <ndg:entry 639 639 CIMName="AtmosphereAtmosOrographyAndWavesNon-OrographicGravityWavesSourceMechanisms" 640 640 esgName="AtmosphereNon-OrographicGravityWavesSourceMechanisms" /> 641 < entry641 <ndg:entry 642 642 CIMName="AtmosphereAtmosOrographyAndWavesNon-OrographicGravityWavesCalculationMethod" 643 643 esgName="AtmosphereNon-OrographicGravityWavesCalculationMethod" /> 644 < entry644 <ndg:entry 645 645 CIMName="AtmosphereAtmosOrographyAndWavesNon-OrographicGravityWavesPropagationScheme" 646 646 esgName="AtmosphereNon-OrographicGravityWavesPropagationScheme" /> 647 < entry647 <ndg:entry 648 648 CIMName="AtmosphereAtmosOrographyAndWavesNon-OrographicGravityWavesDissipationScheme" 649 649 esgName="AtmosphereNon-OrographicGravityWavesDissipationScheme" /> 650 < entry CIMName="LandSurfaceLandSurfaceKeyPropertiesGenealogy"650 <ndg:entry CIMName="LandSurfaceLandSurfaceKeyPropertiesGenealogy" 651 651 esgName="LandSurfaceGenealogy" /> 652 < entry CIMName="LandSurfaceLandSurfaceKeyPropertiesCouplingWithAtmosphere"652 <ndg:entry CIMName="LandSurfaceLandSurfaceKeyPropertiesCouplingWithAtmosphere" 653 653 esgName="LandSurfaceCouplingWithAtmosphere" /> 654 < entry CIMName="LandSurfaceLandSurfaceKeyPropertiesLandCoverTypes"654 <ndg:entry CIMName="LandSurfaceLandSurfaceKeyPropertiesLandCoverTypes" 655 655 esgName="LandSurfaceLandCoverTypes" /> 656 < entry CIMName="LandSurfaceLandSurfaceKeyPropertiesListOfPrognosticVariables"656 <ndg:entry CIMName="LandSurfaceLandSurfaceKeyPropertiesListOfPrognosticVariables" 657 657 esgName="LandSurfaceListOfPrognosticVariables" /> 658 < entry658 <ndg:entry 659 659 CIMName="LandSurfaceLandSurfaceKeyPropertiesConservationOfPropertiesWaterTreatment" 660 660 esgName="LandSurfaceConservationOfPropertiesWaterTreatment" /> 661 < entry661 <ndg:entry 662 662 CIMName="LandSurfaceLandSurfaceKeyPropertiesConservationOfPropertiesWaterStorageMethod" 663 663 esgName="LandSurfaceConservationOfPropertiesWaterStorageMethod" /> 664 < entry664 <ndg:entry 665 665 CIMName="LandSurfaceLandSurfaceKeyPropertiesLandSurfaceSpaceConfigHorizontalDomainTiling" 666 666 esgName="LandSurfaceHorizontalTiling" /> 667 < entry667 <ndg:entry 668 668 CIMName="LandSurfaceLandSurfaceKeyPropertiesLandSurfaceSpaceConfigHorizontalDomainTilingMethod" 669 669 esgName="LandSurfaceHorizontalTilingMethod" /> 670 < entry670 <ndg:entry 671 671 CIMName="LandSurfaceLandSurfaceKeyPropertiesLandSurfaceSpaceConfigHorizontalDomainGridConfig" 672 672 esgName="LandSurfaceHorizontalGridConfig" /> 673 < entry CIMName="LandSurfaceLandSurfaceKeyPropertiesTimeSteppingFrameworkMethod"673 <ndg:entry CIMName="LandSurfaceLandSurfaceKeyPropertiesTimeSteppingFrameworkMethod" 674 674 esgName="LandSurfaceTimeSteppingFrameworkMethod" /> 675 < entry675 <ndg:entry 676 676 CIMName="LandSurfaceLandSurfaceSoilLandSurfSoilHydrologySoilHydrologyAttributesSpecificTiling" 677 677 esgName="LandSurfaceSoilHydrologySpecificTiling" /> 678 < entry678 <ndg:entry 679 679 CIMName="LandSurfaceLandSurfaceSoilLandSurfSoilHydrologySoilHydrologyAttributesWaterStorageMethod" 680 680 esgName="LandSurfaceSoilHydrologyWaterStorageMethod" /> 681 < entry681 <ndg:entry 682 682 CIMName="LandSurfaceLandSurfaceSoilLandSurfSoilHydrologySoilMoistureFreezingPermafrost" 683 683 esgName="LandSurfaceSoilHydrologySoilMoistureFreezingPermafrost" /> 684 < entry684 <ndg:entry 685 685 CIMName="LandSurfaceLandSurfaceSoilLandSurfSoilHydrologyRunoff-DrainageMethod" 686 686 esgName="LandSurfaceSoilHydrologyRunoff-DrainageMethod" /> 687 < entry687 <ndg:entry 688 688 CIMName="LandSurfaceLandSurfaceSoilLandSurfSoilHydrologyRunoff-DrainageProcesses" 689 689 esgName="LandSurfaceSoilHydrologyRunoff-DrainageProcesses" /> 690 < entry690 <ndg:entry 691 691 CIMName="LandSurfaceLandSurfaceSoilLandSurfSoilHeatTreatmentSoilHeatTreatmentAttributesSpecificTiling" 692 692 esgName="LandSurfaceSoilHeatTreatmentSpecificTiling" /> 693 < entry693 <ndg:entry 694 694 CIMName="LandSurfaceLandSurfaceSoilLandSurfSoilHeatTreatmentMethodHeatStorage" 695 695 esgName="LandSurfaceSoilHeatTreatmentMethodHeatStorage" /> 696 < entry696 <ndg:entry 697 697 CIMName="LandSurfaceLandSurfaceSoilLandSurfSoilHeatTreatmentMethodProcesses" 698 698 esgName="LandSurfaceSoilHeatTreatmentMethodProcesses" /> 699 < entry CIMName="LandSurfaceLandSurfaceSnowSpecificTiling"699 <ndg:entry CIMName="LandSurfaceLandSurfaceSnowSpecificTiling" 700 700 esgName="LandSurfaceSnowSpecificTiling" /> 701 < entry CIMName="LandSurfaceLandSurfaceSnowSchemeMethodSnowAlbedo"701 <ndg:entry CIMName="LandSurfaceLandSurfaceSnowSchemeMethodSnowAlbedo" 702 702 esgName="LandSurfaceSnowSchemeMethodSnowAlbedo" /> 703 < entry CIMName="LandSurfaceLandSurfaceSnowSchemeMethodSnowDensity"703 <ndg:entry CIMName="LandSurfaceLandSurfaceSnowSchemeMethodSnowDensity" 704 704 esgName="LandSurfaceSnowSchemeMethodSnowDensity" /> 705 < entry CIMName="LandSurfaceLandSurfaceSnowSchemeMethodSnowWaterEquivalent"705 <ndg:entry CIMName="LandSurfaceLandSurfaceSnowSchemeMethodSnowWaterEquivalent" 706 706 esgName="LandSurfaceSnowSchemeMethodSnowWaterEquivalent" /> 707 < entry CIMName="LandSurfaceLandSurfaceSnowSchemeMethodSnowHeatContent"707 <ndg:entry CIMName="LandSurfaceLandSurfaceSnowSchemeMethodSnowHeatContent" 708 708 esgName="LandSurfaceSnowSchemeMethodSnowHeatContent" /> 709 < entry CIMName="LandSurfaceLandSurfaceSnowSchemeMethodSnowTemperature"709 <ndg:entry CIMName="LandSurfaceLandSurfaceSnowSchemeMethodSnowTemperature" 710 710 esgName="LandSurfaceSnowSchemeMethodSnowTemperature" /> 711 < entry CIMName="LandSurfaceLandSurfaceSnowSchemeMethodSnowLiquidWaterContent"711 <ndg:entry CIMName="LandSurfaceLandSurfaceSnowSchemeMethodSnowLiquidWaterContent" 712 712 esgName="LandSurfaceSnowSchemeMethodSnowLiquidWaterContent" /> 713 < entry CIMName="LandSurfaceLandSurfaceSnowSchemeMethodSnowCoverFractions"713 <ndg:entry CIMName="LandSurfaceLandSurfaceSnowSchemeMethodSnowCoverFractions" 714 714 esgName="LandSurfaceSnowSchemeMethodSnowCoverFractions" /> 715 < entry CIMName="LandSurfaceLandSurfaceSnowSchemeMethodProcesses"715 <ndg:entry CIMName="LandSurfaceLandSurfaceSnowSchemeMethodProcesses" 716 716 esgName="LandSurfaceSnowSchemeMethodProcesses" /> 717 < entry CIMName="LandSurfaceLandSurfaceVegetationSpecificTiling"717 <ndg:entry CIMName="LandSurfaceLandSurfaceVegetationSpecificTiling" 718 718 esgName="LandSurfaceVegetationSpecificTiling" /> 719 < entry CIMName="LandSurfaceLandSurfaceVegetationVegetationRepresentation"719 <ndg:entry CIMName="LandSurfaceLandSurfaceVegetationVegetationRepresentation" 720 720 esgName="LandSurfaceVegetationVegetationRepresentation" /> 721 < entry CIMName="LandSurfaceLandSurfaceVegetationBiomeTypes"721 <ndg:entry CIMName="LandSurfaceLandSurfaceVegetationBiomeTypes" 722 722 esgName="LandSurfaceVegetationBiomeTypes" /> 723 < entry CIMName="LandSurfaceLandSurfaceVegetationVegetationTypes"723 <ndg:entry CIMName="LandSurfaceLandSurfaceVegetationVegetationTypes" 724 724 esgName="LandSurfaceVegetationVegetationTypes" /> 725 < entry CIMName="LandSurfaceLandSurfaceVegetationVegetationTimeVariation"725 <ndg:entry CIMName="LandSurfaceLandSurfaceVegetationVegetationTimeVariation" 726 726 esgName="LandSurfaceVegetationVegetationTimeVariation" /> 727 < entry CIMName="LandSurfaceLandSurfaceVegetationInterception"727 <ndg:entry CIMName="LandSurfaceLandSurfaceVegetationInterception" 728 728 esgName="LandSurfaceVegetationInterception" /> 729 < entry CIMName="LandSurfaceLandSurfaceVegetationSchemeMethodPhenology"729 <ndg:entry CIMName="LandSurfaceLandSurfaceVegetationSchemeMethodPhenology" 730 730 esgName="LandSurfaceVegetationSchemeMethodPhenology" /> 731 < entry CIMName="LandSurfaceLandSurfaceVegetationSchemeMethodLAI"731 <ndg:entry CIMName="LandSurfaceLandSurfaceVegetationSchemeMethodLAI" 732 732 esgName="LandSurfaceVegetationSchemeMethodLAI" /> 733 < entry CIMName="LandSurfaceLandSurfaceVegetationSchemeMethodBiomass"733 <ndg:entry CIMName="LandSurfaceLandSurfaceVegetationSchemeMethodBiomass" 734 734 esgName="LandSurfaceVegetationSchemeMethodBiomass" /> 735 < entry CIMName="LandSurfaceLandSurfaceVegetationSchemeMethodBioGeography"735 <ndg:entry CIMName="LandSurfaceLandSurfaceVegetationSchemeMethodBioGeography" 736 736 esgName="LandSurfaceVegetationSchemeMethodBioGeography" /> 737 < entry737 <ndg:entry 738 738 CIMName="LandSurfaceLandSurfaceVegetationSchemeMethodStomatalResistanceFunctionOf" 739 739 esgName="LandSurfaceVegetationSchemeMethodStomatalResistanceFunctionOf" /> 740 < entry CIMName="LandSurfaceLandSurfaceEnergyBalanceSpecificTiling"740 <ndg:entry CIMName="LandSurfaceLandSurfaceEnergyBalanceSpecificTiling" 741 741 esgName="LandSurfaceEnergyBalanceSpecificTiling" /> 742 < entry CIMName="LandSurfaceLandSurfaceEnergyBalanceSubsurfaceTiling"742 <ndg:entry CIMName="LandSurfaceLandSurfaceEnergyBalanceSubsurfaceTiling" 743 743 esgName="LandSurfaceEnergyBalanceSubsurfaceTiling" /> 744 < entry744 <ndg:entry 745 745 CIMName="LandSurfaceLandSurfaceEnergyBalanceSchemeMethodTypeOfEvaporationFormulation" 746 746 esgName="LandSurfaceEnergyBalanceSchemeMethodTypeOfEvaporationFormulation" /> 747 < entry CIMName="LandSurfaceLandSurfaceEnergyBalanceSchemeMethodProcesses"747 <ndg:entry CIMName="LandSurfaceLandSurfaceEnergyBalanceSchemeMethodProcesses" 748 748 esgName="LandSurfaceEnergyBalanceSchemeMethodProcesses" /> 749 < entry CIMName="LandSurfaceLandSurfaceAlbedoSpecificTiling"749 <ndg:entry CIMName="LandSurfaceLandSurfaceAlbedoSpecificTiling" 750 750 esgName="LandSurfaceAlbedoLandSurfaceAlbedoAttributesSpecificTiling" /> 751 < entry CIMName="LandSurfaceLandSurfaceAlbedoSnowFreeAlbedoType"751 <ndg:entry CIMName="LandSurfaceLandSurfaceAlbedoSnowFreeAlbedoType" 752 752 esgName="LandSurfaceAlbedoSnowFreeAlbedoType" /> 753 < entry CIMName="LandSurfaceLandSurfaceAlbedoSnowFreeAlbedoFunctionOf"753 <ndg:entry CIMName="LandSurfaceLandSurfaceAlbedoSnowFreeAlbedoFunctionOf" 754 754 esgName="LandSurfaceAlbedoSnowFreeAlbedoFunctionOf" /> 755 < entry CIMName="LandSurfaceLandSurfaceAlbedoSnowFreeAlbedoDirect-Diffuse"755 <ndg:entry CIMName="LandSurfaceLandSurfaceAlbedoSnowFreeAlbedoDirect-Diffuse" 756 756 esgName="LandSurfaceAlbedoSnowFreeAlbedoDirect-Diffuse" /> 757 < entry CIMName="LandSurfaceLandSurfaceAlbedoSnowAlbedoType"757 <ndg:entry CIMName="LandSurfaceLandSurfaceAlbedoSnowAlbedoType" 758 758 esgName="LandSurfaceAlbedoSnowAlbedoType" /> 759 < entry CIMName="LandSurfaceLandSurfaceAlbedoSnowAlbedoFunctionOf"759 <ndg:entry CIMName="LandSurfaceLandSurfaceAlbedoSnowAlbedoFunctionOf" 760 760 esgName="LandSurfaceAlbedoSnowAlbedoFunctionOf" /> 761 < entry761 <ndg:entry 762 762 CIMName="LandSurfaceLandSurfaceCarbonCycleVegetationCarbonCyclePhotosynthesisMethod" 763 763 esgName="LandSurfaceCarbonCycleVegetationPhotosynthesisMethod" /> 764 < entry764 <ndg:entry 765 765 CIMName="LandSurfaceLandSurfaceCarbonCycleVegetationCarbonCycleAutotrophicRespirationMethod" 766 766 esgName="LandSurfaceCarbonCycleVegetationAutotrophicRespirationMethod" /> 767 < entry767 <ndg:entry 768 768 CIMName="LandSurfaceLandSurfaceCarbonCycleVegetationCarbonCycleAutotrophicRespirationMaintenanceRespiration" 769 769 esgName="LandSurfaceCarbonCycleVegetationAutotrophicRespirationMaintenanceRespiration" /> 770 < entry770 <ndg:entry 771 771 CIMName="LandSurfaceLandSurfaceCarbonCycleVegetationCarbonCycleAllocationAllocationBins" 772 772 esgName="LandSurfaceCarbonCycleVegetationAllocationAllocationBins" /> 773 < entry773 <ndg:entry 774 774 CIMName="LandSurfaceLandSurfaceCarbonCycleVegetationCarbonCycleAllocationAllocationFractions" 775 775 esgName="LandSurfaceCarbonCycleVegetationAllocationAllocationFractions" /> 776 < entry776 <ndg:entry 777 777 CIMName="LandSurfaceLandSurfaceCarbonCycleVegetationCarbonCyclePhenologyMethod" 778 778 esgName="LandSurfaceCarbonCycleVegetationPhenologyMethod" /> 779 < entry CIMName="LandSurfaceLandSurfaceCarbonCycleSoilMethod"779 <ndg:entry CIMName="LandSurfaceLandSurfaceCarbonCycleSoilMethod" 780 780 esgName="LandSurfaceCarbonCycleSoilMethod" /> 781 < entry CIMName="LandSurfaceRiverRoutingSpecificTiling" esgName="LandSurfaceRiverRoutingSpecificTiling" />782 < entry CIMName="LandSurfaceRiverRoutingResolution" esgName="LandSurfaceRiverRoutingResolution" />783 < entry CIMName="LandSurfaceRiverRoutingListOfPrognosticVariables"781 <ndg:entry CIMName="LandSurfaceRiverRoutingSpecificTiling" esgName="LandSurfaceRiverRoutingSpecificTiling" /> 782 <ndg:entry CIMName="LandSurfaceRiverRoutingResolution" esgName="LandSurfaceRiverRoutingResolution" /> 783 <ndg:entry CIMName="LandSurfaceRiverRoutingListOfPrognosticVariables" 784 784 esgName="LandSurfaceRiverRoutingListOfPrognosticVariables" /> 785 < entry CIMName="LandSurfaceRiverRoutingWaterRe-evaporation"785 <ndg:entry CIMName="LandSurfaceRiverRoutingWaterRe-evaporation" 786 786 esgName="LandSurfaceRiverRoutingWaterRe-evaporation" /> 787 < entry CIMName="LandSurfaceRiverRoutingCouplingWithAtmosphere"787 <ndg:entry CIMName="LandSurfaceRiverRoutingCouplingWithAtmosphere" 788 788 esgName="LandSurfaceRiverRoutingCouplingWithAtmosphere" /> 789 < entry CIMName="LandSurfaceRiverRoutingDrainageMap" esgName="LandSurfaceRiverRoutingDrainageMap" />790 < entry CIMName="LandSurfaceRiverRoutingQuantitiesExchangedWithAtmosphere"789 <ndg:entry CIMName="LandSurfaceRiverRoutingDrainageMap" esgName="LandSurfaceRiverRoutingDrainageMap" /> 790 <ndg:entry CIMName="LandSurfaceRiverRoutingQuantitiesExchangedWithAtmosphere" 791 791 esgName="LandSurfaceRiverRoutingQuantitiesExchangedWithAtmosphere" /> 792 < entry CIMName="LandSurfaceRiverRoutingOceanicDischargeType"792 <ndg:entry CIMName="LandSurfaceRiverRoutingOceanicDischargeType" 793 793 esgName="LandSurfaceRiverRoutingOceanicDischargeType" /> 794 < entry CIMName="LandSurfaceRiverRoutingOceanicDischargeQuantitiesTransported"794 <ndg:entry CIMName="LandSurfaceRiverRoutingOceanicDischargeQuantitiesTransported" 795 795 esgName="LandSurfaceRiverRoutingOceanicDischargeQuantitiesTransported" /> 796 < entry CIMName="LandSurfaceLandSurfaceLakesCouplingWithRivers"796 <ndg:entry CIMName="LandSurfaceLandSurfaceLakesCouplingWithRivers" 797 797 esgName="LandSurfaceLakesCouplingWithRivers" /> 798 < entry CIMName="LandSurfaceLandSurfaceLakesQuantitiesExchangedWithRivers"798 <ndg:entry CIMName="LandSurfaceLandSurfaceLakesQuantitiesExchangedWithRivers" 799 799 esgName="LandSurfaceLakesQuantitiesExchangedWithRivers" /> 800 < entry CIMName="LandSurfaceLandSurfaceLakesSchemeMethodIceTreatment"800 <ndg:entry CIMName="LandSurfaceLandSurfaceLakesSchemeMethodIceTreatment" 801 801 esgName="LandSurfaceLakesSchemeMethodIceTreatment" /> 802 < entry CIMName="LandSurfaceLandSurfaceLakesSchemeMethodLakesAlbedo"802 <ndg:entry CIMName="LandSurfaceLandSurfaceLakesSchemeMethodLakesAlbedo" 803 803 esgName="LandSurfaceLakesSchemeMethodLakesAlbedo" /> 804 < entry CIMName="LandSurfaceLandSurfaceLakesSchemeMethodLakesDynamics"804 <ndg:entry CIMName="LandSurfaceLandSurfaceLakesSchemeMethodLakesDynamics" 805 805 esgName="LandSurfaceLakesSchemeMethodLakesDynamics" /> 806 < entry CIMName="LandSurfaceLandSurfaceLakesSchemeMethodDynamicLakesExtent"806 <ndg:entry CIMName="LandSurfaceLandSurfaceLakesSchemeMethodDynamicLakesExtent" 807 807 esgName="LandSurfaceLakesSchemeMethodDynamicLakesExtent" /> 808 < entry CIMName="LandSurfaceLandSurfaceLakesSchemeMethodEndorheicBasins"808 <ndg:entry CIMName="LandSurfaceLandSurfaceLakesSchemeMethodEndorheicBasins" 809 809 esgName="LandSurfaceLakesSchemeMethodEndorheicBasins" /> 810 < entry CIMName="SeaIceSeaIceKeyPropertiesSeaIceRepresentationSchemeType"810 <ndg:entry CIMName="SeaIceSeaIceKeyPropertiesSeaIceRepresentationSchemeType" 811 811 esgName="SeaIceSeaIceRepresentationSchemeType" /> 812 < entry812 <ndg:entry 813 813 CIMName="SeaIceSeaIceKeyPropertiesSeaIceSpaceConfigurationHorizontalDomainGridConfig" 814 814 esgName="SeaIceHorizontalGridConfig" /> 815 < entry CIMName="SeaIceSeaIceKeyPropertiesTimeSteppingFrameworkMethod"815 <ndg:entry CIMName="SeaIceSeaIceKeyPropertiesTimeSteppingFrameworkMethod" 816 816 esgName="SeaIceTimeSteppingFrameworkMethod" /> 817 < entry CIMName="SeaIceSeaIceThermodynamicsWaterPonds" esgName="SeaIceThermodynamicsWaterPonds" />818 < entry CIMName="SeaIceSeaIceThermodynamicsSnowHeatDiffusion"817 <ndg:entry CIMName="SeaIceSeaIceThermodynamicsWaterPonds" esgName="SeaIceThermodynamicsWaterPonds" /> 818 <ndg:entry CIMName="SeaIceSeaIceThermodynamicsSnowHeatDiffusion" 819 819 esgName="SeaIceThermodynamicsSnowHeatDiffusion" /> 820 < entry CIMName="SeaIceSeaIceThermodynamicsSnowSchemeType"820 <ndg:entry CIMName="SeaIceSeaIceThermodynamicsSnowSchemeType" 821 821 esgName="SeaIceThermodynamicsSnowSchemeType" /> 822 < entry CIMName="SeaIceSeaIceThermodynamicsIceVerticalHeatDiffusion"822 <ndg:entry CIMName="SeaIceSeaIceThermodynamicsIceVerticalHeatDiffusion" 823 823 esgName="SeaIceThermodynamicsIceVerticalHeatDiffusion" /> 824 < entry CIMName="SeaIceSeaIceThermodynamicsIceNumberOfLayers"824 <ndg:entry CIMName="SeaIceSeaIceThermodynamicsIceNumberOfLayers" 825 825 esgName="SeaIceThermodynamicsIceNumberOfLayers" /> 826 < entry CIMName="SeaIceSeaIceThermodynamicsIceOceanToIceBasalHeatFlux"826 <ndg:entry CIMName="SeaIceSeaIceThermodynamicsIceOceanToIceBasalHeatFlux" 827 827 esgName="SeaIceThermodynamicsIceOceanToIceBasalHeatFlux" /> 828 < entry CIMName="SeaIceSeaIceThermodynamicsIceBrineInclusions"828 <ndg:entry CIMName="SeaIceSeaIceThermodynamicsIceBrineInclusions" 829 829 esgName="SeaIceThermodynamicsIceBrineInclusions" /> 830 < entry CIMName="SeaIceSeaIceThermodynamicsIceProcesses" esgName="SeaIceThermodynamicsIceProcesses" />831 < entry CIMName="SeaIceSeaIceThermodynamicsIceTransportInThicknessSpace"830 <ndg:entry CIMName="SeaIceSeaIceThermodynamicsIceProcesses" esgName="SeaIceThermodynamicsIceProcesses" /> 831 <ndg:entry CIMName="SeaIceSeaIceThermodynamicsIceTransportInThicknessSpace" 832 832 esgName="SeaIceThermodynamicsIceTransportInThicknessSpace" /> 833 < entry CIMName="SeaIceSeaIceDynamicsRheology" esgName="SeaIceDynamicsRheology" />834 < entry CIMName="SeaIceSeaIceDynamicsAdvection" esgName="SeaIceDynamicsAdvection" />835 < entry CIMName="SeaIceSeaIceDynamicsHorizontalDiscretizationGrid"833 <ndg:entry CIMName="SeaIceSeaIceDynamicsRheology" esgName="SeaIceDynamicsRheology" /> 834 <ndg:entry CIMName="SeaIceSeaIceDynamicsAdvection" esgName="SeaIceDynamicsAdvection" /> 835 <ndg:entry CIMName="SeaIceSeaIceDynamicsHorizontalDiscretizationGrid" 836 836 esgName="SeaIceDynamicsHorizontalDiscretizationGrid" /> 837 < entry CIMName="SeaIceSeaIceDynamicsRedistributionType" esgName="SeaIceDynamicsRedistributionType" />838 </ lookup>837 <ndg:entry CIMName="SeaIceSeaIceDynamicsRedistributionType" esgName="SeaIceDynamicsRedistributionType" /> 838 </ndg:lookup> -
mauRepo/xml2owl/trunk/src/test/resources/sample_cmip5qn_100930_mark.xml
r7726 r7732 14011 14011 <shortName>WaterPonds</shortName> 14012 14012 <longName>WaterPonds</longName> 14013 <value> 1.0</value>14013 <value></value> 14014 14014 </componentProperty> 14015 14015 <componentProperty represented="true">
Note: See TracChangeset
for help on using the changeset viewer.