thanks! but I think that the method you mentioned will depress the performance, for example, when using the python driver.CreateCopy(source, "geor:user/p...@db,tab,col", <create options>), in fact it will use the gdal_translate function. And the performance of PL/SQL will exceed the gdal_translate. so I want to use cx_Oracle, but I don't know how to use PL/SQL by cx_Oracle.
2009-12-21 gispowerfan 发件人: Ivan 发送时间: 2009-12-21 02:11:53 收件人: gispowerfan 抄送: gdal-dev 主题: Re: [gdal-dev] question about georaster and python gispowerfan wrote: > hi list, > > I have a question about georaster and python, it's maybe not related to > GDAL code directly, but I think it is related question. > Now I want to connect to ORACLE by cx_Oracle(which is Python interface to > ORACLE), I can use cx_Oracle to create table,insert simple data, > but can't run the image loader pl/sql, do anyone have any idea? I don't know > whether or not that some image loader pl/sql can run by cx_Oracle? > I know that I can use gdal python interface to connect Georaster, but I > need to test the performance. > thanks in advance. > > 2009-12-20 > ------------------------------------------------------------------------ > gispowerfan > > > ------------------------------------------------------------------------ > > _______________________________________________ > gdal-dev mailing list > [email protected] > http://lists.osgeo.org/mailman/listinfo/gdal-dev Example: >>> from osgeo import gdal >>> driver = gdal.GetDriverByName("georaster") >>> source = gdal.Open("example.tif") >>> target = driver.CreateCopy(source, "geor:user/p...@db,tab,col", <create >>> options>) >>> target = None >>> source = None That would load the geotiff file to GeoRaster.
_______________________________________________ gdal-dev mailing list [email protected] http://lists.osgeo.org/mailman/listinfo/gdal-dev
