Re: [GRASS-dev] [GRASS GIS] #3223: r.info displays wrong timestamp after t.rast.series with a where clause

2018-05-09 Thread GRASS GIS
#3223: r.info displays wrong timestamp after t.rast.series with a where clause
--+-
  Reporter:  veroandreo   |  Owner:  grass-dev@…
  Type:  defect   | Status:  closed
  Priority:  normal   |  Milestone:  7.4.1
 Component:  Default  |Version:  svn-trunk
Resolution:  fixed|   Keywords:  r.info
   CPU:  Unspecified  |   Platform:  Linux
--+-
Changes (by veroandreo):

 * status:  new => closed
 * resolution:   => fixed


Comment:

 Replying to [comment:5 neteler]:
 > Please close the ticket if issue is solved.
 I had left it open because there's an open question (see comment 3).
 However, since the issue is fixed, I close it now. Re-open if needed.

-- 
Ticket URL: 
GRASS GIS 

___
grass-dev mailing list
grass-dev@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/grass-dev

Re: [GRASS-dev] [GRASS GIS] #3223: r.info displays wrong timestamp after t.rast.series with a where clause

2018-05-04 Thread GRASS GIS
#3223: r.info displays wrong timestamp after t.rast.series with a where clause
--+-
  Reporter:  veroandreo   |  Owner:  grass-dev@…
  Type:  defect   | Status:  new
  Priority:  normal   |  Milestone:  7.4.1
 Component:  Default  |Version:  svn-trunk
Resolution:   |   Keywords:  r.info
   CPU:  Unspecified  |   Platform:  Linux
--+-

Comment (by neteler):

 Please close the ticket if issue is solved.

-- 
Ticket URL: 
GRASS GIS 

___
grass-dev mailing list
grass-dev@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/grass-dev

Re: [GRASS-dev] [GRASS GIS] #3223: r.info displays wrong timestamp after t.rast.series with a where clause

2018-03-22 Thread GRASS GIS
#3223: r.info displays wrong timestamp after t.rast.series with a where clause
--+-
  Reporter:  veroandreo   |  Owner:  grass-dev@…
  Type:  defect   | Status:  new
  Priority:  normal   |  Milestone:  7.4.1
 Component:  Default  |Version:  svn-trunk
Resolution:   |   Keywords:  r.info
   CPU:  Unspecified  |   Platform:  Linux
--+-

Comment (by veroandreo):

 Replying to [comment:2 huhabla]:
 > Fixed in grass trunk revision r72479. Please test.
 After testing, I backported to release branch 74 in r72493 and to release
 branch 72 in r72499 (this last one without test_t.sereis_bug_3223.sh)

 Thanks!

-- 
Ticket URL: 
GRASS GIS 

___
grass-dev mailing list
grass-dev@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/grass-dev

Re: [GRASS-dev] [GRASS GIS] #3223: r.info displays wrong timestamp after t.rast.series with a where clause

2018-03-22 Thread GRASS GIS
#3223: r.info displays wrong timestamp after t.rast.series with a where clause
--+-
  Reporter:  veroandreo   |  Owner:  grass-dev@…
  Type:  defect   | Status:  new
  Priority:  normal   |  Milestone:  7.4.1
 Component:  Default  |Version:  svn-trunk
Resolution:   |   Keywords:  r.info
   CPU:  Unspecified  |   Platform:  Linux
--+-

Comment (by neteler):

 Replying to [comment:2 huhabla]:
 > Fixed in grass trunk revision r72479. Please test.

 Quick question: should test_t.sereis_bug_3223.sh  be in trunk and be
 backported?

-- 
Ticket URL: 
GRASS GIS 

___
grass-dev mailing list
grass-dev@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/grass-dev

Re: [GRASS-dev] [GRASS GIS] #3223: r.info displays wrong timestamp after t.rast.series with a where clause

2018-03-21 Thread GRASS GIS
#3223: r.info displays wrong timestamp after t.rast.series with a where clause
--+-
  Reporter:  veroandreo   |  Owner:  grass-dev@…
  Type:  defect   | Status:  new
  Priority:  normal   |  Milestone:  7.4.1
 Component:  Default  |Version:  svn-trunk
Resolution:   |   Keywords:  r.info
   CPU:  Unspecified  |   Platform:  Linux
--+-

Comment (by huhabla):

 Fixed in grass trunk reveision r72479. Please test.

-- 
Ticket URL: 
GRASS GIS 

___
grass-dev mailing list
grass-dev@lists.osgeo.org
https://lists.osgeo.org/mailman/listinfo/grass-dev

[GRASS-dev] [GRASS GIS] #3223: r.info displays wrong timestamp after t.rast.series with a where clause

2016-12-15 Thread GRASS GIS
#3223: r.info displays wrong timestamp after t.rast.series with a where clause
+-
 Reporter:  veroandreo  |  Owner:  grass-dev@…
 Type:  defect  | Status:  new
 Priority:  normal  |  Milestone:  7.4.0
Component:  Default |Version:  svn-trunk
 Keywords:  r.info  |CPU:  Unspecified
 Platform:  Linux   |
+-
 If I run t.rast.series using a where clause, r.info of the resulting map
 shows the timestamp of the whole time series and not that of the temporal
 selection performed with where.

 The selection of maps is fine given that I get the right list of maps when
 using the same where clause in t.rast.list, and the values of resulting
 maps using the whole time series or just a selection, differ as expected.

 Here is a reproducible example:
 {{{
 r.mapcalc expression="prec_1 = 100" --o
 r.mapcalc expression="prec_2 = 200" --o
 r.mapcalc expression="prec_3 = 300" --o
 r.mapcalc expression="prec_4 = 400" --o
 r.mapcalc expression="prec_5 = 500" --o
 r.mapcalc expression="prec_6 = 600" --o

 t.create type=strds temporaltype=absolute \
 output=precip_abs title="Example" \
 descr="Example" --o

 t.register -i type=raster input=precip_abs \
 maps=prec_1,prec_2,prec_3,prec_4,prec_5,prec_6 \
 start="2001-01-01" increment="1 months" --o

 t.rast.series input=precip_abs output=precip_abs_average

 r.info precip_abs_average

 t.rast.series input=precip_abs output=precip_abs_average_3months \
 where="start_time >= '2001-04-01'"

 r.info precip_abs_average_3months

 t.rast.list precip_abs where="start_time >= '2001-04-01'"
 }}}

--
Ticket URL: 
GRASS GIS 

___
grass-dev mailing list
grass-dev@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/grass-dev