Ref links.
Above live data belongs various link mentioned below.
https://mars.nasa.gov/insight/weather/
https://www.solarsystemscope.com/embed
https://spotthestation.nasa.gov/widget/
This Post contains videos and information about "Smart Telescopes". If you are planning to but "Smart Telescope", then watch the video before buying it! Some of the Smart Telescopes Seestar S50 Seestar S30 DWARF 3 To know more about the above kindly visit below Youtube channels links. https://www.youtube.com/@AstroForumSpace DWARF 3 VS Seestar S50 Smart Telescope Review + Tutorial https://www.youtube.com/@the_space_koala SeeStar S30 Tried & Tested - Does The Smallest Telescope Ever Measure Up to The S50? Credits- https://www.youtube.com/@AstroForumSpace https://www.youtube.com/@the_space_koala
In Astronomy, Image taken by cameras would be based on specific filters(channels)-Red, Green, Blue. Below are the the images taken across 3 channels. Red(Left), Green(Centre), Blue(Right) Original image credit(single image which is not shown here)- Credits: NASA, ESA, J. Hester and A. Loll (Arizona State University) Below is result after combining above 3 channel images Below is the python code used. Original Carb Nebula image is spitted into 3 channels(as shown 3 gray images above) *************************************************** from PIL import Image # Open the red, green, and blue channel images red_channel = Image.open('E:\\astronomy_related\\rbg_one\\red.png') green_channel=Image.open('E:\\astronomy_related\\rbg_one\\green.png') blue_channel =Image.open('E:\\astronomy_related\\rbg_one\\blue.png') # Create a new RGB image result = Image.merge("RGB", (red_channel, green_channel, blue_channel)) # Save the result image result.save('E:\\astr...
Kids Activity - Create Halley's Comet stimulation using Chat GPT It is easy to create basic simulation using Chat GPT by giving prompt .Below is example of sample prompt "create java script code to create Halley's comet such that it is orbiting Sun. Also show distance in number" User can create more creative prompt Below is JavaScript code which created above graphical simulation (just copy past in note pad and save file as html and then open in browser) <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <style> canvas { border: 1px solid #000; display: block; margin: 20px auto; } </style> <title>Comet Animation</title> </head> <body> <canvas id="solarSystemCanvas" width="800" height="800">...
Comments
Post a Comment