├── .gitignore ├── LICENSE.md ├── Makefile ├── README.es.md ├── README.md ├── README.pt.md ├── __init__.py ├── app ├── __init__.py ├── controllers │ ├── ApiController.py │ ├── CalculationController.py │ ├── DataController.py │ ├── FlowController.py │ ├── MainController.py │ ├── ParameterController.py │ ├── ProjectController.py │ └── XlsController.py ├── data │ ├── countries.json │ ├── criterias.json │ ├── inspection-devices.json │ ├── materials.json │ └── pipes.json ├── db │ └── .gitignore ├── lib │ ├── ProgressThread.py │ ├── Store.py │ ├── xlrd │ │ ├── __init__.py │ │ ├── biffh.py │ │ ├── book.py │ │ ├── compdoc.py │ │ ├── formatting.py │ │ ├── formula.py │ │ ├── info.py │ │ ├── sheet.py │ │ ├── timemachine.py │ │ ├── xldate.py │ │ └── xlsx.py │ ├── xlutils │ │ ├── __init__.py │ │ ├── compat.py │ │ ├── copy.py │ │ ├── display.py │ │ ├── filter.py │ │ ├── license.txt │ │ ├── margins.py │ │ ├── save.py │ │ ├── styles.py │ │ ├── tests │ │ │ ├── __init__.py │ │ │ ├── compat.py │ │ │ ├── date.xls │ │ │ ├── datetime.xls │ │ │ ├── fixtures.py │ │ │ ├── ragged.xls │ │ │ ├── sample.xlsx │ │ │ ├── test.xls │ │ │ ├── test_copy.py │ │ │ ├── test_docs.py │ │ │ ├── test_filter.py │ │ │ ├── test_save.py │ │ │ ├── test_styles.py │ │ │ ├── test_view.py │ │ │ ├── testall.xls │ │ │ └── testnoformatting.xls │ │ ├── version.txt │ │ └── view.py │ └── xlwt │ │ ├── BIFFRecords.py │ │ ├── Bitmap.py │ │ ├── Cell.py │ │ ├── Column.py │ │ ├── CompoundDoc.py │ │ ├── ExcelFormula.py │ │ ├── ExcelFormulaLexer.py │ │ ├── ExcelFormulaParser.py │ │ ├── ExcelMagic.py │ │ ├── Formatting.py │ │ ├── Row.py │ │ ├── Style.py │ │ ├── UnicodeUtils.py │ │ ├── Utils.py │ │ ├── Workbook.py │ │ ├── Worksheet.py │ │ ├── __init__.py │ │ ├── antlr.py │ │ ├── compat.py │ │ └── excel-formula.g ├── models │ ├── Calculation.py │ ├── Contribution.py │ ├── Country.py │ ├── Criteria.py │ ├── InspectionDevice.py │ ├── Parameter.py │ ├── Pipe.py │ ├── Project.py │ ├── WaterLevelAdj.py │ └── delegates │ │ ├── CalculationDelegate.py │ │ ├── ContributionDelegate.py │ │ ├── PipesDelegate.py │ │ └── WaterLevelAdjDelegate.py ├── resources │ ├── compile.sh │ ├── edit_values_dialog.ui │ ├── export_layers_dialog.ui │ ├── flow_dialog.ui │ ├── images │ │ ├── concentratedContributions.png │ │ ├── contributions.qrc │ │ ├── distributedContributions.png │ │ ├── minus.png │ │ └── plus.png │ ├── iterations.ui │ ├── login_dialog.ui │ ├── main_window.ui │ ├── new_project_dialog.ui │ ├── parameter_dialog.ui │ ├── project_dialog.ui │ └── xls │ │ ├── export_tpl_EN.xls │ │ ├── export_tpl_ES.xls │ │ └── export_tpl_PT.xls └── views │ ├── EditValuesView.py │ ├── ExportLayersView.py │ ├── FlowView.py │ ├── GenericWindow.py │ ├── IterationsView.py │ ├── LoginView.py │ ├── MainView.py │ ├── NewProjectView.py │ ├── ParameterView.py │ ├── ProjectDialogView.py │ └── ui │ ├── EditValuesDialogUi.py │ ├── ExportLayersDialogUi.py │ ├── FlowDialogUi.py │ ├── IterationsDialogUi.py │ ├── LoginView.py │ ├── MainWindowUi.py │ ├── NewProjectDialogUi.py │ ├── ParameterDialogUi.py │ ├── ProjectDialogUi.py │ └── contributions_rc.py ├── base ├── Print │ ├── BID.png │ ├── Compositor_A0_Horizontal.qpt │ ├── Compositor_A0_Vertical.qpt │ ├── Label_Node.png │ ├── Label_Node2.png │ ├── Label_Segment.png │ ├── Legenda_No.png │ ├── Legenda_No2.png │ ├── Legenda_Trecho.png │ ├── Leyenda Nodo.png │ ├── Leyenda Nodos_3.png │ ├── Leyenda Tramo.png │ ├── Leyenda_Nodo.png │ ├── Leyenda_Nodo2.png │ ├── Leyenda_Tramo.png │ ├── Logo_print.png │ ├── NorthArrow_02.svg │ └── Print_Estilos │ │ ├── Blocks_print_style.qml │ │ ├── Line_plot_style_var.qml │ │ ├── Nodes_plot_style_var.qml │ │ ├── Nodes_print_style.qml │ │ └── Tramos_print_style.qml ├── collector_prefix_dialog.py ├── create_pointLayer_importRaster_dialog.py ├── export_dialog.py ├── helper_functions.py ├── name_segment_dialog.py ├── pendencias.py ├── plugin_upload.py ├── profundidade.py ├── rasterinterpolator.py ├── recobrimento_dialog.py ├── red_basica.py ├── red_basica_dialog.py ├── resources.py ├── resources.qrc ├── resources │ ├── collector_prefix_dialog.ui │ ├── create_pointLayer_importRaster_dialog.ui │ ├── export_dialog.ui │ ├── name_segment_dialog_base.ui │ ├── naming_dialog.ui │ ├── recobrimento_dialog.ui │ ├── red_basica_dialog_base.ui │ ├── styles │ │ ├── Blocks_Style.qml │ │ ├── Default_nodes_plot_style.qml │ │ ├── Default_nodes_style.qml │ │ ├── NaturalSlopeArrow_Style.qml │ │ ├── RequiredPoints_Style.qml │ │ ├── Ret_impres.qml │ │ ├── Trechos_Plot_Style.qml │ │ ├── default_plot_style.qml │ │ └── default_style.qml │ ├── swmm_dialog.ui │ ├── templates │ │ ├── A1_1000.qpt │ │ ├── A1_2000.qpt │ │ ├── A1_4000.qpt │ │ ├── A1_5000.qpt │ │ └── ImprAtlas1.qpt │ └── ui_segment_dock.ui ├── swmm │ ├── dialog_ui.py │ └── export_swmm.py └── ui_segment_dock.py ├── i18n ├── RedBasica_en.qm ├── RedBasica_en.ts ├── RedBasica_es.qm ├── RedBasica_es.ts ├── RedBasica_pt.qm ├── RedBasica_pt.ts └── compile.sh ├── icon.png ├── icons ├── arrow-down.png ├── arrow-right.png ├── arrow-up.png ├── arrow_down.png ├── blocks.png ├── blueprint.png ├── calc.png ├── edit.png ├── empty.png ├── export.png ├── flow.png ├── gen-point-layer.png ├── import-node.png ├── import.png ├── new.png ├── nodes.png ├── pendencias.png ├── processing.png ├── recobrimento.png ├── refresh-atributes.png ├── settings.png ├── start-button.png ├── style-swap.png ├── swmm.png └── validate.png ├── metadata.txt ├── migrate.py ├── osgeo4shell.txt ├── pb_tool.cfg ├── profile ├── __init__.py ├── pyqtgraph │ ├── GraphicsScene │ │ ├── GraphicsScene.py │ │ ├── __init__.py │ │ ├── exportDialog.py │ │ ├── exportDialogTemplate.ui │ │ ├── exportDialogTemplate_generic.py │ │ └── mouseEvents.py │ ├── PlotData.py │ ├── Point.py │ ├── Qt │ │ ├── QtCore │ │ │ ├── __init__.py │ │ │ └── __init__.pyi │ │ ├── QtGui │ │ │ ├── __init__.py │ │ │ └── __init__.pyi │ │ ├── QtSvg.pyi │ │ ├── QtTest.pyi │ │ ├── QtWidgets │ │ │ ├── __init__.py │ │ │ └── __init__.pyi │ │ ├── __init__.py │ │ ├── __init__.pyi │ │ ├── compat │ │ │ └── __init__.py │ │ └── internals.py │ ├── SRTTransform.py │ ├── SRTTransform3D.py │ ├── SignalProxy.py │ ├── ThreadsafeTimer.py │ ├── Transform3D.py │ ├── Vector.py │ ├── WidgetGroup.py │ ├── __init__.py │ ├── canvas │ │ ├── Canvas.py │ │ ├── CanvasItem.py │ │ ├── CanvasManager.py │ │ ├── CanvasTemplate.ui │ │ ├── CanvasTemplate_generic.py │ │ ├── TransformGuiTemplate.ui │ │ ├── TransformGuiTemplate_generic.py │ │ └── __init__.py │ ├── colormap.py │ ├── colors │ │ ├── __init__.py │ │ ├── maps │ │ │ ├── CC-BY license - applies to CET color map data.txt │ │ │ ├── CC0 legal code - applies to virids, magma, plasma, inferno and cividis.txt │ │ │ ├── CET-C1.csv │ │ │ ├── CET-C1s.csv │ │ │ ├── CET-C2.csv │ │ │ ├── CET-C2s.csv │ │ │ ├── CET-C3.csv │ │ │ ├── CET-C3s.csv │ │ │ ├── CET-C4.csv │ │ │ ├── CET-C4s.csv │ │ │ ├── CET-C5.csv │ │ │ ├── CET-C5s.csv │ │ │ ├── CET-C6.csv │ │ │ ├── CET-C6s.csv │ │ │ ├── CET-C7.csv │ │ │ ├── CET-C7s.csv │ │ │ ├── CET-CBC1.csv │ │ │ ├── CET-CBC2.csv │ │ │ ├── CET-CBD1.csv │ │ │ ├── CET-CBL1.csv │ │ │ ├── CET-CBL2.csv │ │ │ ├── CET-CBTC1.csv │ │ │ ├── CET-CBTC2.csv │ │ │ ├── CET-CBTD1.csv │ │ │ ├── CET-CBTL1.csv │ │ │ ├── CET-CBTL2.csv │ │ │ ├── CET-D1.csv │ │ │ ├── CET-D10.csv │ │ │ ├── CET-D11.csv │ │ │ ├── CET-D12.csv │ │ │ ├── CET-D13.csv │ │ │ ├── CET-D1A.csv │ │ │ ├── CET-D2.csv │ │ │ ├── CET-D3.csv │ │ │ ├── CET-D4.csv │ │ │ ├── CET-D6.csv │ │ │ ├── CET-D7.csv │ │ │ ├── CET-D8.csv │ │ │ ├── CET-D9.csv │ │ │ ├── CET-I1.csv │ │ │ ├── CET-I2.csv │ │ │ ├── CET-I3.csv │ │ │ ├── CET-L1.csv │ │ │ ├── CET-L10.csv │ │ │ ├── CET-L11.csv │ │ │ ├── CET-L12.csv │ │ │ ├── CET-L13.csv │ │ │ ├── CET-L14.csv │ │ │ ├── CET-L15.csv │ │ │ ├── CET-L16.csv │ │ │ ├── CET-L17.csv │ │ │ ├── CET-L18.csv │ │ │ ├── CET-L19.csv │ │ │ ├── CET-L2.csv │ │ │ ├── CET-L3.csv │ │ │ ├── CET-L4.csv │ │ │ ├── CET-L5.csv │ │ │ ├── CET-L6.csv │ │ │ ├── CET-L7.csv │ │ │ ├── CET-L8.csv │ │ │ ├── CET-L9.csv │ │ │ ├── CET-R1.csv │ │ │ ├── CET-R2.csv │ │ │ ├── CET-R3.csv │ │ │ ├── CET-R4.csv │ │ │ ├── PAL-relaxed.hex │ │ │ ├── PAL-relaxed_bright.hex │ │ │ ├── cividis.csv │ │ │ ├── inferno.csv │ │ │ ├── magma.csv │ │ │ ├── plasma.csv │ │ │ ├── turbo.csv │ │ │ └── viridis.csv │ │ └── palette.py │ ├── configfile.py │ ├── console │ │ ├── CmdInput.py │ │ ├── Console.py │ │ ├── __init__.py │ │ ├── exception_widget.py │ │ ├── repl_widget.py │ │ └── stackwidget.py │ ├── debug.py │ ├── dockarea │ │ ├── Container.py │ │ ├── Dock.py │ │ ├── DockArea.py │ │ ├── DockDrop.py │ │ └── __init__.py │ ├── examples │ │ ├── Arrow.py │ │ ├── AxisItem_label_overlap.py │ │ ├── BarGraphItem.py │ │ ├── CLIexample.py │ │ ├── ColorBarItem.py │ │ ├── ColorButton.py │ │ ├── ColorGradientPlots.py │ │ ├── ConsoleWidget.py │ │ ├── CustomGraphItem.py │ │ ├── DataSlicing.py │ │ ├── DataTreeWidget.py │ │ ├── DateAxisItem.py │ │ ├── DateAxisItem_QtDesigner.py │ │ ├── DateAxisItem_QtDesigner.ui │ │ ├── DiffTreeWidget.py │ │ ├── Draw.py │ │ ├── ErrorBarItem.py │ │ ├── ExampleApp.py │ │ ├── FillBetweenItem.py │ │ ├── Flowchart.py │ │ ├── FlowchartCustomNode.py │ │ ├── GLBarGraphItem.py │ │ ├── GLGradientLegendItem.py │ │ ├── GLGraphItem.py │ │ ├── GLImageItem.py │ │ ├── GLIsosurface.py │ │ ├── GLLinePlotItem.py │ │ ├── GLMeshItem.py │ │ ├── GLPainterItem.py │ │ ├── GLScatterPlotItem.py │ │ ├── GLSurfacePlot.py │ │ ├── GLTextItem.py │ │ ├── GLViewWidget.py │ │ ├── GLVolumeItem.py │ │ ├── GLshaders.py │ │ ├── GradientEditor.py │ │ ├── GradientWidget.py │ │ ├── GraphItem.py │ │ ├── GraphicsLayout.py │ │ ├── GraphicsScene.py │ │ ├── HistogramLUT.py │ │ ├── ImageItem.py │ │ ├── ImageView.py │ │ ├── InfiniteLine.py │ │ ├── InteractiveParameter.py │ │ ├── JoystickButton.py │ │ ├── Legend.py │ │ ├── LogPlotTest.py │ │ ├── MatrixDisplayExample.py │ │ ├── MouseSelection.py │ │ ├── MultiDataPlot.py │ │ ├── MultiPlotSpeedTest.py │ │ ├── MultiplePlotAxes.py │ │ ├── NonUniformImage.py │ │ ├── PColorMeshItem.py │ │ ├── PanningPlot.py │ │ ├── PlotAutoRange.py │ │ ├── PlotSpeedTest.py │ │ ├── PlotWidget.py │ │ ├── Plotting.py │ │ ├── ProgressDialog.py │ │ ├── ROIExamples.py │ │ ├── ROItypes.py │ │ ├── RemoteGraphicsView.py │ │ ├── RemoteSpeedTest.py │ │ ├── RunExampleApp.py │ │ ├── ScaleBar.py │ │ ├── ScatterPlot.py │ │ ├── ScatterPlotSpeedTest.py │ │ ├── ScatterPlotWidget.py │ │ ├── SimplePlot.py │ │ ├── SpinBox.py │ │ ├── Symbols.py │ │ ├── TableWidget.py │ │ ├── TreeWidget.py │ │ ├── VideoSpeedTest.py │ │ ├── VideoTemplate.ui │ │ ├── VideoTemplate_generic.py │ │ ├── ViewBox.py │ │ ├── ViewBoxFeatures.py │ │ ├── ViewLimits.py │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── _buildParamTypes.py │ │ ├── _paramtreecfg.py │ │ ├── beeswarm.py │ │ ├── colorMaps.py │ │ ├── colorMapsLinearized.py │ │ ├── console_exception_inspection.py │ │ ├── contextMenu.py │ │ ├── crosshair.py │ │ ├── customGraphicsItem.py │ │ ├── customPlot.py │ │ ├── cx_freeze │ │ │ ├── plotTest.py │ │ │ └── setup.py │ │ ├── designerExample.py │ │ ├── designerExample.ui │ │ ├── dockarea.py │ │ ├── exampleLoaderTemplate.ui │ │ ├── exampleLoaderTemplate_generic.py │ │ ├── fractal.py │ │ ├── glow.py │ │ ├── hdf5.py │ │ ├── histogram.py │ │ ├── imageAnalysis.py │ │ ├── infiniteline_performance.py │ │ ├── isocurve.py │ │ ├── jupyter_console_example.py │ │ ├── linkedViews.py │ │ ├── logAxis.py │ │ ├── multiplePlotSpeedTest.py │ │ ├── multiprocess.py │ │ ├── notebooks │ │ │ ├── ImageAnalysis.ipynb │ │ │ ├── PColorMeshItem.ipynb │ │ │ ├── Plotting.ipynb │ │ │ ├── ROIExamples.ipynb │ │ │ ├── ScatterPlot.ipynb │ │ │ └── simple.ipynb │ │ ├── optics │ │ │ ├── __init__.py │ │ │ ├── pyoptic.py │ │ │ └── schott_glasses.csv.gz │ │ ├── optics_demos.py │ │ ├── parallelize.py │ │ ├── parametertree.py │ │ ├── py2exe │ │ │ ├── plotTest.py │ │ │ └── setup.py │ │ ├── relativity │ │ │ ├── __init__.py │ │ │ ├── presets │ │ │ │ ├── Grid Expansion.cfg │ │ │ │ ├── Twin Paradox (grid).cfg │ │ │ │ └── Twin Paradox.cfg │ │ │ └── relativity.py │ │ ├── relativity_demo.py │ │ ├── scrollingPlots.py │ │ ├── syntax.py │ │ ├── template.py │ │ ├── test_examples.py │ │ ├── text.py │ │ ├── utils.py │ │ ├── verlet_chain │ │ │ ├── __init__.py │ │ │ ├── chain.py │ │ │ ├── make │ │ │ ├── relax.c │ │ │ └── relax.py │ │ └── verlet_chain_demo.py │ ├── exceptionHandling.py │ ├── exporters │ │ ├── CSVExporter.py │ │ ├── Exporter.py │ │ ├── HDF5Exporter.py │ │ ├── ImageExporter.py │ │ ├── Matplotlib.py │ │ ├── PrintExporter.py │ │ ├── SVGExporter.py │ │ └── __init__.py │ ├── flowchart │ │ ├── Flowchart.py │ │ ├── FlowchartCtrlTemplate.ui │ │ ├── FlowchartCtrlTemplate_generic.py │ │ ├── FlowchartGraphicsView.py │ │ ├── Node.py │ │ ├── NodeLibrary.py │ │ ├── Terminal.py │ │ ├── __init__.py │ │ └── library │ │ │ ├── Data.py │ │ │ ├── Display.py │ │ │ ├── Filters.py │ │ │ ├── Operators.py │ │ │ ├── __init__.py │ │ │ ├── common.py │ │ │ └── functions.py │ ├── frozenSupport.py │ ├── functions.py │ ├── functions_numba.py │ ├── functions_qimage.py │ ├── graphicsItems │ │ ├── ArrowItem.py │ │ ├── AxisItem.py │ │ ├── BarGraphItem.py │ │ ├── ButtonItem.py │ │ ├── ColorBarItem.py │ │ ├── CurvePoint.py │ │ ├── DateAxisItem.py │ │ ├── ErrorBarItem.py │ │ ├── FillBetweenItem.py │ │ ├── GradientEditorItem.py │ │ ├── GradientLegend.py │ │ ├── GradientPresets.py │ │ ├── GraphItem.py │ │ ├── GraphicsItem.py │ │ ├── GraphicsLayout.py │ │ ├── GraphicsObject.py │ │ ├── GraphicsWidget.py │ │ ├── GraphicsWidgetAnchor.py │ │ ├── GridItem.py │ │ ├── HistogramLUTItem.py │ │ ├── ImageItem.py │ │ ├── InfiniteLine.py │ │ ├── IsocurveItem.py │ │ ├── ItemGroup.py │ │ ├── LabelItem.py │ │ ├── LegendItem.py │ │ ├── LinearRegionItem.py │ │ ├── MultiPlotItem.py │ │ ├── NonUniformImage.py │ │ ├── PColorMeshItem.py │ │ ├── PlotCurveItem.py │ │ ├── PlotDataItem.py │ │ ├── PlotItem │ │ │ ├── PlotItem.py │ │ │ ├── __init__.py │ │ │ ├── plotConfigTemplate.ui │ │ │ └── plotConfigTemplate_generic.py │ │ ├── ROI.py │ │ ├── ScaleBar.py │ │ ├── ScatterPlotItem.py │ │ ├── TargetItem.py │ │ ├── TextItem.py │ │ ├── UIGraphicsItem.py │ │ ├── VTickGroup.py │ │ ├── ViewBox │ │ │ ├── ViewBox.py │ │ │ ├── ViewBoxMenu.py │ │ │ ├── __init__.py │ │ │ ├── axisCtrlTemplate.ui │ │ │ └── axisCtrlTemplate_generic.py │ │ └── __init__.py │ ├── icons │ │ ├── __init__.py │ │ ├── auto.png │ │ ├── ctrl.png │ │ ├── default.png │ │ ├── icons.svg │ │ ├── invisibleEye.svg │ │ ├── lock.png │ │ └── peegee │ │ │ ├── peegee.svg │ │ │ ├── peegee_128px.png │ │ │ ├── peegee_128px@2x.png │ │ │ ├── peegee_192px.png │ │ │ ├── peegee_256px.png │ │ │ ├── peegee_256px@2x.png │ │ │ ├── peegee_512px.png │ │ │ └── peegee_512px@2x.png │ ├── imageview │ │ ├── ImageView.py │ │ ├── ImageViewTemplate.ui │ │ ├── ImageViewTemplate_generic.py │ │ └── __init__.py │ ├── jupyter │ │ ├── GraphicsView.py │ │ └── __init__.py │ ├── metaarray │ │ ├── MetaArray.py │ │ ├── __init__.py │ │ ├── license.txt │ │ └── readMeta.m │ ├── multiprocess │ │ ├── __init__.py │ │ ├── bootstrap.py │ │ ├── parallelizer.py │ │ ├── processes.py │ │ └── remoteproxy.py │ ├── opengl │ │ ├── GLGraphicsItem.py │ │ ├── GLViewWidget.py │ │ ├── MeshData.py │ │ ├── __init__.py │ │ ├── items │ │ │ ├── GLAxisItem.py │ │ │ ├── GLBarGraphItem.py │ │ │ ├── GLBoxItem.py │ │ │ ├── GLGradientLegendItem.py │ │ │ ├── GLGraphItem.py │ │ │ ├── GLGridItem.py │ │ │ ├── GLImageItem.py │ │ │ ├── GLLinePlotItem.py │ │ │ ├── GLMeshItem.py │ │ │ ├── GLScatterPlotItem.py │ │ │ ├── GLSurfacePlotItem.py │ │ │ ├── GLTextItem.py │ │ │ ├── GLVolumeItem.py │ │ │ └── __init__.py │ │ └── shaders.py │ ├── parametertree │ │ ├── Parameter.py │ │ ├── ParameterItem.py │ │ ├── ParameterSystem.py │ │ ├── ParameterTree.py │ │ ├── SystemSolver.py │ │ ├── __init__.py │ │ ├── interactive.py │ │ └── parameterTypes │ │ │ ├── __init__.py │ │ │ ├── action.py │ │ │ ├── actiongroup.py │ │ │ ├── basetypes.py │ │ │ ├── bool.py │ │ │ ├── calendar.py │ │ │ ├── checklist.py │ │ │ ├── color.py │ │ │ ├── colormap.py │ │ │ ├── colormaplut.py │ │ │ ├── file.py │ │ │ ├── font.py │ │ │ ├── list.py │ │ │ ├── numeric.py │ │ │ ├── pen.py │ │ │ ├── progress.py │ │ │ ├── qtenum.py │ │ │ ├── slider.py │ │ │ ├── str.py │ │ │ └── text.py │ ├── reload.py │ ├── units.py │ ├── util │ │ ├── __init__.py │ │ ├── colorama │ │ │ ├── LICENSE.txt │ │ │ ├── README.txt │ │ │ ├── __init__.py │ │ │ ├── win32.py │ │ │ └── winterm.py │ │ ├── cprint.py │ │ ├── cupy_helper.py │ │ ├── garbage_collector.py │ │ ├── get_resolution.py │ │ ├── glinfo.py │ │ ├── mutex.py │ │ └── numba_helper.py │ └── widgets │ │ ├── BusyCursor.py │ │ ├── CheckTable.py │ │ ├── ColorButton.py │ │ ├── ColorMapButton.py │ │ ├── ColorMapMenu.py │ │ ├── ColorMapWidget.py │ │ ├── ComboBox.py │ │ ├── DataFilterWidget.py │ │ ├── DataTreeWidget.py │ │ ├── DiffTreeWidget.py │ │ ├── FeedbackButton.py │ │ ├── FileDialog.py │ │ ├── GradientWidget.py │ │ ├── GraphicsLayoutWidget.py │ │ ├── GraphicsView.py │ │ ├── GroupBox.py │ │ ├── HistogramLUTWidget.py │ │ ├── JoystickButton.py │ │ ├── LayoutWidget.py │ │ ├── MatplotlibWidget.py │ │ ├── MultiPlotWidget.py │ │ ├── PathButton.py │ │ ├── PenPreviewLabel.py │ │ ├── PlotWidget.py │ │ ├── ProgressDialog.py │ │ ├── RawImageWidget.py │ │ ├── RemoteGraphicsView.py │ │ ├── ScatterPlotWidget.py │ │ ├── SpinBox.py │ │ ├── TableWidget.py │ │ ├── TreeWidget.py │ │ ├── ValueLabel.py │ │ ├── VerticalLabel.py │ │ └── __init__.py ├── resources │ ├── compile.sh │ └── profile_widget.ui ├── utils │ ├── helpers.py │ └── vLayer.py └── views │ ├── MainView.py │ └── ui │ └── ProfileWidgetUi.py ├── pylintrc ├── saniBID_RedBasica_Dimensioning_Spreadsheet_EN_vAug24.xlsm ├── saniBID_RedBasica_Hoja_Calculo_ES_vAgo24.xlsm └── saniBID_RedBasica_Planilha_Dimensionamento_PT_vAgo24.xlsm /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/Makefile -------------------------------------------------------------------------------- /README.es.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/README.es.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/README.md -------------------------------------------------------------------------------- /README.pt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/README.pt.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/__init__.py -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/__init__.py -------------------------------------------------------------------------------- /app/controllers/ApiController.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/controllers/ApiController.py -------------------------------------------------------------------------------- /app/controllers/CalculationController.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/controllers/CalculationController.py -------------------------------------------------------------------------------- /app/controllers/DataController.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/controllers/DataController.py -------------------------------------------------------------------------------- /app/controllers/FlowController.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/controllers/FlowController.py -------------------------------------------------------------------------------- /app/controllers/MainController.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/controllers/MainController.py -------------------------------------------------------------------------------- /app/controllers/ParameterController.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/controllers/ParameterController.py -------------------------------------------------------------------------------- /app/controllers/ProjectController.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/controllers/ProjectController.py -------------------------------------------------------------------------------- /app/controllers/XlsController.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/controllers/XlsController.py -------------------------------------------------------------------------------- /app/data/countries.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/data/countries.json -------------------------------------------------------------------------------- /app/data/criterias.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/data/criterias.json -------------------------------------------------------------------------------- /app/data/inspection-devices.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/data/inspection-devices.json -------------------------------------------------------------------------------- /app/data/materials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/data/materials.json -------------------------------------------------------------------------------- /app/data/pipes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/data/pipes.json -------------------------------------------------------------------------------- /app/db/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/db/.gitignore -------------------------------------------------------------------------------- /app/lib/ProgressThread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/lib/ProgressThread.py -------------------------------------------------------------------------------- /app/lib/Store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/lib/Store.py -------------------------------------------------------------------------------- /app/lib/xlrd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/lib/xlrd/__init__.py -------------------------------------------------------------------------------- /app/lib/xlrd/biffh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/lib/xlrd/biffh.py -------------------------------------------------------------------------------- /app/lib/xlrd/book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/lib/xlrd/book.py -------------------------------------------------------------------------------- /app/lib/xlrd/compdoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/lib/xlrd/compdoc.py -------------------------------------------------------------------------------- /app/lib/xlrd/formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/lib/xlrd/formatting.py -------------------------------------------------------------------------------- /app/lib/xlrd/formula.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/lib/xlrd/formula.py -------------------------------------------------------------------------------- /app/lib/xlrd/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/lib/xlrd/info.py -------------------------------------------------------------------------------- /app/lib/xlrd/sheet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/lib/xlrd/sheet.py -------------------------------------------------------------------------------- /app/lib/xlrd/timemachine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/lib/xlrd/timemachine.py -------------------------------------------------------------------------------- /app/lib/xlrd/xldate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/lib/xlrd/xldate.py -------------------------------------------------------------------------------- /app/lib/xlrd/xlsx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/lib/xlrd/xlsx.py -------------------------------------------------------------------------------- /app/lib/xlutils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/lib/xlutils/__init__.py -------------------------------------------------------------------------------- /app/lib/xlutils/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/lib/xlutils/compat.py -------------------------------------------------------------------------------- /app/lib/xlutils/copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/lib/xlutils/copy.py -------------------------------------------------------------------------------- /app/lib/xlutils/display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/lib/xlutils/display.py -------------------------------------------------------------------------------- /app/lib/xlutils/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/lib/xlutils/filter.py -------------------------------------------------------------------------------- /app/lib/xlutils/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/lib/xlutils/license.txt -------------------------------------------------------------------------------- /app/lib/xlutils/margins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/lib/xlutils/margins.py -------------------------------------------------------------------------------- /app/lib/xlutils/save.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/lib/xlutils/save.py -------------------------------------------------------------------------------- /app/lib/xlutils/styles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/lib/xlutils/styles.py -------------------------------------------------------------------------------- /app/lib/xlutils/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/lib/xlutils/tests/__init__.py -------------------------------------------------------------------------------- /app/lib/xlutils/tests/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/lib/xlutils/tests/compat.py -------------------------------------------------------------------------------- /app/lib/xlutils/tests/date.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/lib/xlutils/tests/date.xls -------------------------------------------------------------------------------- /app/lib/xlutils/tests/datetime.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/lib/xlutils/tests/datetime.xls -------------------------------------------------------------------------------- /app/lib/xlutils/tests/fixtures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/lib/xlutils/tests/fixtures.py -------------------------------------------------------------------------------- /app/lib/xlutils/tests/ragged.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/lib/xlutils/tests/ragged.xls -------------------------------------------------------------------------------- /app/lib/xlutils/tests/sample.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/lib/xlutils/tests/sample.xlsx -------------------------------------------------------------------------------- /app/lib/xlutils/tests/test.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/lib/xlutils/tests/test.xls -------------------------------------------------------------------------------- /app/lib/xlutils/tests/test_copy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/lib/xlutils/tests/test_copy.py -------------------------------------------------------------------------------- /app/lib/xlutils/tests/test_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/lib/xlutils/tests/test_docs.py -------------------------------------------------------------------------------- /app/lib/xlutils/tests/test_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/lib/xlutils/tests/test_filter.py -------------------------------------------------------------------------------- /app/lib/xlutils/tests/test_save.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/lib/xlutils/tests/test_save.py -------------------------------------------------------------------------------- /app/lib/xlutils/tests/test_styles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/lib/xlutils/tests/test_styles.py -------------------------------------------------------------------------------- /app/lib/xlutils/tests/test_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/lib/xlutils/tests/test_view.py -------------------------------------------------------------------------------- /app/lib/xlutils/tests/testall.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/lib/xlutils/tests/testall.xls -------------------------------------------------------------------------------- /app/lib/xlutils/tests/testnoformatting.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/lib/xlutils/tests/testnoformatting.xls -------------------------------------------------------------------------------- /app/lib/xlutils/version.txt: -------------------------------------------------------------------------------- 1 | 2.0.0 2 | -------------------------------------------------------------------------------- /app/lib/xlutils/view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/lib/xlutils/view.py -------------------------------------------------------------------------------- /app/lib/xlwt/BIFFRecords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/lib/xlwt/BIFFRecords.py -------------------------------------------------------------------------------- /app/lib/xlwt/Bitmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/lib/xlwt/Bitmap.py -------------------------------------------------------------------------------- /app/lib/xlwt/Cell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/lib/xlwt/Cell.py -------------------------------------------------------------------------------- /app/lib/xlwt/Column.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/lib/xlwt/Column.py -------------------------------------------------------------------------------- /app/lib/xlwt/CompoundDoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/lib/xlwt/CompoundDoc.py -------------------------------------------------------------------------------- /app/lib/xlwt/ExcelFormula.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/lib/xlwt/ExcelFormula.py -------------------------------------------------------------------------------- /app/lib/xlwt/ExcelFormulaLexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/lib/xlwt/ExcelFormulaLexer.py -------------------------------------------------------------------------------- /app/lib/xlwt/ExcelFormulaParser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/lib/xlwt/ExcelFormulaParser.py -------------------------------------------------------------------------------- /app/lib/xlwt/ExcelMagic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/lib/xlwt/ExcelMagic.py -------------------------------------------------------------------------------- /app/lib/xlwt/Formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/lib/xlwt/Formatting.py -------------------------------------------------------------------------------- /app/lib/xlwt/Row.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/lib/xlwt/Row.py -------------------------------------------------------------------------------- /app/lib/xlwt/Style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/lib/xlwt/Style.py -------------------------------------------------------------------------------- /app/lib/xlwt/UnicodeUtils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/lib/xlwt/UnicodeUtils.py -------------------------------------------------------------------------------- /app/lib/xlwt/Utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/lib/xlwt/Utils.py -------------------------------------------------------------------------------- /app/lib/xlwt/Workbook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/lib/xlwt/Workbook.py -------------------------------------------------------------------------------- /app/lib/xlwt/Worksheet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/lib/xlwt/Worksheet.py -------------------------------------------------------------------------------- /app/lib/xlwt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/lib/xlwt/__init__.py -------------------------------------------------------------------------------- /app/lib/xlwt/antlr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/lib/xlwt/antlr.py -------------------------------------------------------------------------------- /app/lib/xlwt/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/lib/xlwt/compat.py -------------------------------------------------------------------------------- /app/lib/xlwt/excel-formula.g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/lib/xlwt/excel-formula.g -------------------------------------------------------------------------------- /app/models/Calculation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/models/Calculation.py -------------------------------------------------------------------------------- /app/models/Contribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/models/Contribution.py -------------------------------------------------------------------------------- /app/models/Country.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/models/Country.py -------------------------------------------------------------------------------- /app/models/Criteria.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/models/Criteria.py -------------------------------------------------------------------------------- /app/models/InspectionDevice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/models/InspectionDevice.py -------------------------------------------------------------------------------- /app/models/Parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/models/Parameter.py -------------------------------------------------------------------------------- /app/models/Pipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/models/Pipe.py -------------------------------------------------------------------------------- /app/models/Project.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/models/Project.py -------------------------------------------------------------------------------- /app/models/WaterLevelAdj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/models/WaterLevelAdj.py -------------------------------------------------------------------------------- /app/models/delegates/CalculationDelegate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/models/delegates/CalculationDelegate.py -------------------------------------------------------------------------------- /app/models/delegates/ContributionDelegate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/models/delegates/ContributionDelegate.py -------------------------------------------------------------------------------- /app/models/delegates/PipesDelegate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/models/delegates/PipesDelegate.py -------------------------------------------------------------------------------- /app/models/delegates/WaterLevelAdjDelegate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/models/delegates/WaterLevelAdjDelegate.py -------------------------------------------------------------------------------- /app/resources/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/resources/compile.sh -------------------------------------------------------------------------------- /app/resources/edit_values_dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/resources/edit_values_dialog.ui -------------------------------------------------------------------------------- /app/resources/export_layers_dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/resources/export_layers_dialog.ui -------------------------------------------------------------------------------- /app/resources/flow_dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/resources/flow_dialog.ui -------------------------------------------------------------------------------- /app/resources/images/concentratedContributions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/resources/images/concentratedContributions.png -------------------------------------------------------------------------------- /app/resources/images/contributions.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/resources/images/contributions.qrc -------------------------------------------------------------------------------- /app/resources/images/distributedContributions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/resources/images/distributedContributions.png -------------------------------------------------------------------------------- /app/resources/images/minus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/resources/images/minus.png -------------------------------------------------------------------------------- /app/resources/images/plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/resources/images/plus.png -------------------------------------------------------------------------------- /app/resources/iterations.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/resources/iterations.ui -------------------------------------------------------------------------------- /app/resources/login_dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/resources/login_dialog.ui -------------------------------------------------------------------------------- /app/resources/main_window.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/resources/main_window.ui -------------------------------------------------------------------------------- /app/resources/new_project_dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/resources/new_project_dialog.ui -------------------------------------------------------------------------------- /app/resources/parameter_dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/resources/parameter_dialog.ui -------------------------------------------------------------------------------- /app/resources/project_dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/resources/project_dialog.ui -------------------------------------------------------------------------------- /app/resources/xls/export_tpl_EN.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/resources/xls/export_tpl_EN.xls -------------------------------------------------------------------------------- /app/resources/xls/export_tpl_ES.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/resources/xls/export_tpl_ES.xls -------------------------------------------------------------------------------- /app/resources/xls/export_tpl_PT.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/resources/xls/export_tpl_PT.xls -------------------------------------------------------------------------------- /app/views/EditValuesView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/views/EditValuesView.py -------------------------------------------------------------------------------- /app/views/ExportLayersView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/views/ExportLayersView.py -------------------------------------------------------------------------------- /app/views/FlowView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/views/FlowView.py -------------------------------------------------------------------------------- /app/views/GenericWindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/views/GenericWindow.py -------------------------------------------------------------------------------- /app/views/IterationsView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/views/IterationsView.py -------------------------------------------------------------------------------- /app/views/LoginView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/views/LoginView.py -------------------------------------------------------------------------------- /app/views/MainView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/views/MainView.py -------------------------------------------------------------------------------- /app/views/NewProjectView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/views/NewProjectView.py -------------------------------------------------------------------------------- /app/views/ParameterView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/views/ParameterView.py -------------------------------------------------------------------------------- /app/views/ProjectDialogView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/views/ProjectDialogView.py -------------------------------------------------------------------------------- /app/views/ui/EditValuesDialogUi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/views/ui/EditValuesDialogUi.py -------------------------------------------------------------------------------- /app/views/ui/ExportLayersDialogUi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/views/ui/ExportLayersDialogUi.py -------------------------------------------------------------------------------- /app/views/ui/FlowDialogUi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/views/ui/FlowDialogUi.py -------------------------------------------------------------------------------- /app/views/ui/IterationsDialogUi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/views/ui/IterationsDialogUi.py -------------------------------------------------------------------------------- /app/views/ui/LoginView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/views/ui/LoginView.py -------------------------------------------------------------------------------- /app/views/ui/MainWindowUi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/views/ui/MainWindowUi.py -------------------------------------------------------------------------------- /app/views/ui/NewProjectDialogUi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/views/ui/NewProjectDialogUi.py -------------------------------------------------------------------------------- /app/views/ui/ParameterDialogUi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/views/ui/ParameterDialogUi.py -------------------------------------------------------------------------------- /app/views/ui/ProjectDialogUi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/views/ui/ProjectDialogUi.py -------------------------------------------------------------------------------- /app/views/ui/contributions_rc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/app/views/ui/contributions_rc.py -------------------------------------------------------------------------------- /base/Print/BID.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/base/Print/BID.png -------------------------------------------------------------------------------- /base/Print/Compositor_A0_Horizontal.qpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/base/Print/Compositor_A0_Horizontal.qpt -------------------------------------------------------------------------------- /base/Print/Compositor_A0_Vertical.qpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/base/Print/Compositor_A0_Vertical.qpt -------------------------------------------------------------------------------- /base/Print/Label_Node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/base/Print/Label_Node.png -------------------------------------------------------------------------------- /base/Print/Label_Node2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/base/Print/Label_Node2.png -------------------------------------------------------------------------------- /base/Print/Label_Segment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/base/Print/Label_Segment.png -------------------------------------------------------------------------------- /base/Print/Legenda_No.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/base/Print/Legenda_No.png -------------------------------------------------------------------------------- /base/Print/Legenda_No2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/base/Print/Legenda_No2.png -------------------------------------------------------------------------------- /base/Print/Legenda_Trecho.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/base/Print/Legenda_Trecho.png -------------------------------------------------------------------------------- /base/Print/Leyenda Nodo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/base/Print/Leyenda Nodo.png -------------------------------------------------------------------------------- /base/Print/Leyenda Nodos_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/base/Print/Leyenda Nodos_3.png -------------------------------------------------------------------------------- /base/Print/Leyenda Tramo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/base/Print/Leyenda Tramo.png -------------------------------------------------------------------------------- /base/Print/Leyenda_Nodo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/base/Print/Leyenda_Nodo.png -------------------------------------------------------------------------------- /base/Print/Leyenda_Nodo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/base/Print/Leyenda_Nodo2.png -------------------------------------------------------------------------------- /base/Print/Leyenda_Tramo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/base/Print/Leyenda_Tramo.png -------------------------------------------------------------------------------- /base/Print/Logo_print.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/base/Print/Logo_print.png -------------------------------------------------------------------------------- /base/Print/NorthArrow_02.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/base/Print/NorthArrow_02.svg -------------------------------------------------------------------------------- /base/Print/Print_Estilos/Blocks_print_style.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/base/Print/Print_Estilos/Blocks_print_style.qml -------------------------------------------------------------------------------- /base/Print/Print_Estilos/Line_plot_style_var.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/base/Print/Print_Estilos/Line_plot_style_var.qml -------------------------------------------------------------------------------- /base/Print/Print_Estilos/Nodes_plot_style_var.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/base/Print/Print_Estilos/Nodes_plot_style_var.qml -------------------------------------------------------------------------------- /base/Print/Print_Estilos/Nodes_print_style.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/base/Print/Print_Estilos/Nodes_print_style.qml -------------------------------------------------------------------------------- /base/Print/Print_Estilos/Tramos_print_style.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/base/Print/Print_Estilos/Tramos_print_style.qml -------------------------------------------------------------------------------- /base/collector_prefix_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/base/collector_prefix_dialog.py -------------------------------------------------------------------------------- /base/create_pointLayer_importRaster_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/base/create_pointLayer_importRaster_dialog.py -------------------------------------------------------------------------------- /base/export_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/base/export_dialog.py -------------------------------------------------------------------------------- /base/helper_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/base/helper_functions.py -------------------------------------------------------------------------------- /base/name_segment_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/base/name_segment_dialog.py -------------------------------------------------------------------------------- /base/pendencias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/base/pendencias.py -------------------------------------------------------------------------------- /base/plugin_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/base/plugin_upload.py -------------------------------------------------------------------------------- /base/profundidade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/base/profundidade.py -------------------------------------------------------------------------------- /base/rasterinterpolator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/base/rasterinterpolator.py -------------------------------------------------------------------------------- /base/recobrimento_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/base/recobrimento_dialog.py -------------------------------------------------------------------------------- /base/red_basica.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/base/red_basica.py -------------------------------------------------------------------------------- /base/red_basica_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/base/red_basica_dialog.py -------------------------------------------------------------------------------- /base/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/base/resources.py -------------------------------------------------------------------------------- /base/resources.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/base/resources.qrc -------------------------------------------------------------------------------- /base/resources/collector_prefix_dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/base/resources/collector_prefix_dialog.ui -------------------------------------------------------------------------------- /base/resources/create_pointLayer_importRaster_dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/base/resources/create_pointLayer_importRaster_dialog.ui -------------------------------------------------------------------------------- /base/resources/export_dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/base/resources/export_dialog.ui -------------------------------------------------------------------------------- /base/resources/name_segment_dialog_base.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/base/resources/name_segment_dialog_base.ui -------------------------------------------------------------------------------- /base/resources/naming_dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/base/resources/naming_dialog.ui -------------------------------------------------------------------------------- /base/resources/recobrimento_dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/base/resources/recobrimento_dialog.ui -------------------------------------------------------------------------------- /base/resources/red_basica_dialog_base.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/base/resources/red_basica_dialog_base.ui -------------------------------------------------------------------------------- /base/resources/styles/Blocks_Style.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/base/resources/styles/Blocks_Style.qml -------------------------------------------------------------------------------- /base/resources/styles/Default_nodes_plot_style.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/base/resources/styles/Default_nodes_plot_style.qml -------------------------------------------------------------------------------- /base/resources/styles/Default_nodes_style.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/base/resources/styles/Default_nodes_style.qml -------------------------------------------------------------------------------- /base/resources/styles/NaturalSlopeArrow_Style.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/base/resources/styles/NaturalSlopeArrow_Style.qml -------------------------------------------------------------------------------- /base/resources/styles/RequiredPoints_Style.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/base/resources/styles/RequiredPoints_Style.qml -------------------------------------------------------------------------------- /base/resources/styles/Ret_impres.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/base/resources/styles/Ret_impres.qml -------------------------------------------------------------------------------- /base/resources/styles/Trechos_Plot_Style.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/base/resources/styles/Trechos_Plot_Style.qml -------------------------------------------------------------------------------- /base/resources/styles/default_plot_style.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/base/resources/styles/default_plot_style.qml -------------------------------------------------------------------------------- /base/resources/styles/default_style.qml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/base/resources/styles/default_style.qml -------------------------------------------------------------------------------- /base/resources/swmm_dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/base/resources/swmm_dialog.ui -------------------------------------------------------------------------------- /base/resources/templates/A1_1000.qpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/base/resources/templates/A1_1000.qpt -------------------------------------------------------------------------------- /base/resources/templates/A1_2000.qpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/base/resources/templates/A1_2000.qpt -------------------------------------------------------------------------------- /base/resources/templates/A1_4000.qpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/base/resources/templates/A1_4000.qpt -------------------------------------------------------------------------------- /base/resources/templates/A1_5000.qpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/base/resources/templates/A1_5000.qpt -------------------------------------------------------------------------------- /base/resources/templates/ImprAtlas1.qpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/base/resources/templates/ImprAtlas1.qpt -------------------------------------------------------------------------------- /base/resources/ui_segment_dock.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/base/resources/ui_segment_dock.ui -------------------------------------------------------------------------------- /base/swmm/dialog_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/base/swmm/dialog_ui.py -------------------------------------------------------------------------------- /base/swmm/export_swmm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/base/swmm/export_swmm.py -------------------------------------------------------------------------------- /base/ui_segment_dock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/base/ui_segment_dock.py -------------------------------------------------------------------------------- /i18n/RedBasica_en.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/i18n/RedBasica_en.qm -------------------------------------------------------------------------------- /i18n/RedBasica_en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/i18n/RedBasica_en.ts -------------------------------------------------------------------------------- /i18n/RedBasica_es.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/i18n/RedBasica_es.qm -------------------------------------------------------------------------------- /i18n/RedBasica_es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/i18n/RedBasica_es.ts -------------------------------------------------------------------------------- /i18n/RedBasica_pt.qm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/i18n/RedBasica_pt.qm -------------------------------------------------------------------------------- /i18n/RedBasica_pt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/i18n/RedBasica_pt.ts -------------------------------------------------------------------------------- /i18n/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/i18n/compile.sh -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/icon.png -------------------------------------------------------------------------------- /icons/arrow-down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/icons/arrow-down.png -------------------------------------------------------------------------------- /icons/arrow-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/icons/arrow-right.png -------------------------------------------------------------------------------- /icons/arrow-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/icons/arrow-up.png -------------------------------------------------------------------------------- /icons/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/icons/arrow_down.png -------------------------------------------------------------------------------- /icons/blocks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/icons/blocks.png -------------------------------------------------------------------------------- /icons/blueprint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/icons/blueprint.png -------------------------------------------------------------------------------- /icons/calc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/icons/calc.png -------------------------------------------------------------------------------- /icons/edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/icons/edit.png -------------------------------------------------------------------------------- /icons/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/icons/empty.png -------------------------------------------------------------------------------- /icons/export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/icons/export.png -------------------------------------------------------------------------------- /icons/flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/icons/flow.png -------------------------------------------------------------------------------- /icons/gen-point-layer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/icons/gen-point-layer.png -------------------------------------------------------------------------------- /icons/import-node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/icons/import-node.png -------------------------------------------------------------------------------- /icons/import.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/icons/import.png -------------------------------------------------------------------------------- /icons/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/icons/new.png -------------------------------------------------------------------------------- /icons/nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/icons/nodes.png -------------------------------------------------------------------------------- /icons/pendencias.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/icons/pendencias.png -------------------------------------------------------------------------------- /icons/processing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/icons/processing.png -------------------------------------------------------------------------------- /icons/recobrimento.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/icons/recobrimento.png -------------------------------------------------------------------------------- /icons/refresh-atributes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/icons/refresh-atributes.png -------------------------------------------------------------------------------- /icons/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/icons/settings.png -------------------------------------------------------------------------------- /icons/start-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/icons/start-button.png -------------------------------------------------------------------------------- /icons/style-swap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/icons/style-swap.png -------------------------------------------------------------------------------- /icons/swmm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/icons/swmm.png -------------------------------------------------------------------------------- /icons/validate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/icons/validate.png -------------------------------------------------------------------------------- /metadata.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/metadata.txt -------------------------------------------------------------------------------- /migrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/migrate.py -------------------------------------------------------------------------------- /osgeo4shell.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/osgeo4shell.txt -------------------------------------------------------------------------------- /pb_tool.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/pb_tool.cfg -------------------------------------------------------------------------------- /profile/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/__init__.py -------------------------------------------------------------------------------- /profile/pyqtgraph/GraphicsScene/GraphicsScene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/GraphicsScene/GraphicsScene.py -------------------------------------------------------------------------------- /profile/pyqtgraph/GraphicsScene/__init__.py: -------------------------------------------------------------------------------- 1 | from .GraphicsScene import * 2 | -------------------------------------------------------------------------------- /profile/pyqtgraph/GraphicsScene/exportDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/GraphicsScene/exportDialog.py -------------------------------------------------------------------------------- /profile/pyqtgraph/GraphicsScene/exportDialogTemplate.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/GraphicsScene/exportDialogTemplate.ui -------------------------------------------------------------------------------- /profile/pyqtgraph/GraphicsScene/exportDialogTemplate_generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/GraphicsScene/exportDialogTemplate_generic.py -------------------------------------------------------------------------------- /profile/pyqtgraph/GraphicsScene/mouseEvents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/GraphicsScene/mouseEvents.py -------------------------------------------------------------------------------- /profile/pyqtgraph/PlotData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/PlotData.py -------------------------------------------------------------------------------- /profile/pyqtgraph/Point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/Point.py -------------------------------------------------------------------------------- /profile/pyqtgraph/Qt/QtCore/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /profile/pyqtgraph/Qt/QtCore/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/Qt/QtCore/__init__.pyi -------------------------------------------------------------------------------- /profile/pyqtgraph/Qt/QtGui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /profile/pyqtgraph/Qt/QtGui/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/Qt/QtGui/__init__.pyi -------------------------------------------------------------------------------- /profile/pyqtgraph/Qt/QtSvg.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/Qt/QtSvg.pyi -------------------------------------------------------------------------------- /profile/pyqtgraph/Qt/QtTest.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/Qt/QtTest.pyi -------------------------------------------------------------------------------- /profile/pyqtgraph/Qt/QtWidgets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /profile/pyqtgraph/Qt/QtWidgets/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/Qt/QtWidgets/__init__.pyi -------------------------------------------------------------------------------- /profile/pyqtgraph/Qt/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/Qt/__init__.py -------------------------------------------------------------------------------- /profile/pyqtgraph/Qt/__init__.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/Qt/__init__.pyi -------------------------------------------------------------------------------- /profile/pyqtgraph/Qt/compat/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /profile/pyqtgraph/Qt/internals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/Qt/internals.py -------------------------------------------------------------------------------- /profile/pyqtgraph/SRTTransform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/SRTTransform.py -------------------------------------------------------------------------------- /profile/pyqtgraph/SRTTransform3D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/SRTTransform3D.py -------------------------------------------------------------------------------- /profile/pyqtgraph/SignalProxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/SignalProxy.py -------------------------------------------------------------------------------- /profile/pyqtgraph/ThreadsafeTimer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/ThreadsafeTimer.py -------------------------------------------------------------------------------- /profile/pyqtgraph/Transform3D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/Transform3D.py -------------------------------------------------------------------------------- /profile/pyqtgraph/Vector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/Vector.py -------------------------------------------------------------------------------- /profile/pyqtgraph/WidgetGroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/WidgetGroup.py -------------------------------------------------------------------------------- /profile/pyqtgraph/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/__init__.py -------------------------------------------------------------------------------- /profile/pyqtgraph/canvas/Canvas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/canvas/Canvas.py -------------------------------------------------------------------------------- /profile/pyqtgraph/canvas/CanvasItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/canvas/CanvasItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/canvas/CanvasManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/canvas/CanvasManager.py -------------------------------------------------------------------------------- /profile/pyqtgraph/canvas/CanvasTemplate.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/canvas/CanvasTemplate.ui -------------------------------------------------------------------------------- /profile/pyqtgraph/canvas/CanvasTemplate_generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/canvas/CanvasTemplate_generic.py -------------------------------------------------------------------------------- /profile/pyqtgraph/canvas/TransformGuiTemplate.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/canvas/TransformGuiTemplate.ui -------------------------------------------------------------------------------- /profile/pyqtgraph/canvas/TransformGuiTemplate_generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/canvas/TransformGuiTemplate_generic.py -------------------------------------------------------------------------------- /profile/pyqtgraph/canvas/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/canvas/__init__.py -------------------------------------------------------------------------------- /profile/pyqtgraph/colormap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colormap.py -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CC-BY license - applies to CET color map data.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CC-BY license - applies to CET color map data.txt -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CC0 legal code - applies to virids, magma, plasma, inferno and cividis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CC0 legal code - applies to virids, magma, plasma, inferno and cividis.txt -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-C1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-C1.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-C1s.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-C1s.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-C2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-C2.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-C2s.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-C2s.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-C3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-C3.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-C3s.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-C3s.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-C4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-C4.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-C4s.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-C4s.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-C5.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-C5.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-C5s.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-C5s.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-C6.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-C6.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-C6s.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-C6s.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-C7.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-C7.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-C7s.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-C7s.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-CBC1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-CBC1.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-CBC2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-CBC2.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-CBD1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-CBD1.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-CBL1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-CBL1.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-CBL2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-CBL2.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-CBTC1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-CBTC1.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-CBTC2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-CBTC2.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-CBTD1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-CBTD1.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-CBTL1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-CBTL1.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-CBTL2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-CBTL2.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-D1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-D1.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-D10.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-D10.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-D11.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-D11.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-D12.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-D12.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-D13.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-D13.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-D1A.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-D1A.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-D2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-D2.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-D3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-D3.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-D4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-D4.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-D6.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-D6.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-D7.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-D7.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-D8.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-D8.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-D9.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-D9.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-I1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-I1.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-I2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-I2.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-I3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-I3.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-L1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-L1.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-L10.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-L10.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-L11.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-L11.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-L12.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-L12.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-L13.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-L13.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-L14.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-L14.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-L15.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-L15.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-L16.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-L16.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-L17.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-L17.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-L18.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-L18.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-L19.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-L19.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-L2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-L2.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-L3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-L3.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-L4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-L4.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-L5.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-L5.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-L6.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-L6.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-L7.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-L7.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-L8.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-L8.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-L9.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-L9.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-R1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-R1.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-R2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-R2.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-R3.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-R3.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/CET-R4.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/CET-R4.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/PAL-relaxed.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/PAL-relaxed.hex -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/PAL-relaxed_bright.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/PAL-relaxed_bright.hex -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/cividis.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/cividis.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/inferno.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/inferno.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/magma.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/magma.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/plasma.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/plasma.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/turbo.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/turbo.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/maps/viridis.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/maps/viridis.csv -------------------------------------------------------------------------------- /profile/pyqtgraph/colors/palette.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/colors/palette.py -------------------------------------------------------------------------------- /profile/pyqtgraph/configfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/configfile.py -------------------------------------------------------------------------------- /profile/pyqtgraph/console/CmdInput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/console/CmdInput.py -------------------------------------------------------------------------------- /profile/pyqtgraph/console/Console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/console/Console.py -------------------------------------------------------------------------------- /profile/pyqtgraph/console/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/console/__init__.py -------------------------------------------------------------------------------- /profile/pyqtgraph/console/exception_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/console/exception_widget.py -------------------------------------------------------------------------------- /profile/pyqtgraph/console/repl_widget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/console/repl_widget.py -------------------------------------------------------------------------------- /profile/pyqtgraph/console/stackwidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/console/stackwidget.py -------------------------------------------------------------------------------- /profile/pyqtgraph/debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/debug.py -------------------------------------------------------------------------------- /profile/pyqtgraph/dockarea/Container.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/dockarea/Container.py -------------------------------------------------------------------------------- /profile/pyqtgraph/dockarea/Dock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/dockarea/Dock.py -------------------------------------------------------------------------------- /profile/pyqtgraph/dockarea/DockArea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/dockarea/DockArea.py -------------------------------------------------------------------------------- /profile/pyqtgraph/dockarea/DockDrop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/dockarea/DockDrop.py -------------------------------------------------------------------------------- /profile/pyqtgraph/dockarea/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/dockarea/__init__.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/Arrow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/Arrow.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/AxisItem_label_overlap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/AxisItem_label_overlap.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/BarGraphItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/BarGraphItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/CLIexample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/CLIexample.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/ColorBarItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/ColorBarItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/ColorButton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/ColorButton.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/ColorGradientPlots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/ColorGradientPlots.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/ConsoleWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/ConsoleWidget.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/CustomGraphItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/CustomGraphItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/DataSlicing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/DataSlicing.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/DataTreeWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/DataTreeWidget.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/DateAxisItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/DateAxisItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/DateAxisItem_QtDesigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/DateAxisItem_QtDesigner.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/DateAxisItem_QtDesigner.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/DateAxisItem_QtDesigner.ui -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/DiffTreeWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/DiffTreeWidget.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/Draw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/Draw.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/ErrorBarItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/ErrorBarItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/ExampleApp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/ExampleApp.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/FillBetweenItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/FillBetweenItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/Flowchart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/Flowchart.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/FlowchartCustomNode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/FlowchartCustomNode.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/GLBarGraphItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/GLBarGraphItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/GLGradientLegendItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/GLGradientLegendItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/GLGraphItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/GLGraphItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/GLImageItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/GLImageItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/GLIsosurface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/GLIsosurface.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/GLLinePlotItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/GLLinePlotItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/GLMeshItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/GLMeshItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/GLPainterItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/GLPainterItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/GLScatterPlotItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/GLScatterPlotItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/GLSurfacePlot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/GLSurfacePlot.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/GLTextItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/GLTextItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/GLViewWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/GLViewWidget.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/GLVolumeItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/GLVolumeItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/GLshaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/GLshaders.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/GradientEditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/GradientEditor.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/GradientWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/GradientWidget.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/GraphItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/GraphItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/GraphicsLayout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/GraphicsLayout.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/GraphicsScene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/GraphicsScene.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/HistogramLUT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/HistogramLUT.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/ImageItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/ImageItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/ImageView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/ImageView.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/InfiniteLine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/InfiniteLine.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/InteractiveParameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/InteractiveParameter.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/JoystickButton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/JoystickButton.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/Legend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/Legend.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/LogPlotTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/LogPlotTest.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/MatrixDisplayExample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/MatrixDisplayExample.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/MouseSelection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/MouseSelection.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/MultiDataPlot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/MultiDataPlot.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/MultiPlotSpeedTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/MultiPlotSpeedTest.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/MultiplePlotAxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/MultiplePlotAxes.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/NonUniformImage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/NonUniformImage.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/PColorMeshItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/PColorMeshItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/PanningPlot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/PanningPlot.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/PlotAutoRange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/PlotAutoRange.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/PlotSpeedTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/PlotSpeedTest.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/PlotWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/PlotWidget.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/Plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/Plotting.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/ProgressDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/ProgressDialog.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/ROIExamples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/ROIExamples.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/ROItypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/ROItypes.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/RemoteGraphicsView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/RemoteGraphicsView.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/RemoteSpeedTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/RemoteSpeedTest.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/RunExampleApp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/RunExampleApp.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/ScaleBar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/ScaleBar.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/ScatterPlot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/ScatterPlot.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/ScatterPlotSpeedTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/ScatterPlotSpeedTest.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/ScatterPlotWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/ScatterPlotWidget.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/SimplePlot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/SimplePlot.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/SpinBox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/SpinBox.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/Symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/Symbols.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/TableWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/TableWidget.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/TreeWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/TreeWidget.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/VideoSpeedTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/VideoSpeedTest.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/VideoTemplate.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/VideoTemplate.ui -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/VideoTemplate_generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/VideoTemplate_generic.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/ViewBox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/ViewBox.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/ViewBoxFeatures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/ViewBoxFeatures.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/ViewLimits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/ViewLimits.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/__init__.py: -------------------------------------------------------------------------------- 1 | from .ExampleApp import main as run 2 | -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/__main__.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/_buildParamTypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/_buildParamTypes.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/_paramtreecfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/_paramtreecfg.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/beeswarm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/beeswarm.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/colorMaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/colorMaps.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/colorMapsLinearized.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/colorMapsLinearized.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/console_exception_inspection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/console_exception_inspection.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/contextMenu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/contextMenu.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/crosshair.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/crosshair.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/customGraphicsItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/customGraphicsItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/customPlot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/customPlot.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/cx_freeze/plotTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/cx_freeze/plotTest.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/cx_freeze/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/cx_freeze/setup.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/designerExample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/designerExample.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/designerExample.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/designerExample.ui -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/dockarea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/dockarea.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/exampleLoaderTemplate.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/exampleLoaderTemplate.ui -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/exampleLoaderTemplate_generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/exampleLoaderTemplate_generic.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/fractal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/fractal.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/glow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/glow.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/hdf5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/hdf5.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/histogram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/histogram.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/imageAnalysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/imageAnalysis.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/infiniteline_performance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/infiniteline_performance.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/isocurve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/isocurve.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/jupyter_console_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/jupyter_console_example.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/linkedViews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/linkedViews.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/logAxis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/logAxis.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/multiplePlotSpeedTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/multiplePlotSpeedTest.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/multiprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/multiprocess.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/notebooks/ImageAnalysis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/notebooks/ImageAnalysis.ipynb -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/notebooks/PColorMeshItem.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/notebooks/PColorMeshItem.ipynb -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/notebooks/Plotting.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/notebooks/Plotting.ipynb -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/notebooks/ROIExamples.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/notebooks/ROIExamples.ipynb -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/notebooks/ScatterPlot.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/notebooks/ScatterPlot.ipynb -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/notebooks/simple.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/notebooks/simple.ipynb -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/optics/__init__.py: -------------------------------------------------------------------------------- 1 | from .pyoptic import * 2 | -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/optics/pyoptic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/optics/pyoptic.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/optics/schott_glasses.csv.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/optics/schott_glasses.csv.gz -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/optics_demos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/optics_demos.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/parallelize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/parallelize.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/parametertree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/parametertree.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/py2exe/plotTest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/py2exe/plotTest.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/py2exe/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/py2exe/setup.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/relativity/__init__.py: -------------------------------------------------------------------------------- 1 | from .relativity import * 2 | -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/relativity/presets/Grid Expansion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/relativity/presets/Grid Expansion.cfg -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/relativity/presets/Twin Paradox (grid).cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/relativity/presets/Twin Paradox (grid).cfg -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/relativity/presets/Twin Paradox.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/relativity/presets/Twin Paradox.cfg -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/relativity/relativity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/relativity/relativity.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/relativity_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/relativity_demo.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/scrollingPlots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/scrollingPlots.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/syntax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/syntax.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/template.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/test_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/test_examples.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/text.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/utils.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/verlet_chain/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/verlet_chain/__init__.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/verlet_chain/chain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/verlet_chain/chain.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/verlet_chain/make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/verlet_chain/make -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/verlet_chain/relax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/verlet_chain/relax.c -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/verlet_chain/relax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/verlet_chain/relax.py -------------------------------------------------------------------------------- /profile/pyqtgraph/examples/verlet_chain_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/examples/verlet_chain_demo.py -------------------------------------------------------------------------------- /profile/pyqtgraph/exceptionHandling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/exceptionHandling.py -------------------------------------------------------------------------------- /profile/pyqtgraph/exporters/CSVExporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/exporters/CSVExporter.py -------------------------------------------------------------------------------- /profile/pyqtgraph/exporters/Exporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/exporters/Exporter.py -------------------------------------------------------------------------------- /profile/pyqtgraph/exporters/HDF5Exporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/exporters/HDF5Exporter.py -------------------------------------------------------------------------------- /profile/pyqtgraph/exporters/ImageExporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/exporters/ImageExporter.py -------------------------------------------------------------------------------- /profile/pyqtgraph/exporters/Matplotlib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/exporters/Matplotlib.py -------------------------------------------------------------------------------- /profile/pyqtgraph/exporters/PrintExporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/exporters/PrintExporter.py -------------------------------------------------------------------------------- /profile/pyqtgraph/exporters/SVGExporter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/exporters/SVGExporter.py -------------------------------------------------------------------------------- /profile/pyqtgraph/exporters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/exporters/__init__.py -------------------------------------------------------------------------------- /profile/pyqtgraph/flowchart/Flowchart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/flowchart/Flowchart.py -------------------------------------------------------------------------------- /profile/pyqtgraph/flowchart/FlowchartCtrlTemplate.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/flowchart/FlowchartCtrlTemplate.ui -------------------------------------------------------------------------------- /profile/pyqtgraph/flowchart/FlowchartCtrlTemplate_generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/flowchart/FlowchartCtrlTemplate_generic.py -------------------------------------------------------------------------------- /profile/pyqtgraph/flowchart/FlowchartGraphicsView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/flowchart/FlowchartGraphicsView.py -------------------------------------------------------------------------------- /profile/pyqtgraph/flowchart/Node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/flowchart/Node.py -------------------------------------------------------------------------------- /profile/pyqtgraph/flowchart/NodeLibrary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/flowchart/NodeLibrary.py -------------------------------------------------------------------------------- /profile/pyqtgraph/flowchart/Terminal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/flowchart/Terminal.py -------------------------------------------------------------------------------- /profile/pyqtgraph/flowchart/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/flowchart/__init__.py -------------------------------------------------------------------------------- /profile/pyqtgraph/flowchart/library/Data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/flowchart/library/Data.py -------------------------------------------------------------------------------- /profile/pyqtgraph/flowchart/library/Display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/flowchart/library/Display.py -------------------------------------------------------------------------------- /profile/pyqtgraph/flowchart/library/Filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/flowchart/library/Filters.py -------------------------------------------------------------------------------- /profile/pyqtgraph/flowchart/library/Operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/flowchart/library/Operators.py -------------------------------------------------------------------------------- /profile/pyqtgraph/flowchart/library/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/flowchart/library/__init__.py -------------------------------------------------------------------------------- /profile/pyqtgraph/flowchart/library/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/flowchart/library/common.py -------------------------------------------------------------------------------- /profile/pyqtgraph/flowchart/library/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/flowchart/library/functions.py -------------------------------------------------------------------------------- /profile/pyqtgraph/frozenSupport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/frozenSupport.py -------------------------------------------------------------------------------- /profile/pyqtgraph/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/functions.py -------------------------------------------------------------------------------- /profile/pyqtgraph/functions_numba.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/functions_numba.py -------------------------------------------------------------------------------- /profile/pyqtgraph/functions_qimage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/functions_qimage.py -------------------------------------------------------------------------------- /profile/pyqtgraph/graphicsItems/ArrowItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/graphicsItems/ArrowItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/graphicsItems/AxisItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/graphicsItems/AxisItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/graphicsItems/BarGraphItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/graphicsItems/BarGraphItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/graphicsItems/ButtonItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/graphicsItems/ButtonItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/graphicsItems/ColorBarItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/graphicsItems/ColorBarItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/graphicsItems/CurvePoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/graphicsItems/CurvePoint.py -------------------------------------------------------------------------------- /profile/pyqtgraph/graphicsItems/DateAxisItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/graphicsItems/DateAxisItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/graphicsItems/ErrorBarItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/graphicsItems/ErrorBarItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/graphicsItems/FillBetweenItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/graphicsItems/FillBetweenItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/graphicsItems/GradientEditorItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/graphicsItems/GradientEditorItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/graphicsItems/GradientLegend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/graphicsItems/GradientLegend.py -------------------------------------------------------------------------------- /profile/pyqtgraph/graphicsItems/GradientPresets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/graphicsItems/GradientPresets.py -------------------------------------------------------------------------------- /profile/pyqtgraph/graphicsItems/GraphItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/graphicsItems/GraphItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/graphicsItems/GraphicsItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/graphicsItems/GraphicsItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/graphicsItems/GraphicsLayout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/graphicsItems/GraphicsLayout.py -------------------------------------------------------------------------------- /profile/pyqtgraph/graphicsItems/GraphicsObject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/graphicsItems/GraphicsObject.py -------------------------------------------------------------------------------- /profile/pyqtgraph/graphicsItems/GraphicsWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/graphicsItems/GraphicsWidget.py -------------------------------------------------------------------------------- /profile/pyqtgraph/graphicsItems/GraphicsWidgetAnchor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/graphicsItems/GraphicsWidgetAnchor.py -------------------------------------------------------------------------------- /profile/pyqtgraph/graphicsItems/GridItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/graphicsItems/GridItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/graphicsItems/HistogramLUTItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/graphicsItems/HistogramLUTItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/graphicsItems/ImageItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/graphicsItems/ImageItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/graphicsItems/InfiniteLine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/graphicsItems/InfiniteLine.py -------------------------------------------------------------------------------- /profile/pyqtgraph/graphicsItems/IsocurveItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/graphicsItems/IsocurveItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/graphicsItems/ItemGroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/graphicsItems/ItemGroup.py -------------------------------------------------------------------------------- /profile/pyqtgraph/graphicsItems/LabelItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/graphicsItems/LabelItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/graphicsItems/LegendItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/graphicsItems/LegendItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/graphicsItems/LinearRegionItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/graphicsItems/LinearRegionItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/graphicsItems/MultiPlotItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/graphicsItems/MultiPlotItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/graphicsItems/NonUniformImage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/graphicsItems/NonUniformImage.py -------------------------------------------------------------------------------- /profile/pyqtgraph/graphicsItems/PColorMeshItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/graphicsItems/PColorMeshItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/graphicsItems/PlotCurveItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/graphicsItems/PlotCurveItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/graphicsItems/PlotDataItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/graphicsItems/PlotDataItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/graphicsItems/PlotItem/PlotItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/graphicsItems/PlotItem/PlotItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/graphicsItems/PlotItem/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/graphicsItems/PlotItem/__init__.py -------------------------------------------------------------------------------- /profile/pyqtgraph/graphicsItems/PlotItem/plotConfigTemplate.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/graphicsItems/PlotItem/plotConfigTemplate.ui -------------------------------------------------------------------------------- /profile/pyqtgraph/graphicsItems/PlotItem/plotConfigTemplate_generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/graphicsItems/PlotItem/plotConfigTemplate_generic.py -------------------------------------------------------------------------------- /profile/pyqtgraph/graphicsItems/ROI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/graphicsItems/ROI.py -------------------------------------------------------------------------------- /profile/pyqtgraph/graphicsItems/ScaleBar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/graphicsItems/ScaleBar.py -------------------------------------------------------------------------------- /profile/pyqtgraph/graphicsItems/ScatterPlotItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/graphicsItems/ScatterPlotItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/graphicsItems/TargetItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/graphicsItems/TargetItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/graphicsItems/TextItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/graphicsItems/TextItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/graphicsItems/UIGraphicsItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/graphicsItems/UIGraphicsItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/graphicsItems/VTickGroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/graphicsItems/VTickGroup.py -------------------------------------------------------------------------------- /profile/pyqtgraph/graphicsItems/ViewBox/ViewBox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/graphicsItems/ViewBox/ViewBox.py -------------------------------------------------------------------------------- /profile/pyqtgraph/graphicsItems/ViewBox/ViewBoxMenu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/graphicsItems/ViewBox/ViewBoxMenu.py -------------------------------------------------------------------------------- /profile/pyqtgraph/graphicsItems/ViewBox/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/graphicsItems/ViewBox/__init__.py -------------------------------------------------------------------------------- /profile/pyqtgraph/graphicsItems/ViewBox/axisCtrlTemplate.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/graphicsItems/ViewBox/axisCtrlTemplate.ui -------------------------------------------------------------------------------- /profile/pyqtgraph/graphicsItems/ViewBox/axisCtrlTemplate_generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/graphicsItems/ViewBox/axisCtrlTemplate_generic.py -------------------------------------------------------------------------------- /profile/pyqtgraph/graphicsItems/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/graphicsItems/__init__.py -------------------------------------------------------------------------------- /profile/pyqtgraph/icons/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/icons/__init__.py -------------------------------------------------------------------------------- /profile/pyqtgraph/icons/auto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/icons/auto.png -------------------------------------------------------------------------------- /profile/pyqtgraph/icons/ctrl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/icons/ctrl.png -------------------------------------------------------------------------------- /profile/pyqtgraph/icons/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/icons/default.png -------------------------------------------------------------------------------- /profile/pyqtgraph/icons/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/icons/icons.svg -------------------------------------------------------------------------------- /profile/pyqtgraph/icons/invisibleEye.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/icons/invisibleEye.svg -------------------------------------------------------------------------------- /profile/pyqtgraph/icons/lock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/icons/lock.png -------------------------------------------------------------------------------- /profile/pyqtgraph/icons/peegee/peegee.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/icons/peegee/peegee.svg -------------------------------------------------------------------------------- /profile/pyqtgraph/icons/peegee/peegee_128px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/icons/peegee/peegee_128px.png -------------------------------------------------------------------------------- /profile/pyqtgraph/icons/peegee/peegee_128px@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/icons/peegee/peegee_128px@2x.png -------------------------------------------------------------------------------- /profile/pyqtgraph/icons/peegee/peegee_192px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/icons/peegee/peegee_192px.png -------------------------------------------------------------------------------- /profile/pyqtgraph/icons/peegee/peegee_256px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/icons/peegee/peegee_256px.png -------------------------------------------------------------------------------- /profile/pyqtgraph/icons/peegee/peegee_256px@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/icons/peegee/peegee_256px@2x.png -------------------------------------------------------------------------------- /profile/pyqtgraph/icons/peegee/peegee_512px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/icons/peegee/peegee_512px.png -------------------------------------------------------------------------------- /profile/pyqtgraph/icons/peegee/peegee_512px@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/icons/peegee/peegee_512px@2x.png -------------------------------------------------------------------------------- /profile/pyqtgraph/imageview/ImageView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/imageview/ImageView.py -------------------------------------------------------------------------------- /profile/pyqtgraph/imageview/ImageViewTemplate.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/imageview/ImageViewTemplate.ui -------------------------------------------------------------------------------- /profile/pyqtgraph/imageview/ImageViewTemplate_generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/imageview/ImageViewTemplate_generic.py -------------------------------------------------------------------------------- /profile/pyqtgraph/imageview/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/imageview/__init__.py -------------------------------------------------------------------------------- /profile/pyqtgraph/jupyter/GraphicsView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/jupyter/GraphicsView.py -------------------------------------------------------------------------------- /profile/pyqtgraph/jupyter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/jupyter/__init__.py -------------------------------------------------------------------------------- /profile/pyqtgraph/metaarray/MetaArray.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/metaarray/MetaArray.py -------------------------------------------------------------------------------- /profile/pyqtgraph/metaarray/__init__.py: -------------------------------------------------------------------------------- 1 | from .MetaArray import * 2 | -------------------------------------------------------------------------------- /profile/pyqtgraph/metaarray/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/metaarray/license.txt -------------------------------------------------------------------------------- /profile/pyqtgraph/metaarray/readMeta.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/metaarray/readMeta.m -------------------------------------------------------------------------------- /profile/pyqtgraph/multiprocess/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/multiprocess/__init__.py -------------------------------------------------------------------------------- /profile/pyqtgraph/multiprocess/bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/multiprocess/bootstrap.py -------------------------------------------------------------------------------- /profile/pyqtgraph/multiprocess/parallelizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/multiprocess/parallelizer.py -------------------------------------------------------------------------------- /profile/pyqtgraph/multiprocess/processes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/multiprocess/processes.py -------------------------------------------------------------------------------- /profile/pyqtgraph/multiprocess/remoteproxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/multiprocess/remoteproxy.py -------------------------------------------------------------------------------- /profile/pyqtgraph/opengl/GLGraphicsItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/opengl/GLGraphicsItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/opengl/GLViewWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/opengl/GLViewWidget.py -------------------------------------------------------------------------------- /profile/pyqtgraph/opengl/MeshData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/opengl/MeshData.py -------------------------------------------------------------------------------- /profile/pyqtgraph/opengl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/opengl/__init__.py -------------------------------------------------------------------------------- /profile/pyqtgraph/opengl/items/GLAxisItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/opengl/items/GLAxisItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/opengl/items/GLBarGraphItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/opengl/items/GLBarGraphItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/opengl/items/GLBoxItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/opengl/items/GLBoxItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/opengl/items/GLGradientLegendItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/opengl/items/GLGradientLegendItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/opengl/items/GLGraphItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/opengl/items/GLGraphItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/opengl/items/GLGridItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/opengl/items/GLGridItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/opengl/items/GLImageItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/opengl/items/GLImageItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/opengl/items/GLLinePlotItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/opengl/items/GLLinePlotItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/opengl/items/GLMeshItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/opengl/items/GLMeshItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/opengl/items/GLScatterPlotItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/opengl/items/GLScatterPlotItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/opengl/items/GLSurfacePlotItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/opengl/items/GLSurfacePlotItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/opengl/items/GLTextItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/opengl/items/GLTextItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/opengl/items/GLVolumeItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/opengl/items/GLVolumeItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/opengl/items/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /profile/pyqtgraph/opengl/shaders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/opengl/shaders.py -------------------------------------------------------------------------------- /profile/pyqtgraph/parametertree/Parameter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/parametertree/Parameter.py -------------------------------------------------------------------------------- /profile/pyqtgraph/parametertree/ParameterItem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/parametertree/ParameterItem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/parametertree/ParameterSystem.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/parametertree/ParameterSystem.py -------------------------------------------------------------------------------- /profile/pyqtgraph/parametertree/ParameterTree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/parametertree/ParameterTree.py -------------------------------------------------------------------------------- /profile/pyqtgraph/parametertree/SystemSolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/parametertree/SystemSolver.py -------------------------------------------------------------------------------- /profile/pyqtgraph/parametertree/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/parametertree/__init__.py -------------------------------------------------------------------------------- /profile/pyqtgraph/parametertree/interactive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/parametertree/interactive.py -------------------------------------------------------------------------------- /profile/pyqtgraph/parametertree/parameterTypes/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/parametertree/parameterTypes/__init__.py -------------------------------------------------------------------------------- /profile/pyqtgraph/parametertree/parameterTypes/action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/parametertree/parameterTypes/action.py -------------------------------------------------------------------------------- /profile/pyqtgraph/parametertree/parameterTypes/actiongroup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/parametertree/parameterTypes/actiongroup.py -------------------------------------------------------------------------------- /profile/pyqtgraph/parametertree/parameterTypes/basetypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/parametertree/parameterTypes/basetypes.py -------------------------------------------------------------------------------- /profile/pyqtgraph/parametertree/parameterTypes/bool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/parametertree/parameterTypes/bool.py -------------------------------------------------------------------------------- /profile/pyqtgraph/parametertree/parameterTypes/calendar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/parametertree/parameterTypes/calendar.py -------------------------------------------------------------------------------- /profile/pyqtgraph/parametertree/parameterTypes/checklist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/parametertree/parameterTypes/checklist.py -------------------------------------------------------------------------------- /profile/pyqtgraph/parametertree/parameterTypes/color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/parametertree/parameterTypes/color.py -------------------------------------------------------------------------------- /profile/pyqtgraph/parametertree/parameterTypes/colormap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/parametertree/parameterTypes/colormap.py -------------------------------------------------------------------------------- /profile/pyqtgraph/parametertree/parameterTypes/colormaplut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/parametertree/parameterTypes/colormaplut.py -------------------------------------------------------------------------------- /profile/pyqtgraph/parametertree/parameterTypes/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/parametertree/parameterTypes/file.py -------------------------------------------------------------------------------- /profile/pyqtgraph/parametertree/parameterTypes/font.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/parametertree/parameterTypes/font.py -------------------------------------------------------------------------------- /profile/pyqtgraph/parametertree/parameterTypes/list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/parametertree/parameterTypes/list.py -------------------------------------------------------------------------------- /profile/pyqtgraph/parametertree/parameterTypes/numeric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/parametertree/parameterTypes/numeric.py -------------------------------------------------------------------------------- /profile/pyqtgraph/parametertree/parameterTypes/pen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/parametertree/parameterTypes/pen.py -------------------------------------------------------------------------------- /profile/pyqtgraph/parametertree/parameterTypes/progress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/parametertree/parameterTypes/progress.py -------------------------------------------------------------------------------- /profile/pyqtgraph/parametertree/parameterTypes/qtenum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/parametertree/parameterTypes/qtenum.py -------------------------------------------------------------------------------- /profile/pyqtgraph/parametertree/parameterTypes/slider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/parametertree/parameterTypes/slider.py -------------------------------------------------------------------------------- /profile/pyqtgraph/parametertree/parameterTypes/str.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/parametertree/parameterTypes/str.py -------------------------------------------------------------------------------- /profile/pyqtgraph/parametertree/parameterTypes/text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/parametertree/parameterTypes/text.py -------------------------------------------------------------------------------- /profile/pyqtgraph/reload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/reload.py -------------------------------------------------------------------------------- /profile/pyqtgraph/units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/units.py -------------------------------------------------------------------------------- /profile/pyqtgraph/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /profile/pyqtgraph/util/colorama/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/util/colorama/LICENSE.txt -------------------------------------------------------------------------------- /profile/pyqtgraph/util/colorama/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/util/colorama/README.txt -------------------------------------------------------------------------------- /profile/pyqtgraph/util/colorama/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /profile/pyqtgraph/util/colorama/win32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/util/colorama/win32.py -------------------------------------------------------------------------------- /profile/pyqtgraph/util/colorama/winterm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/util/colorama/winterm.py -------------------------------------------------------------------------------- /profile/pyqtgraph/util/cprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/util/cprint.py -------------------------------------------------------------------------------- /profile/pyqtgraph/util/cupy_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/util/cupy_helper.py -------------------------------------------------------------------------------- /profile/pyqtgraph/util/garbage_collector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/util/garbage_collector.py -------------------------------------------------------------------------------- /profile/pyqtgraph/util/get_resolution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/util/get_resolution.py -------------------------------------------------------------------------------- /profile/pyqtgraph/util/glinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/util/glinfo.py -------------------------------------------------------------------------------- /profile/pyqtgraph/util/mutex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/util/mutex.py -------------------------------------------------------------------------------- /profile/pyqtgraph/util/numba_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/util/numba_helper.py -------------------------------------------------------------------------------- /profile/pyqtgraph/widgets/BusyCursor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/widgets/BusyCursor.py -------------------------------------------------------------------------------- /profile/pyqtgraph/widgets/CheckTable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/widgets/CheckTable.py -------------------------------------------------------------------------------- /profile/pyqtgraph/widgets/ColorButton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/widgets/ColorButton.py -------------------------------------------------------------------------------- /profile/pyqtgraph/widgets/ColorMapButton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/widgets/ColorMapButton.py -------------------------------------------------------------------------------- /profile/pyqtgraph/widgets/ColorMapMenu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/widgets/ColorMapMenu.py -------------------------------------------------------------------------------- /profile/pyqtgraph/widgets/ColorMapWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/widgets/ColorMapWidget.py -------------------------------------------------------------------------------- /profile/pyqtgraph/widgets/ComboBox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/widgets/ComboBox.py -------------------------------------------------------------------------------- /profile/pyqtgraph/widgets/DataFilterWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/widgets/DataFilterWidget.py -------------------------------------------------------------------------------- /profile/pyqtgraph/widgets/DataTreeWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/widgets/DataTreeWidget.py -------------------------------------------------------------------------------- /profile/pyqtgraph/widgets/DiffTreeWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/widgets/DiffTreeWidget.py -------------------------------------------------------------------------------- /profile/pyqtgraph/widgets/FeedbackButton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/widgets/FeedbackButton.py -------------------------------------------------------------------------------- /profile/pyqtgraph/widgets/FileDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/widgets/FileDialog.py -------------------------------------------------------------------------------- /profile/pyqtgraph/widgets/GradientWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/widgets/GradientWidget.py -------------------------------------------------------------------------------- /profile/pyqtgraph/widgets/GraphicsLayoutWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/widgets/GraphicsLayoutWidget.py -------------------------------------------------------------------------------- /profile/pyqtgraph/widgets/GraphicsView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/widgets/GraphicsView.py -------------------------------------------------------------------------------- /profile/pyqtgraph/widgets/GroupBox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/widgets/GroupBox.py -------------------------------------------------------------------------------- /profile/pyqtgraph/widgets/HistogramLUTWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/widgets/HistogramLUTWidget.py -------------------------------------------------------------------------------- /profile/pyqtgraph/widgets/JoystickButton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/widgets/JoystickButton.py -------------------------------------------------------------------------------- /profile/pyqtgraph/widgets/LayoutWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/widgets/LayoutWidget.py -------------------------------------------------------------------------------- /profile/pyqtgraph/widgets/MatplotlibWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/widgets/MatplotlibWidget.py -------------------------------------------------------------------------------- /profile/pyqtgraph/widgets/MultiPlotWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/widgets/MultiPlotWidget.py -------------------------------------------------------------------------------- /profile/pyqtgraph/widgets/PathButton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/widgets/PathButton.py -------------------------------------------------------------------------------- /profile/pyqtgraph/widgets/PenPreviewLabel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/widgets/PenPreviewLabel.py -------------------------------------------------------------------------------- /profile/pyqtgraph/widgets/PlotWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/widgets/PlotWidget.py -------------------------------------------------------------------------------- /profile/pyqtgraph/widgets/ProgressDialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/widgets/ProgressDialog.py -------------------------------------------------------------------------------- /profile/pyqtgraph/widgets/RawImageWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/widgets/RawImageWidget.py -------------------------------------------------------------------------------- /profile/pyqtgraph/widgets/RemoteGraphicsView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/widgets/RemoteGraphicsView.py -------------------------------------------------------------------------------- /profile/pyqtgraph/widgets/ScatterPlotWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/widgets/ScatterPlotWidget.py -------------------------------------------------------------------------------- /profile/pyqtgraph/widgets/SpinBox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/widgets/SpinBox.py -------------------------------------------------------------------------------- /profile/pyqtgraph/widgets/TableWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/widgets/TableWidget.py -------------------------------------------------------------------------------- /profile/pyqtgraph/widgets/TreeWidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/widgets/TreeWidget.py -------------------------------------------------------------------------------- /profile/pyqtgraph/widgets/ValueLabel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/widgets/ValueLabel.py -------------------------------------------------------------------------------- /profile/pyqtgraph/widgets/VerticalLabel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/pyqtgraph/widgets/VerticalLabel.py -------------------------------------------------------------------------------- /profile/pyqtgraph/widgets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /profile/resources/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/resources/compile.sh -------------------------------------------------------------------------------- /profile/resources/profile_widget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/resources/profile_widget.ui -------------------------------------------------------------------------------- /profile/utils/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/utils/helpers.py -------------------------------------------------------------------------------- /profile/utils/vLayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/utils/vLayer.py -------------------------------------------------------------------------------- /profile/views/MainView.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/views/MainView.py -------------------------------------------------------------------------------- /profile/views/ui/ProfileWidgetUi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/profile/views/ui/ProfileWidgetUi.py -------------------------------------------------------------------------------- /pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/pylintrc -------------------------------------------------------------------------------- /saniBID_RedBasica_Dimensioning_Spreadsheet_EN_vAug24.xlsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/saniBID_RedBasica_Dimensioning_Spreadsheet_EN_vAug24.xlsm -------------------------------------------------------------------------------- /saniBID_RedBasica_Hoja_Calculo_ES_vAgo24.xlsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/saniBID_RedBasica_Hoja_Calculo_ES_vAgo24.xlsm -------------------------------------------------------------------------------- /saniBID_RedBasica_Planilha_Dimensionamento_PT_vAgo24.xlsm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EL-BID/red_basica/HEAD/saniBID_RedBasica_Planilha_Dimensionamento_PT_vAgo24.xlsm --------------------------------------------------------------------------------