├── .gitignore ├── LICENSE ├── Makefile ├── README.html ├── README.md ├── README.txt ├── __init__.py ├── add_administrator.ui ├── add_administrator_dialog.py ├── add_category.ui ├── add_category_dialog.py ├── add_excel_data.ui ├── add_excel_data_dialog.py ├── add_link.ui ├── add_link_dialog.py ├── add_linktype.ui ├── add_linktype_dialog.py ├── add_mode.ui ├── add_mode_dialog.py ├── add_node.ui ├── add_node_dialog.py ├── add_operator.ui ├── add_operator_dialog.py ├── add_route.ui ├── add_route_dialog.py ├── add_routes_links.ui ├── add_routes_links_dialog.py ├── add_scenario.ui ├── add_scenario_dialog.py ├── add_sector.ui ├── add_sector_dialog.py ├── add_zone.ui ├── add_zone_dialog.py ├── administrators.ui ├── administrators_dialog.py ├── categories.ui ├── categories_dialog.py ├── classes ├── CustomExceptions.py ├── ExpressionData.py ├── GeneralObject.py ├── Indicator.py ├── MapData.py ├── Paths.py ├── Scenario.py ├── Sector.py ├── Stack.py ├── TripMatrix.py ├── Zone.py ├── ZoneCentroid.py ├── data │ ├── BatchFiles.py │ ├── DBFiles.py │ ├── DataBase.py │ ├── DataBaseDataAccess.py │ ├── DataBaseSqlite.py │ ├── Scenario.py │ ├── Scenarios.py │ ├── ScenariosFiles.py │ ├── ScenariosModel.py │ ├── WorkLoadData.py │ └── qtranus.db ├── general │ ├── DataMatrix.py │ ├── FileManagement.py │ ├── Helpers.py │ ├── QTranusMessageBox.py │ ├── Validators.py │ └── __init__.py ├── libraries │ ├── __init__.py │ ├── dill │ │ ├── __diff.py │ │ ├── __init__.py │ │ ├── _dill.py │ │ ├── _objects.py │ │ ├── detect.py │ │ ├── info.py │ │ ├── objtypes.py │ │ ├── pointers.py │ │ ├── settings.py │ │ ├── source.py │ │ ├── temp.py │ │ └── tests │ │ │ ├── __init__.py │ │ │ ├── __main__.py │ │ │ ├── test_check.py │ │ │ ├── test_classdef.py │ │ │ ├── test_detect.py │ │ │ ├── test_diff.py │ │ │ ├── test_extendpickle.py │ │ │ ├── test_file.py │ │ │ ├── test_functions.py │ │ │ ├── test_functors.py │ │ │ ├── test_mixins.py │ │ │ ├── test_module.py │ │ │ ├── test_moduledict.py │ │ │ ├── test_nested.py │ │ │ ├── test_objects.py │ │ │ ├── test_properties.py │ │ │ ├── test_recursive.py │ │ │ ├── test_restricted.py │ │ │ ├── test_selected.py │ │ │ ├── test_source.py │ │ │ ├── test_temp.py │ │ │ └── test_weakref.py │ ├── tabulate.py │ └── xlrd │ │ ├── __init__.py │ │ ├── biffh.py │ │ ├── book.py │ │ ├── compdoc.py │ │ ├── formatting.py │ │ ├── formula.py │ │ ├── info.py │ │ ├── sheet.py │ │ ├── timemachine.py │ │ ├── xldate.py │ │ └── xlsx.py ├── network │ ├── Level.py │ ├── Network.py │ └── NetworkDataAccess.py ├── node │ └── Node.py └── scenarios │ ├── Scenario.py │ └── ScenarioDataAccess.py ├── configuration.ui ├── configuration_dialog.py ├── data.ui ├── data_window.py ├── database_error.ui ├── databaseerror_dialog.py ├── exogenous_trips.ui ├── exogenous_trips_dialog.py ├── generalobject.py ├── icon.png ├── icons ├── Insumos.xlsx ├── action_capture_line.svg ├── action_remove.svg ├── action_remove_line.svg ├── add-scenario.svg ├── bus-icon.png ├── bus-stop.png ├── category.jpg ├── category.png ├── copy-scenario.svg ├── edit-layer.svg ├── edit-scenario.svg ├── green-light.jpg ├── green-light.png ├── link-type.png ├── load-folder.png ├── mini-square-gray.jpg ├── mini-square-red.jpg ├── modelistica_logo.png ├── no-turn-right.png ├── non_motorized.png ├── normal.png ├── normal_old.png ├── one-way-road.png ├── open-layer.svg ├── paste-scenario.svg ├── preloader.gif ├── red-light.png ├── remove-layer.svg ├── remove-scenario.svg ├── reverse.png ├── run.png ├── save.svg ├── search.svg ├── square-gray.png ├── square-green.png ├── transit_icon.png ├── transit_with_routes.png ├── two-way-road.jpg ├── two-way-road.png ├── upload-new.ico ├── upload-new.png └── upload.png ├── import_csv.py ├── import_csv.ui ├── imports_network.ui ├── imports_network_dialog.py ├── intersectors.ui ├── intersectors_dialog.py ├── layers_model.py ├── link_type.ui ├── link_type_dialog.py ├── links.ui ├── links_dialog.py ├── matrixlayer.ui ├── matrixlayer_dialog.py ├── metadata.txt ├── modes.ui ├── modes_dialog.py ├── networklayer.ui ├── networklayer_dialog.py ├── nodes.ui ├── nodes_dialog.py ├── operators.ui ├── operators_dialog.py ├── pb_tool.cfg ├── plugin_upload.py ├── pylintrc ├── qtranus.py ├── qtranus_dialog.py ├── qtranus_dialog_base.ui ├── qtranus_project.py ├── qtranusmessagebox.py ├── reasign_linktype.py ├── reasign_linktype.ui ├── resources.py ├── resources.qrc ├── resources_rc.py ├── results.ui ├── results_dialog.py ├── routes.ui ├── routes_dialog.py ├── run.ui ├── run_dialog.py ├── scenarios.ui ├── scenarios_dialog.py ├── scenarios_model.py ├── scenarios_model_sqlite.py ├── scenarios_select.ui ├── scenarios_select_dialog.py ├── scenarios_selector.ui ├── sectors.ui ├── sectors_dialog.py ├── settings.ui ├── settings_dialog.py ├── transfers.ui ├── transfers_dialog.py ├── tranus.py ├── tus.bmp ├── userHelp ├── css │ └── main.css ├── data.html ├── img │ ├── base1.png │ ├── data1.png │ ├── matrix.png │ ├── matrix2.png │ ├── network.png │ ├── network2.png │ ├── network3.png │ ├── project1.jpg │ ├── project1.png │ ├── results.png │ ├── run1.png │ └── zones1.jpg ├── index.html ├── matrix.html ├── network.html ├── project.html ├── results.html ├── run.html └── zones.html ├── zonaldata.ui ├── zonaldata_dialog.py ├── zonelayer.ui ├── zonelayer_dialog.py ├── zones.ui └── zones_dialog.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/Makefile -------------------------------------------------------------------------------- /README.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/README.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/README.md -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/README.txt -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/__init__.py -------------------------------------------------------------------------------- /add_administrator.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/add_administrator.ui -------------------------------------------------------------------------------- /add_administrator_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/add_administrator_dialog.py -------------------------------------------------------------------------------- /add_category.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/add_category.ui -------------------------------------------------------------------------------- /add_category_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/add_category_dialog.py -------------------------------------------------------------------------------- /add_excel_data.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/add_excel_data.ui -------------------------------------------------------------------------------- /add_excel_data_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/add_excel_data_dialog.py -------------------------------------------------------------------------------- /add_link.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/add_link.ui -------------------------------------------------------------------------------- /add_link_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/add_link_dialog.py -------------------------------------------------------------------------------- /add_linktype.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/add_linktype.ui -------------------------------------------------------------------------------- /add_linktype_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/add_linktype_dialog.py -------------------------------------------------------------------------------- /add_mode.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/add_mode.ui -------------------------------------------------------------------------------- /add_mode_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/add_mode_dialog.py -------------------------------------------------------------------------------- /add_node.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/add_node.ui -------------------------------------------------------------------------------- /add_node_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/add_node_dialog.py -------------------------------------------------------------------------------- /add_operator.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/add_operator.ui -------------------------------------------------------------------------------- /add_operator_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/add_operator_dialog.py -------------------------------------------------------------------------------- /add_route.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/add_route.ui -------------------------------------------------------------------------------- /add_route_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/add_route_dialog.py -------------------------------------------------------------------------------- /add_routes_links.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/add_routes_links.ui -------------------------------------------------------------------------------- /add_routes_links_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/add_routes_links_dialog.py -------------------------------------------------------------------------------- /add_scenario.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/add_scenario.ui -------------------------------------------------------------------------------- /add_scenario_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/add_scenario_dialog.py -------------------------------------------------------------------------------- /add_sector.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/add_sector.ui -------------------------------------------------------------------------------- /add_sector_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/add_sector_dialog.py -------------------------------------------------------------------------------- /add_zone.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/add_zone.ui -------------------------------------------------------------------------------- /add_zone_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/add_zone_dialog.py -------------------------------------------------------------------------------- /administrators.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/administrators.ui -------------------------------------------------------------------------------- /administrators_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/administrators_dialog.py -------------------------------------------------------------------------------- /categories.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/categories.ui -------------------------------------------------------------------------------- /categories_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/categories_dialog.py -------------------------------------------------------------------------------- /classes/CustomExceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/CustomExceptions.py -------------------------------------------------------------------------------- /classes/ExpressionData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/ExpressionData.py -------------------------------------------------------------------------------- /classes/GeneralObject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/GeneralObject.py -------------------------------------------------------------------------------- /classes/Indicator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/Indicator.py -------------------------------------------------------------------------------- /classes/MapData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/MapData.py -------------------------------------------------------------------------------- /classes/Paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/Paths.py -------------------------------------------------------------------------------- /classes/Scenario.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/Scenario.py -------------------------------------------------------------------------------- /classes/Sector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/Sector.py -------------------------------------------------------------------------------- /classes/Stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/Stack.py -------------------------------------------------------------------------------- /classes/TripMatrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/TripMatrix.py -------------------------------------------------------------------------------- /classes/Zone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/Zone.py -------------------------------------------------------------------------------- /classes/ZoneCentroid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/ZoneCentroid.py -------------------------------------------------------------------------------- /classes/data/BatchFiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/data/BatchFiles.py -------------------------------------------------------------------------------- /classes/data/DBFiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/data/DBFiles.py -------------------------------------------------------------------------------- /classes/data/DataBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/data/DataBase.py -------------------------------------------------------------------------------- /classes/data/DataBaseDataAccess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/data/DataBaseDataAccess.py -------------------------------------------------------------------------------- /classes/data/DataBaseSqlite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/data/DataBaseSqlite.py -------------------------------------------------------------------------------- /classes/data/Scenario.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/data/Scenario.py -------------------------------------------------------------------------------- /classes/data/Scenarios.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/data/Scenarios.py -------------------------------------------------------------------------------- /classes/data/ScenariosFiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/data/ScenariosFiles.py -------------------------------------------------------------------------------- /classes/data/ScenariosModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/data/ScenariosModel.py -------------------------------------------------------------------------------- /classes/data/WorkLoadData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/data/WorkLoadData.py -------------------------------------------------------------------------------- /classes/data/qtranus.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/data/qtranus.db -------------------------------------------------------------------------------- /classes/general/DataMatrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/general/DataMatrix.py -------------------------------------------------------------------------------- /classes/general/FileManagement.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/general/FileManagement.py -------------------------------------------------------------------------------- /classes/general/Helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/general/Helpers.py -------------------------------------------------------------------------------- /classes/general/QTranusMessageBox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/general/QTranusMessageBox.py -------------------------------------------------------------------------------- /classes/general/Validators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/general/Validators.py -------------------------------------------------------------------------------- /classes/general/__init__.py: -------------------------------------------------------------------------------- 1 | __ALL__ = ['GeneralObject'] -------------------------------------------------------------------------------- /classes/libraries/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /classes/libraries/dill/__diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/libraries/dill/__diff.py -------------------------------------------------------------------------------- /classes/libraries/dill/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/libraries/dill/__init__.py -------------------------------------------------------------------------------- /classes/libraries/dill/_dill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/libraries/dill/_dill.py -------------------------------------------------------------------------------- /classes/libraries/dill/_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/libraries/dill/_objects.py -------------------------------------------------------------------------------- /classes/libraries/dill/detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/libraries/dill/detect.py -------------------------------------------------------------------------------- /classes/libraries/dill/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/libraries/dill/info.py -------------------------------------------------------------------------------- /classes/libraries/dill/objtypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/libraries/dill/objtypes.py -------------------------------------------------------------------------------- /classes/libraries/dill/pointers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/libraries/dill/pointers.py -------------------------------------------------------------------------------- /classes/libraries/dill/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/libraries/dill/settings.py -------------------------------------------------------------------------------- /classes/libraries/dill/source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/libraries/dill/source.py -------------------------------------------------------------------------------- /classes/libraries/dill/temp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/libraries/dill/temp.py -------------------------------------------------------------------------------- /classes/libraries/dill/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/libraries/dill/tests/__init__.py -------------------------------------------------------------------------------- /classes/libraries/dill/tests/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/libraries/dill/tests/__main__.py -------------------------------------------------------------------------------- /classes/libraries/dill/tests/test_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/libraries/dill/tests/test_check.py -------------------------------------------------------------------------------- /classes/libraries/dill/tests/test_classdef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/libraries/dill/tests/test_classdef.py -------------------------------------------------------------------------------- /classes/libraries/dill/tests/test_detect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/libraries/dill/tests/test_detect.py -------------------------------------------------------------------------------- /classes/libraries/dill/tests/test_diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/libraries/dill/tests/test_diff.py -------------------------------------------------------------------------------- /classes/libraries/dill/tests/test_extendpickle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/libraries/dill/tests/test_extendpickle.py -------------------------------------------------------------------------------- /classes/libraries/dill/tests/test_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/libraries/dill/tests/test_file.py -------------------------------------------------------------------------------- /classes/libraries/dill/tests/test_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/libraries/dill/tests/test_functions.py -------------------------------------------------------------------------------- /classes/libraries/dill/tests/test_functors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/libraries/dill/tests/test_functors.py -------------------------------------------------------------------------------- /classes/libraries/dill/tests/test_mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/libraries/dill/tests/test_mixins.py -------------------------------------------------------------------------------- /classes/libraries/dill/tests/test_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/libraries/dill/tests/test_module.py -------------------------------------------------------------------------------- /classes/libraries/dill/tests/test_moduledict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/libraries/dill/tests/test_moduledict.py -------------------------------------------------------------------------------- /classes/libraries/dill/tests/test_nested.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/libraries/dill/tests/test_nested.py -------------------------------------------------------------------------------- /classes/libraries/dill/tests/test_objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/libraries/dill/tests/test_objects.py -------------------------------------------------------------------------------- /classes/libraries/dill/tests/test_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/libraries/dill/tests/test_properties.py -------------------------------------------------------------------------------- /classes/libraries/dill/tests/test_recursive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/libraries/dill/tests/test_recursive.py -------------------------------------------------------------------------------- /classes/libraries/dill/tests/test_restricted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/libraries/dill/tests/test_restricted.py -------------------------------------------------------------------------------- /classes/libraries/dill/tests/test_selected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/libraries/dill/tests/test_selected.py -------------------------------------------------------------------------------- /classes/libraries/dill/tests/test_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/libraries/dill/tests/test_source.py -------------------------------------------------------------------------------- /classes/libraries/dill/tests/test_temp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/libraries/dill/tests/test_temp.py -------------------------------------------------------------------------------- /classes/libraries/dill/tests/test_weakref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/libraries/dill/tests/test_weakref.py -------------------------------------------------------------------------------- /classes/libraries/tabulate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/libraries/tabulate.py -------------------------------------------------------------------------------- /classes/libraries/xlrd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/libraries/xlrd/__init__.py -------------------------------------------------------------------------------- /classes/libraries/xlrd/biffh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/libraries/xlrd/biffh.py -------------------------------------------------------------------------------- /classes/libraries/xlrd/book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/libraries/xlrd/book.py -------------------------------------------------------------------------------- /classes/libraries/xlrd/compdoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/libraries/xlrd/compdoc.py -------------------------------------------------------------------------------- /classes/libraries/xlrd/formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/libraries/xlrd/formatting.py -------------------------------------------------------------------------------- /classes/libraries/xlrd/formula.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/libraries/xlrd/formula.py -------------------------------------------------------------------------------- /classes/libraries/xlrd/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/libraries/xlrd/info.py -------------------------------------------------------------------------------- /classes/libraries/xlrd/sheet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/libraries/xlrd/sheet.py -------------------------------------------------------------------------------- /classes/libraries/xlrd/timemachine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/libraries/xlrd/timemachine.py -------------------------------------------------------------------------------- /classes/libraries/xlrd/xldate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/libraries/xlrd/xldate.py -------------------------------------------------------------------------------- /classes/libraries/xlrd/xlsx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/libraries/xlrd/xlsx.py -------------------------------------------------------------------------------- /classes/network/Level.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/network/Level.py -------------------------------------------------------------------------------- /classes/network/Network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/network/Network.py -------------------------------------------------------------------------------- /classes/network/NetworkDataAccess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/network/NetworkDataAccess.py -------------------------------------------------------------------------------- /classes/node/Node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/node/Node.py -------------------------------------------------------------------------------- /classes/scenarios/Scenario.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/scenarios/Scenario.py -------------------------------------------------------------------------------- /classes/scenarios/ScenarioDataAccess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/classes/scenarios/ScenarioDataAccess.py -------------------------------------------------------------------------------- /configuration.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/configuration.ui -------------------------------------------------------------------------------- /configuration_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/configuration_dialog.py -------------------------------------------------------------------------------- /data.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/data.ui -------------------------------------------------------------------------------- /data_window.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/data_window.py -------------------------------------------------------------------------------- /database_error.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/database_error.ui -------------------------------------------------------------------------------- /databaseerror_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/databaseerror_dialog.py -------------------------------------------------------------------------------- /exogenous_trips.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/exogenous_trips.ui -------------------------------------------------------------------------------- /exogenous_trips_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/exogenous_trips_dialog.py -------------------------------------------------------------------------------- /generalobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/generalobject.py -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/icon.png -------------------------------------------------------------------------------- /icons/Insumos.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/icons/Insumos.xlsx -------------------------------------------------------------------------------- /icons/action_capture_line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/icons/action_capture_line.svg -------------------------------------------------------------------------------- /icons/action_remove.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/icons/action_remove.svg -------------------------------------------------------------------------------- /icons/action_remove_line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/icons/action_remove_line.svg -------------------------------------------------------------------------------- /icons/add-scenario.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/icons/add-scenario.svg -------------------------------------------------------------------------------- /icons/bus-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/icons/bus-icon.png -------------------------------------------------------------------------------- /icons/bus-stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/icons/bus-stop.png -------------------------------------------------------------------------------- /icons/category.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/icons/category.jpg -------------------------------------------------------------------------------- /icons/category.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/icons/category.png -------------------------------------------------------------------------------- /icons/copy-scenario.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/icons/copy-scenario.svg -------------------------------------------------------------------------------- /icons/edit-layer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/icons/edit-layer.svg -------------------------------------------------------------------------------- /icons/edit-scenario.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/icons/edit-scenario.svg -------------------------------------------------------------------------------- /icons/green-light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/icons/green-light.jpg -------------------------------------------------------------------------------- /icons/green-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/icons/green-light.png -------------------------------------------------------------------------------- /icons/link-type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/icons/link-type.png -------------------------------------------------------------------------------- /icons/load-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/icons/load-folder.png -------------------------------------------------------------------------------- /icons/mini-square-gray.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/icons/mini-square-gray.jpg -------------------------------------------------------------------------------- /icons/mini-square-red.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/icons/mini-square-red.jpg -------------------------------------------------------------------------------- /icons/modelistica_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/icons/modelistica_logo.png -------------------------------------------------------------------------------- /icons/no-turn-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/icons/no-turn-right.png -------------------------------------------------------------------------------- /icons/non_motorized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/icons/non_motorized.png -------------------------------------------------------------------------------- /icons/normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/icons/normal.png -------------------------------------------------------------------------------- /icons/normal_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/icons/normal_old.png -------------------------------------------------------------------------------- /icons/one-way-road.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/icons/one-way-road.png -------------------------------------------------------------------------------- /icons/open-layer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/icons/open-layer.svg -------------------------------------------------------------------------------- /icons/paste-scenario.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/icons/paste-scenario.svg -------------------------------------------------------------------------------- /icons/preloader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/icons/preloader.gif -------------------------------------------------------------------------------- /icons/red-light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/icons/red-light.png -------------------------------------------------------------------------------- /icons/remove-layer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/icons/remove-layer.svg -------------------------------------------------------------------------------- /icons/remove-scenario.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/icons/remove-scenario.svg -------------------------------------------------------------------------------- /icons/reverse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/icons/reverse.png -------------------------------------------------------------------------------- /icons/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/icons/run.png -------------------------------------------------------------------------------- /icons/save.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/icons/save.svg -------------------------------------------------------------------------------- /icons/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/icons/search.svg -------------------------------------------------------------------------------- /icons/square-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/icons/square-gray.png -------------------------------------------------------------------------------- /icons/square-green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/icons/square-green.png -------------------------------------------------------------------------------- /icons/transit_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/icons/transit_icon.png -------------------------------------------------------------------------------- /icons/transit_with_routes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/icons/transit_with_routes.png -------------------------------------------------------------------------------- /icons/two-way-road.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/icons/two-way-road.jpg -------------------------------------------------------------------------------- /icons/two-way-road.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/icons/two-way-road.png -------------------------------------------------------------------------------- /icons/upload-new.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/icons/upload-new.ico -------------------------------------------------------------------------------- /icons/upload-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/icons/upload-new.png -------------------------------------------------------------------------------- /icons/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/icons/upload.png -------------------------------------------------------------------------------- /import_csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/import_csv.py -------------------------------------------------------------------------------- /import_csv.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/import_csv.ui -------------------------------------------------------------------------------- /imports_network.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/imports_network.ui -------------------------------------------------------------------------------- /imports_network_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/imports_network_dialog.py -------------------------------------------------------------------------------- /intersectors.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/intersectors.ui -------------------------------------------------------------------------------- /intersectors_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/intersectors_dialog.py -------------------------------------------------------------------------------- /layers_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/layers_model.py -------------------------------------------------------------------------------- /link_type.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/link_type.ui -------------------------------------------------------------------------------- /link_type_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/link_type_dialog.py -------------------------------------------------------------------------------- /links.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/links.ui -------------------------------------------------------------------------------- /links_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/links_dialog.py -------------------------------------------------------------------------------- /matrixlayer.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/matrixlayer.ui -------------------------------------------------------------------------------- /matrixlayer_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/matrixlayer_dialog.py -------------------------------------------------------------------------------- /metadata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/metadata.txt -------------------------------------------------------------------------------- /modes.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/modes.ui -------------------------------------------------------------------------------- /modes_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/modes_dialog.py -------------------------------------------------------------------------------- /networklayer.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/networklayer.ui -------------------------------------------------------------------------------- /networklayer_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/networklayer_dialog.py -------------------------------------------------------------------------------- /nodes.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/nodes.ui -------------------------------------------------------------------------------- /nodes_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/nodes_dialog.py -------------------------------------------------------------------------------- /operators.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/operators.ui -------------------------------------------------------------------------------- /operators_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/operators_dialog.py -------------------------------------------------------------------------------- /pb_tool.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/pb_tool.cfg -------------------------------------------------------------------------------- /plugin_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/plugin_upload.py -------------------------------------------------------------------------------- /pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/pylintrc -------------------------------------------------------------------------------- /qtranus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/qtranus.py -------------------------------------------------------------------------------- /qtranus_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/qtranus_dialog.py -------------------------------------------------------------------------------- /qtranus_dialog_base.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/qtranus_dialog_base.ui -------------------------------------------------------------------------------- /qtranus_project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/qtranus_project.py -------------------------------------------------------------------------------- /qtranusmessagebox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/qtranusmessagebox.py -------------------------------------------------------------------------------- /reasign_linktype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/reasign_linktype.py -------------------------------------------------------------------------------- /reasign_linktype.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/reasign_linktype.ui -------------------------------------------------------------------------------- /resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/resources.py -------------------------------------------------------------------------------- /resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/resources.qrc -------------------------------------------------------------------------------- /resources_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/resources_rc.py -------------------------------------------------------------------------------- /results.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/results.ui -------------------------------------------------------------------------------- /results_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/results_dialog.py -------------------------------------------------------------------------------- /routes.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/routes.ui -------------------------------------------------------------------------------- /routes_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/routes_dialog.py -------------------------------------------------------------------------------- /run.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/run.ui -------------------------------------------------------------------------------- /run_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/run_dialog.py -------------------------------------------------------------------------------- /scenarios.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/scenarios.ui -------------------------------------------------------------------------------- /scenarios_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/scenarios_dialog.py -------------------------------------------------------------------------------- /scenarios_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/scenarios_model.py -------------------------------------------------------------------------------- /scenarios_model_sqlite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/scenarios_model_sqlite.py -------------------------------------------------------------------------------- /scenarios_select.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/scenarios_select.ui -------------------------------------------------------------------------------- /scenarios_select_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/scenarios_select_dialog.py -------------------------------------------------------------------------------- /scenarios_selector.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/scenarios_selector.ui -------------------------------------------------------------------------------- /sectors.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/sectors.ui -------------------------------------------------------------------------------- /sectors_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/sectors_dialog.py -------------------------------------------------------------------------------- /settings.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/settings.ui -------------------------------------------------------------------------------- /settings_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/settings_dialog.py -------------------------------------------------------------------------------- /transfers.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/transfers.ui -------------------------------------------------------------------------------- /transfers_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/transfers_dialog.py -------------------------------------------------------------------------------- /tranus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/tranus.py -------------------------------------------------------------------------------- /tus.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/tus.bmp -------------------------------------------------------------------------------- /userHelp/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/userHelp/css/main.css -------------------------------------------------------------------------------- /userHelp/data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/userHelp/data.html -------------------------------------------------------------------------------- /userHelp/img/base1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/userHelp/img/base1.png -------------------------------------------------------------------------------- /userHelp/img/data1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/userHelp/img/data1.png -------------------------------------------------------------------------------- /userHelp/img/matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/userHelp/img/matrix.png -------------------------------------------------------------------------------- /userHelp/img/matrix2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/userHelp/img/matrix2.png -------------------------------------------------------------------------------- /userHelp/img/network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/userHelp/img/network.png -------------------------------------------------------------------------------- /userHelp/img/network2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/userHelp/img/network2.png -------------------------------------------------------------------------------- /userHelp/img/network3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/userHelp/img/network3.png -------------------------------------------------------------------------------- /userHelp/img/project1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/userHelp/img/project1.jpg -------------------------------------------------------------------------------- /userHelp/img/project1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/userHelp/img/project1.png -------------------------------------------------------------------------------- /userHelp/img/results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/userHelp/img/results.png -------------------------------------------------------------------------------- /userHelp/img/run1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/userHelp/img/run1.png -------------------------------------------------------------------------------- /userHelp/img/zones1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/userHelp/img/zones1.jpg -------------------------------------------------------------------------------- /userHelp/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/userHelp/index.html -------------------------------------------------------------------------------- /userHelp/matrix.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/userHelp/matrix.html -------------------------------------------------------------------------------- /userHelp/network.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/userHelp/network.html -------------------------------------------------------------------------------- /userHelp/project.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/userHelp/project.html -------------------------------------------------------------------------------- /userHelp/results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/userHelp/results.html -------------------------------------------------------------------------------- /userHelp/run.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/userHelp/run.html -------------------------------------------------------------------------------- /userHelp/zones.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/userHelp/zones.html -------------------------------------------------------------------------------- /zonaldata.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/zonaldata.ui -------------------------------------------------------------------------------- /zonaldata_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/zonaldata_dialog.py -------------------------------------------------------------------------------- /zonelayer.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/zonelayer.ui -------------------------------------------------------------------------------- /zonelayer_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/zonelayer_dialog.py -------------------------------------------------------------------------------- /zones.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/zones.ui -------------------------------------------------------------------------------- /zones_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TomasdelaBarra/QTRANUS/HEAD/zones_dialog.py --------------------------------------------------------------------------------