# HG changeset patch # User Ingo Weinzierl # Date 1264419605 0 # Node ID d5a7608a4eea24bbc163e1c3f43f582c72bb1f8d # Parent c6249cb631dfe1c77eeb46c6fd3b5ab911689fcc Splitted data selection into two parts. Removed option to disable/enable data points in charts and exports. gnv-artifacts/trunk@618 c6561f87-3c4e-4783-a992-168aeb5c3f6f diff -r c6249cb631df -r d5a7608a4eea gnv-artifacts/ChangeLog --- a/gnv-artifacts/ChangeLog Mon Jan 25 11:04:52 2010 +0000 +++ b/gnv-artifacts/ChangeLog Mon Jan 25 11:40:05 2010 +0000 @@ -1,3 +1,11 @@ +2010-01-25 Ingo Weinzierl + + * doc/conf/products/verticalcrosssection/conf_mesh.xml, + doc/conf/queries.properties: Splitted date selection into two steps - year + and concreate date in this year. Removed useless option to + disable/enable data points of chart and export output, because points + make no sense in such products. + 2010-01-25 Ingo Weinzierl * doc/conf/products/horizontalprofile/conf_mesh_cross.xml, diff -r c6249cb631df -r d5a7608a4eea gnv-artifacts/doc/conf/products/verticalcrosssection/conf_mesh.xml --- a/gnv-artifacts/doc/conf/products/verticalcrosssection/conf_mesh.xml Mon Jan 25 11:04:52 2010 +0000 +++ b/gnv-artifacts/doc/conf/products/verticalcrosssection/conf_mesh.xml Mon Jan 25 11:40:05 2010 +0000 @@ -100,9 +100,29 @@ + + + + + + + + verticalcrosssection_mesh_year + yearid + false + + + + + + + + + + - + @@ -116,6 +136,7 @@ + @@ -146,21 +167,18 @@ - - - diff -r c6249cb631df -r d5a7608a4eea gnv-artifacts/doc/conf/queries.properties --- a/gnv-artifacts/doc/conf/queries.properties Mon Jan 25 11:04:52 2010 +0000 +++ b/gnv-artifacts/doc/conf/queries.properties Mon Jan 25 11:40:05 2010 +0000 @@ -984,6 +984,16 @@ ############# Profilschnitt MESH ############ ############################################# ############################################# +verticalcrosssection_mesh_year = select distinct \ + to_char(msv.TIMEVALUE,'YYYY') KEY, \ + to_char(msv.TIMEVALUE,'YYYY') VALUE \ + from MEDIAN.MESHSCALARVALUE msv, \ + MEDIAN.MESH m \ + where m.OBJECTID = ? AND \ + msv.PARTID >= m.PARTIDMIN AND \ + msv.PARTID <= m.PARTIDMAX AND \ + msv.PARAMETERID = ? \ + order by to_char(msv.TIMEVALUE,'YYYY') verticalcrosssection_mesh_date = select distinct \ msv.TIMEVALUE KEY, \ msv.TIMEVALUE VALUE \ @@ -992,7 +1002,8 @@ where m.OBJECTID = ? AND \ msv.PARTID >= m.PARTIDMIN AND \ msv.PARTID <= m.PARTIDMAX AND \ - msv.PARAMETERID = ? \ + msv.PARAMETERID = ? AND \ + to_char(msv.TIMEVALUE,'YYYY') in (?) \ order by msv.TIMEVALUE verticalcrosssection_mesh_chart_data = SELECT ST_ASTEXT(SHAPE), \ ((ml.UPPERZLOCATION + ml.LOWERZLOCATION) / 2) Z, \