Re: [GRASS-user] DOY support in t.register?

2014-03-06 Thread Vaclav Petras
On Wed, Mar 5, 2014 at 3:21 PM, Sören Gebbert soerengebb...@googlemail.comwrote: print map_name, |, start, |, end I'm affraid that this prints also spaces around | and so t.register will fail because it expects only one separator, i.e. |. That should be print map_name + | + start + | + end

Re: [GRASS-user] DOY support in t.register?

2014-03-06 Thread Veronica Andreo
Hi Vaclav! Yeah, I've noticed that and already changed it Thanks! Vero 2014-03-06 17:26 GMT+01:00 Vaclav Petras wenzesl...@gmail.com: That should be print map_name + | + start + | + end http://grass.osgeo.org/grass70/manuals/t.register.html

Re: [GRASS-user] DOY support in t.register?

2014-03-06 Thread Vaclav Petras
On Thu, Mar 6, 2014 at 12:58 PM, Veronica Andreo veroand...@gmail.comwrote: Hi Vaclav! Yeah, I've noticed that and already changed it Hi Veronica, so you are already learning Python, that's great! Vaclav Thanks! Vero 2014-03-06 17:26 GMT+01:00 Vaclav Petras wenzesl...@gmail.com:

Re: [GRASS-user] DOY support in t.register?

2014-03-06 Thread Veronica Andreo
Hi Vaclav!!! lol!!! I'd wished!!! Just fixed it with awk :) Anyway, i tried what you suggested and didn't work in python 2.7. I googled a bit, and this worked in python 3.3 print(map_name, '|', start, '|', end, sep=) best, Vero 2014-03-06 20:46 GMT+01:00 Vaclav Petras wenzesl...@gmail.com:

[GRASS-user] DOY support in t.register?

2014-03-05 Thread Veronica Andreo
Dear list I'm working with ocean color data set from MODIS and starting to use t.* modules... I'm trying now to register the strds and as i'm working with 8-day products i specified start date as 2003-01-01 and interval as 8 days for a list of 506 maps. The time series should end by 2013-12-31

Re: [GRASS-user] DOY support in t.register?

2014-03-05 Thread Sören Gebbert
Hi Veronica, 2014-03-05 20:49 GMT+01:00 Veronica Andreo veroand...@gmail.com: Dear list I'm working with ocean color data set from MODIS and starting to use t.* modules... I'm trying now to register the strds and as i'm working with 8-day products i specified start date as 2003-01-01 and

Re: [GRASS-user] DOY support in t.register?

2014-03-05 Thread Veronica Andreo
Hi Soren! Thanks much for answering so quickly!! And so clearly! 2014-03-05 21:21 GMT+01:00 Sören Gebbert soerengebb...@googlemail.com: Hi Veronica, 2014-03-05 20:49 GMT+01:00 Veronica Andreo veroand...@gmail.com: Dear list I'm working with ocean color data set from MODIS and starting