Commits
Ville Suoranta authored a476affec93 Merge
273 273 | print("\nThe measurespath value is used to find that IERS table and this indicates that the") |
274 274 | print("measures tables present in datapath may be different from those found in measurespath.") |
275 275 | print("\nIf this was not expected you may want to use your config file (normally at ~/.casa/config.py) to") |
276 276 | print("set datapath to put measurespath first or set measurespath to include the measures data found in datapath.") |
277 277 | logger.post("WARNING: geodetic/IERSeop2000 found at measurespath is not the same table as found in datapath",'WARN') |
278 278 | |
279 279 | from .coercetype import coerce as __coerce |
280 280 | |
281 281 | __coerce.set_ctsys(ctsys) ## used to locate files from a partial path |
282 282 | |
283 - | def version( ): return list(ctsys.toolversion( )) |
284 - | def version_string( ): return ctsys.toolversion_string( ) |
283 + | def version( ): return list(ctsys.version( )) |
284 + | def version_string( ): return ctsys.version_string( ) |
285 285 | |
286 286 | import atexit as __atexit |
287 287 | __atexit.register(ctsys.shutdown) ## c++ shutdown |