Custom Query (116 matches)
Results (73 - 75 of 116)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#130 | fixed | Pb with chaining zoom over axis + axis reduction + domain reduction | ymipsl | aclsce |
Description |
In my case, the chaining of zoom aver axis + axis reduction + domain reduction is not correct. The result that I obtain is a "missing value". Note that :
|
|||
#127 | fixed | Pb with index with indexed_output on 3D fields | rlacroix | aclsce |
Description |
Indices of points of compressed 3D fields by using "indexed_output" field attribute are not correct :
These values are not correct. Note that indices are correct with 2D fields. |
|||
#45 | fixed | problem including a file containing a context in iodef.xml | ymipsl | jgipsl |
Description |
Following exemple does not work : iodef.xml : <?xml version="1.0"?> <simulation> <context id="xios"> <variable_definition> <variable_group id="buffer"> buffer_size = 80000000 buffer_server_factor_size = 2 </variable_group> <variable_group id="parameters"> <variable id="using_server" type="boolean">false</variable> <variable id="info_level" type="int">0</variable> </variable_group> </variable_definition> </context> <context src=".context_orchidee.xml"/> </simulation> context_orchidee.xml : <context id="orchidee"> <field_definition src="./field_def_orchidee.xml"/> <file_definition src="./file_def_orchidee.xml"/> <domain_definition> <domain id="domain_landpoints"/> </domain_definition> <axis_definition> <!-- Vertical axis and extra dimensions in sechiba --> <axis id="veget" standard_name="model_level_number" long_name="Vegetation types" unit="1"/> <axis id="laiax" standard_name="model_level_number" long_name="Nb LAI" unit="1"/> <axis id="solth" standard_name="model_level_number" long_name="Soil levels" unit="m"/> <axis id="soiltyp" standard_name="model_level_number" long_name="Soil types" unit="1"/> <axis id="nobio" standard_name="model_level_number" long_name="Other surface types" unit="1"/> <axis id="albtyp" standard_name="model_level_number" long_name="Albedo types" unit="1"/> <axis id="solay" standard_name="model_level_number" long_name="Hydrol soil levels" unit="m"/> <!-- Vertical axis and extra dimensions in stomate --> <axis id="PFT" standard_name="model_level_number" long_name="Plant functional type" unit="1"/> <axis id="P10" standard_name="model_level_number" long_name="Pool 10 years" unit="1"/> <axis id="P100" standard_name="model_level_number" long_name="Pool 100 years" unit="1"/> <axis id="P11" standard_name="model_level_number" long_name="Pool 10 years + 1" unit="1"/> <axis id="P101" standard_name="model_level_number" long_name="Pool 100 years + 1" unit="1"/> </axis_definition> </context> The same example works if putting the contents from the file context_orchidee.xml directly into iodef.xml instead of including the file by src. |