ivoflipse / Pawlabeling

Tool for processing and analyzing pressure measurements
Other
18 stars 1 forks source link

Provide the users with a lists of brands and models #88

Closed ivoflipse closed 10 years ago

ivoflipse commented 10 years ago

The user can set his plate in settings.ini, but unless you know the 'code' I use, its not much help. So it would be helpful if they could find these somewhere simple or set it through Settings

ivoflipse commented 10 years ago
[
            {"brand": "rsscan",
             "model": "0.5m 2nd gen",
             "number_of_rows": 64,
             "number_of_columns": 63,
             "sensor_width": 0.508,
             "sensor_height": 0.762,
             "sensor_surface": 0.387096
            },
            {"brand": "rsscan",
             "model": "1m 2nd gen",
             "number_of_rows": 128,
             "number_of_columns": 63,
             "sensor_width": 0.508,
             "sensor_height": 0.762,
             "sensor_surface": 0.387096
            },
            {"brand": "rsscan",
             "model": "2m 2nd gen",
             "number_of_rows": 256,
             "number_of_columns": 63,
             "sensor_width": 0.508,
             "sensor_height": 0.762,
             "sensor_surface": 0.387096
            },
            {"brand": "rsscan",
             "model": "0.5m USB",
             "number_of_rows": 64,
             "number_of_columns": 63,
             "sensor_width": 0.508,
             "sensor_height": 0.762,
             "sensor_surface": 0.387096
            },
            {"brand": "rsscan",
             "model": "1m USB",
             "number_of_rows": 128,
             "number_of_columns": 63,
             "sensor_width": 0.508,
             "sensor_height": 0.762,
             "sensor_surface": 0.387096
            },
            {"brand": "rsscan",
             "model": "1.5m USB",
             "number_of_rows": 192,
             "number_of_columns": 63,
             "sensor_width": 0.508,
             "sensor_height": 0.762,
             "sensor_surface": 0.387096
            },
            {"brand": "zebris",
             "model": "FDM 1m",
             "number_of_rows": 176,
             "number_of_columns": 64,
             "sensor_width": 0.846,
             "sensor_height": 0.846,
             "sensor_surface": 0.715716
            },
            {"brand": "zebris",
             "model": "FDM 1.5m",
             "number_of_rows": 240,
             "number_of_columns": 64,
             "sensor_width": 0.846,
             "sensor_height": 0.846,
             "sensor_surface": 0.715716
            },
            {"brand": "zebris",
             "model": "FDM 2m",
             "number_of_rows": 352,
             "number_of_columns": 64,
             "sensor_width": 0.846,
             "sensor_height": 0.846,
             "sensor_surface": 0.715716
            },
            {"brand": "novel",
             "model": "emed",
             "number_of_rows": 256,
             "number_of_columns": 256,
             "sensor_width": 0.5,
             "sensor_height": 0.5,
             "sensor_surface": 0.25
            },
            {"brand": "novel",
             "model": "emed-a50",
             "number_of_rows": 55,
             "number_of_columns": 32,
             "sensor_width": 0.7,
             "sensor_height": 0.7,
             "sensor_surface": 0.49
            },
            {"brand": "novel",
             "model": "emed-c50",
             "number_of_rows": 79,
             "number_of_columns": 48,
             "sensor_width": 0.5,
             "sensor_height": 0.5,
             "sensor_surface": 0.25
            },
            {"brand": "novel",
             "model": "emed-n50",
             "number_of_rows": 95,
             "number_of_columns": 64,
             "sensor_width": 0.5,
             "sensor_height": 0.5,
             "sensor_surface": 0.25
            },
            {"brand": "novel",
             "model": "emed-q100",
             "number_of_rows": 95,
             "number_of_columns": 64,
             "sensor_width": 0.5,
             "sensor_height": 0.5,
             "sensor_surface": 0.25
            },
            {"brand": "novel",
             "model": "emed-x400",
             "number_of_rows": 95,
             "number_of_columns": 64,
             "sensor_width": 0.5,
             "sensor_height": 0.5,
             "sensor_surface": 0.25
            }
        ]

Here's the dictionary of plate/brands/models. Note that Tekscan is missing (I have no clue what systems they have) and I haven't tried importing a Novel measurement yet (I don't have a measurement either).

ivoflipse commented 10 years ago

You can now pick a plate from the settings and it should update the measurement_widget as well

image