<div dir="ltr">Hi,<br><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Dec 19, 2014 at 9:20 AM, damien <span dir="ltr"><<a href="mailto:me@dallen.co" target="_blank">me@dallen.co</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hello,<br>
<br>
I'm new to the temporal functions in GRASS and have only been using v7.1 for<br>
a couple weeks. I use the python interface and I'm trying to create STRDS<br>
for use with g.gui.tplot and  g.gui.animation. I want to create an STRDS<br>
over a specified time range for a number of spectral indices. The only<br>
problem I run into is that I get duplicate STRDS for each index. For<br>
example:<br>
<br></blockquote><div><br></div><div>could you run <a href="http://t.info">t.info</a> to see if there is any difference in the two datasets with the same name? The code looks good to me although gmail didn't preserve the formatting.</div><div><br></div><div>Anna</div><div><br></div><div><br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
test_ndvi<br>
test_ndvi<br>
test_ndwi<br>
test_ndwi<br>
test_ci<br>
test_ci<br>
test_msavi2<br>
test_msavi2<br>
<br>
This means that I am prompted to select which of the duplicates I want to<br>
use. While workable, it's frustrating and I'd like help in figuring out the<br>
cause. I have attached the relevant code below:<br>
<br>
    ds_name = options['strds_name']<br>
    map_indices = ['ndvi', 'ndwi', 'ci', 'msavi2']<br>
<br>
    ...<br>
<br>
    for ind in map_indices:<br>
        dates_str = ''<br>
        grass.run_command('t.create', output = ds_name + '_' + ind, title =<br>
ds_name + ' (' + ind + ')',<br>
                          description = str(sel_dates[0]) + ' - ' +<br>
str(sel_dates[-1]),<br>
                          semantictype = 'mean', overwrite = True)<br>
<br>
        for d in sel_dates:<br>
            dates_str += (map_base + d + '_' + ind + ',')<br>
<br>
        dates_str = dates_str[:-1]<br>
<br>
        grass.run_command('t.register', input = ds_name + '_' + ind, maps =<br>
dates_str, overwrite = True)<br>
<br>
<br>
Any help or ideas will be much appreciated.<br>
<br>
<br>
<br>
--<br>
View this message in context: <a href="http://osgeo-org.1560.x6.nabble.com/Duplicate-STR-data-sets-tp5178557.html" target="_blank">http://osgeo-org.1560.x6.nabble.com/Duplicate-STR-data-sets-tp5178557.html</a><br>
Sent from the Grass - Users mailing list archive at Nabble.com.<br>
_______________________________________________<br>
grass-user mailing list<br>
<a href="mailto:grass-user@lists.osgeo.org">grass-user@lists.osgeo.org</a><br>
<a href="http://lists.osgeo.org/mailman/listinfo/grass-user" target="_blank">http://lists.osgeo.org/mailman/listinfo/grass-user</a><br>
</blockquote></div><br></div></div>