Jump to content

SkySurveyBanner.jpg.21855908fce40597655603b6c9af720d.jpg

jiberjaber

Members
  • Posts

    541
  • Joined

  • Last visited

Everything posted by jiberjaber

  1. Cracking captures, I'm in the middle of a 4 part mosaic of similar but slightly less FoV, I do like the better context your FoV gives ! 👍
  2. If you haven't already I would be worth marking up the park position and polar alignment position using a ruler and fine sharpie (you can rub it off later if you get it wrong or don't like the look ) Also worth checking your Alt/Az 90 degrees corresponds to being actually at 90 degrees and using the clutch to ensure it does plus resetting the park to that known position. There's a guide to doing so here: https://worcspaul.wordpress.com/2011/06/14/accurately-setting-the-“home”-or-“park”-position-on-a-skywatcher-eq5-pro-mount/
  3. I'm not familiar with that camera, but if you are not guiding 600s might be a step too far! It's such a long time ago since I did imaging just tracked with the scope. I have recently been doing 2min subs on an iOptron SkyGuider without a guide camera. Best some test exposures and see how far you can stretch the exposure time before you suffer from star elongation - you can do these tests from a Bortel 8 location I expect as its just about the exposure time and stars rather than capturing actual content which might save you a trip. In PI the sub frame selector process is quite good for seeing how the eccentricity of the stars in an image is..... You'll only need the one set of bias frames I'd expect and you can reuse them - I think there's probably a trick here about maximising imaging time and avoiding using it up with the calibration frames
  4. Wow - a lot to unpack in that! Have you looked at the NAN in any software relative to your FoV ? I know on my 80ED it's a 4 panel mosaic to fit it all in, 120 will be less FoV You don't mention if you are guided or not, if you are guided you might be able to try for a longer exposure time but if 300s is working for you with the filter already then just take lots of exposures Best best is to try it out and see what it looks like I tend to run 600s subs others a successful with 900s subs. Key thing is to remember you will benefit greatly from a suitable master dark and flats when it comes to processing them. You can do the Darks later but don't forget to do the flats at the same focus and camera orientation - so often easier to do either straight after the imaging run or before if you are happy with focus and camera orientation. Your assumption about how to combine in PI is correct, stack the two sets of image types separately then combine You don't mention which camera but I am guessing it might be a DSLR? This might be worth a look to confirm FoV: http://astronomy.tools/calculators/field_of_view/?fov[]=136||104||0.8|1|0&messier=20 (You'll need to search for NGC7000 in the objects to add it as it wouldn't share the URL with it in ) Hope you get clear skies
  5. How many frames make up the bias you are comparing with the super-bias? I think I made my super-bias out of about 300 frames and I don't recall there being much difference other than progression of what could already be seen.
  6. No - turn them off else you'll be there for ages whilst the camera duplicates the exposure to try and make a dark frame and internally process that. Better to do that where you have more control on a PC
  7. Wow - puts my 5 panel to shame! That's some dedication Well done.
  8. The ESP has a storage drive on it which you can use and reference in your web pages, you could store an icon on there or reference a png on the net somewhere in the html?
  9. re: Software interrupt: I just use millis and a variable to store them in, then compare with a fixed time and if try, do what's needed and reset the variable to the current millis() It's basically the foundation of my wxstn code, eg: // 5 Second task interval if ( (millis() - count5sec) >= 5000) { Tasks5s(); count5sec = millis(); } (dont forget to init count5sec in the setup() and also define it, eg: unsigned long count5sec; ) Using these I have a 5s, 60s, 30m and 60m 'interrupt' in which I do things - I use a function to wrap them up and put them in a tab in the Arduino IDE to make it a bit more neater, but that's just personal preference...
  10. Yep - it's a Object type in the rtclib - I'd avoid it incase you do decide to use an RTC later as it will clash (it's sort of the same as type time_t within time.h iirc)
  11. You could probably do all that with a Raspberry PI and Ekos/Indi (which is almost what the ASIAir is anyway!). If you've got a Raspberry PI kicking around it's quite easy to try it out. Take a look at Astroberry as a starter. https://www.astroberry.io/ I used to run my mount, guide cam and DSLR (Nikon) on mine and now its running most of the same but the DSLR is replaced with a focuser, filter wheel and ASI1600
  12. Isn't DateTime an already defined class?? , to put it another way, are you trying to use a variable that already exists as a reserved for an object definition in Arduino?
  13. I think I found with my RTC I also needed to run a software clock as there isn't an actual RTC exposed in the ESP (their version of an RTC is just a timer), this may have changed over time as the ESP libs improved within Arduino. I sync the RTC with NTP on every boot which has an aggressive start then backs off to only sync every 'few' hours (you don't always get a NTP reply on the first attempt, few = log time but I forget how long lol ) I use the Adafruit RTCLib.h with a DS3231 which I think is the same as the example you've got.
  14. Dave, it the intervalometer is like that in my D7500 you will not have a bulb mode and be limited to 30s max exposure ? Worth checking - other handy thing is the intervalometer can act as a remote wired trigger so you can take a shot without touching the camera and avoiding shake. If I were buying now I would look for one that at least gives a battery gauge on it and also has a rapid incremental function, holding down a button to get from 100 to 10 takes quite a while on mine (eg changing from 100 shots to 10 shots) Though I don't think I've seen these features on a quick recent search. This is the one I've got https://www.amazon.co.uk/RGBS-Shutter-Release-Intervalometer-Control-Black/dp/B078ST3XL3/ref=sr_1_3?crid=7H4RTA2UADWO&dchild=1&keywords=intervalometer+nikon&qid=1596384851&sprefix=interval%2Caps%2C135&sr=8-3
  15. If it's not a pain to do you can add it and if it gives no value, then remove later.
  16. Yep. I think I used cat5 for that and the dew heater cables (which have DS18B20 in them to monitor band temp)
  17. Between 12 and 30 m depending on which google result you use. I've got one on a long lead of about 2m which I keep meaning to cut down now it's mounted to the side of the scope I never found them reliable in the weatherstation but the one that's been on the dew heater has just worked since day 1 so no conclusion there!
  18. You've got bigger problems if a bit of plastic is blocking the WiFi The one in my enclosure is the single bar antenna version with external antenna connection which I was going to use but didn't need to in the end. This I think it about 70m down the garden from the AP separated by a couple of walls etc. and foliage. Even with conformal coating on the board the connections will succumb to moisture and corrosion, additional small enclosure strongly recommended, see:
  19. I suspect a bespoke bit of tuning of both circuit components and bus timing to get it to work from Nintendo
  20. I think I already posted the pics of mine before I started putting the controller and connections in it's own box - worked for a good while before it finally succumbed to the atmosphere...
  21. If I were you I would put the ESP in a box itself within the screen.
  22. Revised version, I noticed some mess leaking through in the bottom left, and discovered I could use the background eraser tool to get rid of it, doing so also improved the view of the basin, so I carried on and cleaned it all up...
  23. I took advantage of the clear night on Tuesday to spend some time in a location I had thought might produce a good milky way shot but was thwarted by lights when I got to where I was planning to image from, I turned around and say this view and thought I would give it a go, if nothing other than practise data. Camera is a Nikon D7500 with Sigma 30mm DC HSM EX f/1.4 @ f/5.6 ISO400 Manual bulb mode with an intervalometer for timer (10s start delay, 45 shutter time, 4 seconds between shots) Foreground ISO 400 45s x 12 Sky ISO400 45s x 12 and ISO 1600 45s x 12 Camera was mounted on an iOptron Sky Guider Pro on 1x tracking rate for the sky shots and tracking turned off for the foreground shots. I initially tried to do everything in Photoshop following a guide of the net but gave up and resorted to more what I know, so in to Pixinsight to register and stack the sky image (suspect using some darks might have been better!) and then exported the integrated result as a 16 bit TIFF back in to Photoshop where I then gave up trying to do a selection mask (the spikes off the foreground lights and masts were a real pain) plus the miss match close to the horizon of the background light between the foreground and sky images. In the end I applied a gradient mask of transparency which allowed the two images (foreground and sky) to blend fairly well. Some of the blurred starts in the foreground image were still showing so deployed the clone stamp to flatten the sky and remove the streaks of stars. I've added some increased saturation and vibrance as i thought the boats were looking a little grey and washed out... Love to hear comments and hints for improvement, this is the first composite landscape I've tried - I'm still not sure about the transition between foreground and sky but not experienced to know which tools I can use to neaten it up more...
×
×
  • 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.