Mercurial > dive4elements > river
comparison flys-artifacts/doc/conf/meta-data.xml @ 3614:68beaa827751
MINFO: Implemented UI and facet/artifact stack for bed height differences.
flys-artifacts/trunk@5276 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Raimund Renkert <raimund.renkert@intevation.de> |
---|---|
date | Tue, 28 Aug 2012 11:45:23 +0000 |
parents | da60327f6d7c |
children | 096598c3bd30 |
comparison
equal
deleted
inserted
replaced
3613:dd6e25980c91 | 3614:68beaa827751 |
---|---|
1222 <dc:attribute name="ids" value="${river_id}"/> | 1222 <dc:attribute name="ids" value="${river_id}"/> |
1223 </background> | 1223 </background> |
1224 </rastermap> | 1224 </rastermap> |
1225 </dc:macro> | 1225 </dc:macro> |
1226 </dc:if> | 1226 </dc:if> |
1227 <dc:if test="dc:contains($artifact-outs, 'minfo-heights')"> | |
1228 <dc:call-macro name="minfo-heights"/> | |
1229 <dc:macro name="minfo-heights"> | |
1230 <bedheights> | |
1231 <dc:call-macro name="bed-heights-single"/> | |
1232 <dc:call-macro name="bed-heights-epoch"/> | |
1233 </bedheights> | |
1234 </dc:macro> | |
1235 </dc:if> | |
1236 <dc:if test="dc:contains($artifact-outs, 'minfo-heights-epoch')"> | |
1237 <bedheights> | |
1238 <dc:call-macro name="bed-heights-epoch"/> | |
1239 </bedheights> | |
1240 </dc:if> | |
1241 <dc:macro name="bed-heights-single"> | |
1242 <single> | |
1243 <dc:context> | |
1244 <dc:statement> | |
1245 SELECT id AS bedh_id, | |
1246 year AS bedh_year, | |
1247 description AS bedh_descr | |
1248 FROM bed_height_single WHERE river_id = ${river_id} | |
1249 </dc:statement> | |
1250 <dc:elements> | |
1251 <height> | |
1252 <dc:attribute name="factory" value="bedheight"/> | |
1253 <dc:attribute name="ids" value="bedheight-single-${bedh_id}-${bedh_year}"/> | |
1254 <dc:attribute name="description" value="${bedh_descr}"/> | |
1255 </height> | |
1256 </dc:elements> | |
1257 </dc:context> | |
1258 </single> | |
1259 </dc:macro> | |
1260 <dc:macro name="bed-heights-epoch"> | |
1261 <epoch> | |
1262 <dc:context> | |
1263 <dc:statement> | |
1264 SELECT id AS bedh_id, | |
1265 time_interval_id AS bedh_interval_id, | |
1266 description AS bedh_descr | |
1267 FROM bed_height_epoch WHERE river_id = ${river_id} | |
1268 </dc:statement> | |
1269 <dc:elements> | |
1270 <height> | |
1271 <dc:attribute name="factory" value="bedheight"/> | |
1272 <dc:attribute name="ids" value="bedheight-epoch-${bedh_id}-${bedh_interval_id}"/> | |
1273 <dc:attribute name="description" value="${bedh_descr}"/> | |
1274 </height> | |
1275 </dc:elements> | |
1276 </dc:context> | |
1277 </epoch> | |
1278 </dc:macro> | |
1227 </river> | 1279 </river> |
1228 </dc:elements> | 1280 </dc:elements> |
1229 </dc:context> | 1281 </dc:context> |
1230 </dc:macro> | 1282 </dc:macro> |
1231 | 1283 |