Skip to content

Commit

Permalink
Merge pull request #1062 from aaronwmorris/dev
Browse files Browse the repository at this point in the history
more cameras for simulator
  • Loading branch information
aaronwmorris committed Dec 14, 2023
2 parents f99dc51 + 1c87b7c commit b98abb1
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 3 deletions.
13 changes: 11 additions & 2 deletions indi_allsky/flask/forms.py
Original file line number Diff line number Diff line change
Expand Up @@ -3606,12 +3606,12 @@ class IndiAllskyImageProcessingForm(FlaskForm):
class IndiAllskyCameraSimulatorForm(FlaskForm):
SENSOR_SELECT_choices = (
('imx477', 'IMX477 - HQ Camera'),
('imx378', 'IMX378'),
('imx178', 'IMX178'),
('imx678', 'IMX678'),
('asi120', 'ASI120'),
('asi220', 'ASI220'),
('sc2210', 'SC2210 - ASI220'),
('imx224', 'IMX224'),
('imx378', 'IMX378'),
('imx708', 'IMX708 - Camera Module 3'),
('imx462', 'IMX462'),
('imx290', 'IMX290'),
Expand All @@ -3624,10 +3624,19 @@ class IndiAllskyCameraSimulatorForm(FlaskForm):
('imx662', 'IMX662'),
('imx715', 'IMX715'),
('imx174', 'IMX174'),
('imx230', 'IMX230'),
('ar0234', 'AR0234 - Global Shutter'),
('imx429', 'IMX429 - POA Apollo-M MINI'),
('imx432', 'IMX432'),
('imx482', 'IMX482'),
('imx485', 'IMX485'),
('imx585', 'IMX585'),
('imx664', 'IMX664 - POA Neptune 664C'),
('imx464', 'IMX464 - POA Neptune-C II'),
('imx287', 'IMX287'),
('imx307', 'IMX307 - SV105C'),
('imx415', 'IMX415 - SV205C'),
('imx249', 'IMX249 - POA Xena-M'),
('imx183', 'IMX183'),
('imx533', 'IMX533'),
('imx294', 'IMX294'),
Expand Down
47 changes: 46 additions & 1 deletion indi_allsky/flask/templates/camera_simulator.html
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
'h' : 960,
'p' : 3.75,
},
'asi220' : {
'sc2210' : {
'w' : 1920,
'h' : 1080,
'p' : 4,
Expand Down Expand Up @@ -160,6 +160,51 @@
'h' : 2822,
'p' : 4.63,
},
'imx664' : {
'w' : 2704,
'h' : 1540,
'p' : 2.9,
},
'imx464' : {
'w' : 2712,
'h' : 1538,
'p' : 2.9,
},
'imx287' : {
'w' : 728,
'h' : 544,
'p' : 6.9,
},
'imx307' : {
'w' : 1920,
'h' : 1080,
'p' : 2.9,
},
'imx415' : {
'w' : 3264,
'h' : 2160,
'p' : 1.45,
},
'imx249' : {
'w' : 1936,
'h' : 1216,
'p' : 5.86,
},
'imx429' : {
'w' : 1944,
'h' : 1472,
'p' : 4.5,
},
'imx230' : {
'w' : 5344,
'h' : 4012,
'p' : 2.4,
},
'ar0234' : {
'w' : 1920,
'h' : 1200,
'p' : 3,
},
};
</script>
{% endblock %}
Expand Down

0 comments on commit b98abb1

Please sign in to comment.