├── .gitignore ├── LICENSE ├── README.md ├── data ├── b00297.m77t ├── cd8794.m77t └── ew9105.m77t ├── environment.yml ├── test_install.py ├── test_install_output.png └── tutorial.ipynb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatiando/transform2020/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatiando/transform2020/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatiando/transform2020/HEAD/README.md -------------------------------------------------------------------------------- /data/b00297.m77t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatiando/transform2020/HEAD/data/b00297.m77t -------------------------------------------------------------------------------- /data/cd8794.m77t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatiando/transform2020/HEAD/data/cd8794.m77t -------------------------------------------------------------------------------- /data/ew9105.m77t: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatiando/transform2020/HEAD/data/ew9105.m77t -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatiando/transform2020/HEAD/environment.yml -------------------------------------------------------------------------------- /test_install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatiando/transform2020/HEAD/test_install.py -------------------------------------------------------------------------------- /test_install_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatiando/transform2020/HEAD/test_install_output.png -------------------------------------------------------------------------------- /tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fatiando/transform2020/HEAD/tutorial.ipynb --------------------------------------------------------------------------------