Luisa Peña wrote: > Is it possible to define a Environmental variable for Windows, like > GDAL_DATA, like this in a Python Script? > > os.environ['GDAL_DATA'] = <PATH> > > Is this possible? does this work?
Yes. However, as each process has its own environment, it only affects the process running the script and any child processes spawned from the script. You can't modify the environment of other processes, e.g. the process which invoked the script. -- Glynn Clements <[email protected]> _______________________________________________ grass-user mailing list [email protected] http://lists.osgeo.org/mailman/listinfo/grass-user
