├── .DS_Store ├── .gitignore ├── LICENSE ├── README.md ├── gc.py ├── gcutil.py ├── requirements.txt └── tests ├── bigtest.xyz ├── bigtest.zmat ├── bigtest_convert.xyz ├── firstfive.xyz ├── firstfive_convert.xyz ├── newsal.xyz ├── salicin-A.xyz ├── salicin-A.zmat ├── salicin-A_convert.xyz ├── symmtest.xyz ├── symmtest.zmat ├── symmtest_convert.xyz ├── test-withvars.zmat ├── test.xyz ├── test.zmat ├── test_convert.xyz ├── test_vars.zmat ├── tjthing.xyz └── tjthing.zmat /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robashaw/geomConvert/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robashaw/geomConvert/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robashaw/geomConvert/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robashaw/geomConvert/HEAD/README.md -------------------------------------------------------------------------------- /gc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robashaw/geomConvert/HEAD/gc.py -------------------------------------------------------------------------------- /gcutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robashaw/geomConvert/HEAD/gcutil.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | scipy -------------------------------------------------------------------------------- /tests/bigtest.xyz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robashaw/geomConvert/HEAD/tests/bigtest.xyz -------------------------------------------------------------------------------- /tests/bigtest.zmat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robashaw/geomConvert/HEAD/tests/bigtest.zmat -------------------------------------------------------------------------------- /tests/bigtest_convert.xyz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robashaw/geomConvert/HEAD/tests/bigtest_convert.xyz -------------------------------------------------------------------------------- /tests/firstfive.xyz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robashaw/geomConvert/HEAD/tests/firstfive.xyz -------------------------------------------------------------------------------- /tests/firstfive_convert.xyz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robashaw/geomConvert/HEAD/tests/firstfive_convert.xyz -------------------------------------------------------------------------------- /tests/newsal.xyz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robashaw/geomConvert/HEAD/tests/newsal.xyz -------------------------------------------------------------------------------- /tests/salicin-A.xyz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robashaw/geomConvert/HEAD/tests/salicin-A.xyz -------------------------------------------------------------------------------- /tests/salicin-A.zmat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robashaw/geomConvert/HEAD/tests/salicin-A.zmat -------------------------------------------------------------------------------- /tests/salicin-A_convert.xyz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robashaw/geomConvert/HEAD/tests/salicin-A_convert.xyz -------------------------------------------------------------------------------- /tests/symmtest.xyz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robashaw/geomConvert/HEAD/tests/symmtest.xyz -------------------------------------------------------------------------------- /tests/symmtest.zmat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robashaw/geomConvert/HEAD/tests/symmtest.zmat -------------------------------------------------------------------------------- /tests/symmtest_convert.xyz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robashaw/geomConvert/HEAD/tests/symmtest_convert.xyz -------------------------------------------------------------------------------- /tests/test-withvars.zmat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robashaw/geomConvert/HEAD/tests/test-withvars.zmat -------------------------------------------------------------------------------- /tests/test.xyz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robashaw/geomConvert/HEAD/tests/test.xyz -------------------------------------------------------------------------------- /tests/test.zmat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robashaw/geomConvert/HEAD/tests/test.zmat -------------------------------------------------------------------------------- /tests/test_convert.xyz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robashaw/geomConvert/HEAD/tests/test_convert.xyz -------------------------------------------------------------------------------- /tests/test_vars.zmat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robashaw/geomConvert/HEAD/tests/test_vars.zmat -------------------------------------------------------------------------------- /tests/tjthing.xyz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robashaw/geomConvert/HEAD/tests/tjthing.xyz -------------------------------------------------------------------------------- /tests/tjthing.zmat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/robashaw/geomConvert/HEAD/tests/tjthing.zmat --------------------------------------------------------------------------------