├── .gitignore ├── README.md ├── __init__.py ├── defaultSettings.py ├── exportSetManager.py ├── exporters ├── __init__.py ├── alembicWriter.py ├── alembic_todo ├── alembic_writer.py ├── dataReader.py └── mddWriter.py ├── hda └── pw_alembic_point_cache.hda ├── icons_rc.py ├── mGeo.py ├── mGeoReader.py ├── manual ├── mGeoExporter_manual_eng.txt └── mGeoExporter_manual_rus.txt ├── presets ├── __init__.py └── mgeo_presets.py ├── pw_settings.py ├── templateMaker.py ├── text.py └── widgets ├── __init__.py ├── activeButton.py ├── attTable.ui ├── attTable_UI.py ├── attTable_UIs.py ├── attTable_UIs2.py ├── attribTableWidget.py ├── imports.py ├── mGeo.ui ├── mGeo_UIs.py ├── mGeo_UIs2.py ├── mGeo_abc.ui ├── markerWidget.py ├── pathLineEdit.py ├── warningDialog.py └── widgetsMap.py /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | _tmp 3 | list.txt 4 | *.pyc 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulwinex/pw_mGeoExporter/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulwinex/pw_mGeoExporter/HEAD/__init__.py -------------------------------------------------------------------------------- /defaultSettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulwinex/pw_mGeoExporter/HEAD/defaultSettings.py -------------------------------------------------------------------------------- /exportSetManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulwinex/pw_mGeoExporter/HEAD/exportSetManager.py -------------------------------------------------------------------------------- /exporters/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exporters/alembicWriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulwinex/pw_mGeoExporter/HEAD/exporters/alembicWriter.py -------------------------------------------------------------------------------- /exporters/alembic_todo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulwinex/pw_mGeoExporter/HEAD/exporters/alembic_todo -------------------------------------------------------------------------------- /exporters/alembic_writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulwinex/pw_mGeoExporter/HEAD/exporters/alembic_writer.py -------------------------------------------------------------------------------- /exporters/dataReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulwinex/pw_mGeoExporter/HEAD/exporters/dataReader.py -------------------------------------------------------------------------------- /exporters/mddWriter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulwinex/pw_mGeoExporter/HEAD/exporters/mddWriter.py -------------------------------------------------------------------------------- /hda/pw_alembic_point_cache.hda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulwinex/pw_mGeoExporter/HEAD/hda/pw_alembic_point_cache.hda -------------------------------------------------------------------------------- /icons_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulwinex/pw_mGeoExporter/HEAD/icons_rc.py -------------------------------------------------------------------------------- /mGeo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulwinex/pw_mGeoExporter/HEAD/mGeo.py -------------------------------------------------------------------------------- /mGeoReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulwinex/pw_mGeoExporter/HEAD/mGeoReader.py -------------------------------------------------------------------------------- /manual/mGeoExporter_manual_eng.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulwinex/pw_mGeoExporter/HEAD/manual/mGeoExporter_manual_eng.txt -------------------------------------------------------------------------------- /manual/mGeoExporter_manual_rus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulwinex/pw_mGeoExporter/HEAD/manual/mGeoExporter_manual_rus.txt -------------------------------------------------------------------------------- /presets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /presets/mgeo_presets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulwinex/pw_mGeoExporter/HEAD/presets/mgeo_presets.py -------------------------------------------------------------------------------- /pw_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulwinex/pw_mGeoExporter/HEAD/pw_settings.py -------------------------------------------------------------------------------- /templateMaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulwinex/pw_mGeoExporter/HEAD/templateMaker.py -------------------------------------------------------------------------------- /text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulwinex/pw_mGeoExporter/HEAD/text.py -------------------------------------------------------------------------------- /widgets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /widgets/activeButton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulwinex/pw_mGeoExporter/HEAD/widgets/activeButton.py -------------------------------------------------------------------------------- /widgets/attTable.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulwinex/pw_mGeoExporter/HEAD/widgets/attTable.ui -------------------------------------------------------------------------------- /widgets/attTable_UI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulwinex/pw_mGeoExporter/HEAD/widgets/attTable_UI.py -------------------------------------------------------------------------------- /widgets/attTable_UIs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulwinex/pw_mGeoExporter/HEAD/widgets/attTable_UIs.py -------------------------------------------------------------------------------- /widgets/attTable_UIs2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulwinex/pw_mGeoExporter/HEAD/widgets/attTable_UIs2.py -------------------------------------------------------------------------------- /widgets/attribTableWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulwinex/pw_mGeoExporter/HEAD/widgets/attribTableWidget.py -------------------------------------------------------------------------------- /widgets/imports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulwinex/pw_mGeoExporter/HEAD/widgets/imports.py -------------------------------------------------------------------------------- /widgets/mGeo.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulwinex/pw_mGeoExporter/HEAD/widgets/mGeo.ui -------------------------------------------------------------------------------- /widgets/mGeo_UIs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulwinex/pw_mGeoExporter/HEAD/widgets/mGeo_UIs.py -------------------------------------------------------------------------------- /widgets/mGeo_UIs2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulwinex/pw_mGeoExporter/HEAD/widgets/mGeo_UIs2.py -------------------------------------------------------------------------------- /widgets/mGeo_abc.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulwinex/pw_mGeoExporter/HEAD/widgets/mGeo_abc.ui -------------------------------------------------------------------------------- /widgets/markerWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulwinex/pw_mGeoExporter/HEAD/widgets/markerWidget.py -------------------------------------------------------------------------------- /widgets/pathLineEdit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulwinex/pw_mGeoExporter/HEAD/widgets/pathLineEdit.py -------------------------------------------------------------------------------- /widgets/warningDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulwinex/pw_mGeoExporter/HEAD/widgets/warningDialog.py -------------------------------------------------------------------------------- /widgets/widgetsMap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paulwinex/pw_mGeoExporter/HEAD/widgets/widgetsMap.py --------------------------------------------------------------------------------