Jump to content

Banner.jpg.b89429c566825f6ab32bcafbada449c9.jpg

Gina

Beyond the Event Horizon
  • Posts

    45,326
  • Joined

  • Last visited

  • Days Won

    120

Posts posted by Gina

  1. I'm calling this Dual and Triple Rigs because I plan to make a triple imaging rig with three ASI 1600MM-Cool cameras and Astrodon 3nm filters with three vintage film SLR lenses of very high quality. However, I only have two cameras at present so I shall start with a dual imaging rig but with provision for easy upgrade later.

    As I mentioned in the DSO Imaging forum, I'm planning a mosaic project covering the Milky Way in NB.  This requires that the cameras can be rotated in unison to line up the mosaic panels.  My plan is to rotate the cameras using gears and stepper motor controlled by the electronics (using a special INDI driver).

    The first 3 screenshots show a CAD model of the triple imaging rig.  Two of the main assembly and one of the frame or bracket.

    643891466_Screenshotfrom2020-12-1916-28-45.png.b396ca8870945b88b10fd3c1976b9730.png

    914223798_Screenshotfrom2020-12-1916-53-00.png.e12f9f483a24af2fa423e1de2d9f2cb5.png

    114123631_Screenshotfrom2020-12-1920-43-23.png.aff93144b8208f3589875776e878ec92.png

    There are a few problems with 3D printing this frame so I have split it into two with each half individually bolted to the Losmandy type dovetail bar. 

    The next screenshots show a partial assembly on the dovetail bar and one side in the S3D slicer.  

    976512565_Screenshotfrom2020-12-2014-36-56.png.1651c47b3bf6b3c6c09644a394905b1a.png

    750827425_Screenshotfrom2020-12-2014-38-12.png.af16082a43280b5b84d2cb1f72e653b4.png

    993203284_Screenshotfrom2020-12-2013-06-14.thumb.png.93b2b7d8b662128f75918de7f83abdba.png

    • Like 8
  2. The sky was such that I was able to image the Orion area a few nights ago and here are some results.  The FoV doesn't match that for the mosaic as I didn't have remote camera rotation nor had decided how the mosaic would be built up at that time.  I'm not totally satisfied with the results - I think the OIII was overexposed.

    Here are some image stacks resulting from processing a couple of hours of Ha and OIII together with a simple colour combination.  Processed in PixInsight.

    654634890_Screenshotfrom2020-12-2420-17-55.png.0de59136c11a142b7705fdc1b0b1ea0b.png

    1780409932_Screenshotfrom2020-12-2420-31-24.png.7230bea2c7ed0c1fd9fb161855f43359.png

    2030338429_OrionBicolourInterim.jpg.c7f433fd95370e3250beab3a59ea7ec0.jpg

    • Like 1
  3. One of the problems of making mosaics is that the camera needs rotating from one panel to the next if the panels are going to follow on neatly.  This first panel is with the cameras at -45°.  The next panel above it needs turning to 0°.  This FoV is shown in the next screenshot.  To provide this I shall be making a dual imaging rig with remote camera rotation.  This will be the subject of another thread.

    278334189_Screenshotfrom2020-12-2721-34-28.png.2142701b4440e66fb6a4677e322ea486.png

  4. Using 28mm f3.5 lenses on ASI 1600MM0Cool cameras and Astrodon 3nm filters I am starting a project to cover the Milky Way in a mosaic of something like 6 panels.  Each panel will have a FoV of 36x27 degrees. I shall be taking Ha and OIII wavelengths to start with and may go on to add SII later.

    This is Cygnus & Cepheus in Ha and OIII and a couple of bicolour versions.

    56426641_Screenshotfrom2020-12-2415-11-34.png.284d3882cefcf9f39a9e16a57e85a1ee.png 

    1360344092_Screenshotfrom2020-12-2415-22-41.png.06ab17f1ff451d9dde27021f0290058d.png 

    2065901981_Screenshotfrom2020-12-2417-05-52.png.465fb31d5e495b1285fa7d629920f831.png 

    960966831_Screenshotfrom2020-12-2417-08-05.png.85245ad692e1e252d6182dcbc50120da.png

    • Like 20
  5. char chDT[16];
    void showLocalTime()
      {
      struct tm timeinfo;
      if(!getLocalTime(&timeinfo)){
        myDT = "Failed to obtain time";
        return;}
        else {
          year = timeinfo.tm_year + 1900;
          month = timeinfo.tm_mon + 1;
          day = timeinfo.tm_mday;
          hour = timeinfo.tm_hour;
          minute = timeinfo.tm_min;
          myDT = "";
          myDT += year;
          myDT += "-";
          if (month < 10) {myDT += "0";}
          myDT += month;
          myDT += "-";
          if (day < 10) {myDT += "0";}
          myDT += day;
          myDT += "  ";
          if (hour < 10) {myDT += "0";}
          myDT += hour;
          myDT += ":";
          if (minute < 10) {myDT += "0";}
          myDT += minute;
          }
        myDT.toCharArray(chDT, 16);
      }

    Then something like

      client.publish("local/datetime", chDT);

     

  6. I'm thinking of getting the time from ntpServer

    const char* ntpServer = "pool.ntp.org";
    const long  gmtOffset_sec = 0;
    const int   daylightOffset_sec = 3600;
    void showLocalTime()
      {
      struct tm timeinfo;
      if(!getLocalTime(&timeinfo)){
        myDT = "Failed to obtain time";
        return;}
        else {
          year = timeinfo.tm_year + 1900;
          month = timeinfo.tm_mon + 1;
          day = timeinfo.tm_mday;
          hour = timeinfo.tm_hour;
          minute = timeinfo.tm_min;
          myDT = "";
          myDT += year;
          myDT += "-";
          if (month < 10) {myDT += "0";}
          myDT += month;
          myDT += "-";
          if (day < 10) {myDT += "0";}
          myDT += day;
          myDT += "  ";
          if (hour < 10) {myDT += "0";}
          myDT += hour;
          myDT += ":";
          if (minute < 10) {myDT += "0";}
          myDT += minute;
          }
      }

     

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. By using this site, you agree to our Terms of Use.