Hi,
just a quick observation. Shouldn't be `t.connect` placed in
`temporal` directory
instead of
`lib/temporal`
?
Martin
--
Martin Landa <landa.martin gmail.com> * http://geo.fsv.cvut.cz/~landa
Hi,
just a quick observation. Shouldn't be `t.connect` placed in
`temporal` directory
instead of
`lib/temporal`
?
Martin
--
Martin Landa <landa.martin gmail.com> * http://geo.fsv.cvut.cz/~landa
Hi Martin,
the module t.connect is a C module and must be build before the python temporal library, since the library was making use of this module at import time. That’s the reason why this module is located in lib/temporal. That wasn’t a good solution. So i have implemented an init() method in the python temporal library that make use of t.connect at run time. I think it may be safe now to move t.connect into the temporal module directory. I will check this.
Best regards
Soeren
2013/6/2 Martin Landa <landa.martin@gmail.com>
Hi,
just a quick observation. Shouldn’t be
t.connect
placed in
temporal
directoryinstead of
lib/temporal
?
Martin
–
Martin Landa <landa.martin gmail.com> * http://geo.fsv.cvut.cz/~landa
grass-dev mailing list
grass-dev@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/grass-dev
done in r56562
2013/6/2 Sören Gebbert <soerengebbert@googlemail.com>
Hi Martin,
the module t.connect is a C module and must be build before the python temporal library, since the library was making use of this module at import time. That’s the reason why this module is located in lib/temporal. That wasn’t a good solution. So i have implemented an init() method in the python temporal library that make use of t.connect at run time. I think it may be safe now to move t.connect into the temporal module directory. I will check this.Best regards
Soeren
2013/6/2 Martin Landa <landa.martin@gmail.com>
Hi,
just a quick observation. Shouldn’t be
t.connect
placed in
temporal
directoryinstead of
lib/temporal
?
Martin
–
Martin Landa <landa.martin gmail.com> * http://geo.fsv.cvut.cz/~landa
grass-dev mailing list
grass-dev@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/grass-dev
Hi,
2013/6/2 Sören Gebbert <soerengebbert@googlemail.com>:
done in r56562
thanks, Martin