Custom Query (116 matches)
Results (94 - 96 of 116)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#43 | wontfix | Having the possibility of enforcing the addition of a axis to a file | ymipsl | millour |
Description |
So far if multiple axes are defined (e.g. axis1, axis2, etc.), but only one is used (e.g.all output fields in file are with axis_ref="axis2"), then it is the only axis written to the file. Allowing users to specify that alternative axes, although not used, should be included in the output file would be useful. Maybe by adding a flag output="always" to the axis (or file?) parameters? |
|||
#131 | fixed | Problem with number of months in user_defined calendar | ymipsl | millour |
Description |
In date.cpp, the function
Assumes that there are 12 months/year, which is not the case for a "user_defined" calendar. A more generic version could be:
|
|||
#112 | fixed | Write interpolation weight into a file | mhnguyen | mhnguyen |
Description |
XIOS is able to read weights from a file then use them to do interpolation of a domain to another. There are cases in which these weights should be computed once then reused over and over. Therefore, XIOS should be able to write weights into file. Some specifications for this:
+) filename: Already exists +) weights="read/write"
+) weights="write" -> write weights into file. If there is no filename -> default filename weights.nc will be used, otherwise use filename. Filename will be always overwritten in this case. +) weights="read" -> try to read weights from a file. If there is no filename-> default filename weights.nc will be used, otherwise use filename. If there is no file to read at all-> switch to write mode. |