Home › Forums › Nazca › Questions and Answers › Changing GDS database units
Tagged: database units, dbu
Hi Ronald,
Is there a good way to set the exported GDS base units? Currently I am hardwiring the units in the GDS_datatype class at lines 82 and 84 gds_db_unit, gds_db_user. It would be nice if this was a class variable.
Thanks!
David
Dear David,
Your solution will work. To avoid hacking in the modules directly, setting database units can be done more flexible using the following script lines:
import nazca.gds_base as base base.gds_db_unit = 0.00001 base.gds_db_user = 0.0001
Ronald