So again, everyone's lying?
I don't know. I never said that. Some folks are just brainwashed and therefore think they are telling the truth.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
So again, everyone's lying?
We’re all in on it. Everyone.
This is a simulation of an eclipse based on a geocentric (flat earth) model.
![]()
I don't know. I never said that. Some folks are just brainwashed and therefore think they are telling the truth.
Seriously. And please believe if I had actual footage of the Earth being flat, I'd be a billionaire from selling it to the highest bidder!
I'd be regarded as the greatest astronomer ever!
Right. Someone like Elon would love to be the center of that type of attention.
that ain’t not simulation. That’s just a regular gif someone made to make it make sense in their mind.
Simulations are based on measurable variables. Something that can be calculated numerically.
Seriously. And please believe if I had actual footage of the Earth being flat, I'd be a billionaire from selling it to the highest bidder!
I'd be regarded as the greatest astronomer ever!
Thing is, you just posted footage of the earth being flat on the red bull vide
not a single scholar has ever been offered when I asked
not a single curriculum-based program
not a single peer-reviewed paper
every. single. person....who was EVER educated in institutions with certifying bodies that allow SMEs to go out into the world and work in the HUNDREDS maybe THOUSANDS of industries that rely on physical concepts that depend one way or another on the shape of the earth...maritime industries, aeronautics, telecommunications, meteorology, geology, etc etc...everyone learned in the sciences that are the fundamental underpinnings of the systems that literally make our world work...
EVERY SINGLE ONE OF THEM IS EITHER IN ON IT OR NOT AS SMART AS THESE NIGGAS WHOSE SCIENCE EDUCATION TOPS OUT ON YOUTUBE AND FACEBOOK.
Imagine the stupendously idiotic hubris to think you and the zero niggas with advanced science understanding that you touch tips with are smarter than a thousand years worth of a globeful of scholars.
Imagine yelling MASA! when confronted with science concepts you don't understand when there are 77 fucking independent space programs around the world, 16 launch capable, some of the largest of which are our fucking enemies.
Imagine a nigga who posed as an engineer until it was beat out of him over 20 pages that he meant the kind that records nigga lying over beats instead of the industrially smart kind telling a fuckin satellite using, degree having, class teaching, model making, professional METEOROLOGIST that he knows more than him about his field of study.
Imagine how fucked up in the head you have to be to subscribe to all the above stupid shit because you just refuse to except that you're not that fuckin bright.
jesus.
And this is why you never see flat earthers show equations to prove that the earth is flat, they just use a bunch of words.
You see what you want to see.
And again, all of these people are lying?
Who’s paying them to lie, what’s the motivation?
And also, does NASA provide everyone with the default background of space and Earth when they let NASA know that they'll be taking a peak?
See,this is why bruh, this is exactly why
Did you even read my first response to you??? Obviously not.
A few clues here
1) a flat horizon at eye level, including the haze leading up to the darkness
2) a local sun
3) a sunspot on the clouds
4) no parallax between the sun and the earth as the camera rotates up and down.
But of course, posting clues will do no good.
Yall cats who believe in NASA are worst than christians.![]()
And this is why you never see flat earthers show equations to prove that the earth is flat, they just use a bunch of words.
And no I'm not searching for these vids, unfortunately it popped up in my feed after my initial search.
Yeah, flat earthers have debunked everything this dude has said..
Aight, gotta go! Time for some pussy!![]()
Thanks for sharing, Fam. These satellite data images during this event are dope AF
![]()
@ the resident FLERFS saying this is "CGI" and "The moon appeared to disappear behind the sun"...JUST WOW!!
![]()
DID YOU NOTICE THAT YOU CAN'T TELL ME WHERE THE NEW MOON GOES EVERY MONTH DURING THE NEW MOON PHASE?![]()
![]()
![]()
![]()
![]()
Did anyone notice that the moon stopped and paused in front of the sun and then proceeded to move again? I'm not saying it did, but did anyone notice a pause?
We're all in one it, fam.
![]()
Not true AT ALLLook up Jeranism, Globebusters or Vibes of Cosmos on youtube and then come back and say that shit again with a straight face.
# =============================== #
# Performnig Zenith Calculation
# =============================== #
# Get the year month day hour and minute to apply the zenith correction
year = file_created_digi_fmt[:4]
month = file_created_digi_fmt[:6][-2:]
day = file_created_digi_fmt[:8][-2:]
hour = file_created_digi_fmt[:10][-2:]
minutes = file_created_digi_fmt[:12][-2:]
# Using pyorbital to perform zenith calculations.
utc_time = datetime(int(file_created_digi_fmt[:4]), int(month), int(day), int(hour), int(minutes))
sun_zenith = np.zeros((Ch02.shape[0], Ch02.shape[1]))
if resolution == '1km':
sun_zenith = astronomy.sun_zenith_angle(utc_time, lonsA, latsA)
elif resolution == '2km':
sun_zenith = astronomy.sun_zenith_angle(utc_time, lonsA[::2,::2], latsA[::2,::2])
################################################################
# Calculating True Color RGB
# https://rammb.cira.colostate.edu/training/visit/quick_guides/
################################################################
# Apply range limits for each channel. RGB values must be between 0 and 1
R = np.clip(R, 0, 1)
G = np.clip(G, 0, 1)
B = np.clip(B, 0, 1)
# Apply a gamma correction to the image to correct ABI detector brightness
gamma = 2
R = np.power(R, 1/gamma)
G = np.power(G, 1/gamma)
B = np.power(B, 1/gamma)
# True Color recipe
# http://cimss.ssec.wisc.edu/goes/OCLOFactSheetPDFs/ABIQuickGuide_CIMSSRGB_v2.pdf
G_true = 0.45 * R + 0.1 * G + 0.45 * B
G_true = np.clip(G_true, 0, 1) # apply limits again, just in case.
# The RGB array for the true color image
RGB = np.dstack([R, G_true, B])
# Amount of contrast
contrast_amount = 80
# Apply contrast correction
RGB = contrast_correction(RGB, contrast_amount)
#########################################################
# Creating transparent sun zenith line between RGB and IR
#########################################################
# If zenith angle is greater than 100, the composite pixel is zero
RGB[sun_zenith > 100] = 0
# Create the mask for the regions with zero
mask = (RGB == [0.0,0.0,0.0]).all(axis=2)
# Apply the mask to overwrite the pixels
RGB[mask] = [0,0,0]
# Create the fading transparency between the regions with the
# sun zenith angle of min and max from array
alphas = sun_zenith / 100
min_sun_angle = 0.80
max_sun_angle = 1
alphas[alphas < min_sun_angle] = min_sun_angle
alphas[alphas > max_sun_angle] = max_sun_angle
# Normalize the transparency mask
alphas = ((alphas - max_sun_angle) / (min_sun_angle - max_sun_angle))
# Combining RGB and Transparent Sun Zenith Angle
RGB_alpha = np.dstack((RGB, alphas))
I create some of these products using this method from the GOES satellite. It is called a True-Color image. It uses bands that reflect three different wavelengths to measure features on Earth. The three visible bands (channels 1-blue, 2-red, and 3-green) can only be calculated during the day because of the sunlight. The nighttime band (Channel 13) measures longwave radiation as infrared.
I must measure the solar zenith angle to calculate the transitions from day to night. Some of the code looks like this:
Code:# =============================== # # Performnig Zenith Calculation # =============================== # # Get the year month day hour and minute to apply the zenith correction year = file_created_digi_fmt[:4] month = file_created_digi_fmt[:6][-2:] day = file_created_digi_fmt[:8][-2:] hour = file_created_digi_fmt[:10][-2:] minutes = file_created_digi_fmt[:12][-2:] # Using pyorbital to perform zenith calculations. utc_time = datetime(int(file_created_digi_fmt[:4]), int(month), int(day), int(hour), int(minutes)) sun_zenith = np.zeros((Ch02.shape[0], Ch02.shape[1])) if resolution == '1km': sun_zenith = astronomy.sun_zenith_angle(utc_time, lonsA, latsA) elif resolution == '2km': sun_zenith = astronomy.sun_zenith_angle(utc_time, lonsA[::2,::2], latsA[::2,::2])
This is a piece of code I use to calculate the True-Color image.
Code:################################################################ # Calculating True Color RGB # https://rammb.cira.colostate.edu/training/visit/quick_guides/ ################################################################ # Apply range limits for each channel. RGB values must be between 0 and 1 R = np.clip(R, 0, 1) G = np.clip(G, 0, 1) B = np.clip(B, 0, 1) # Apply a gamma correction to the image to correct ABI detector brightness gamma = 2 R = np.power(R, 1/gamma) G = np.power(G, 1/gamma) B = np.power(B, 1/gamma) # True Color recipe # http://cimss.ssec.wisc.edu/goes/OCLOFactSheetPDFs/ABIQuickGuide_CIMSSRGB_v2.pdf G_true = 0.45 * R + 0.1 * G + 0.45 * B G_true = np.clip(G_true, 0, 1) # apply limits again, just in case. # The RGB array for the true color image RGB = np.dstack([R, G_true, B]) # Amount of contrast contrast_amount = 80 # Apply contrast correction RGB = contrast_correction(RGB, contrast_amount) ######################################################### # Creating transparent sun zenith line between RGB and IR ######################################################### # If zenith angle is greater than 100, the composite pixel is zero RGB[sun_zenith > 100] = 0 # Create the mask for the regions with zero mask = (RGB == [0.0,0.0,0.0]).all(axis=2) # Apply the mask to overwrite the pixels RGB[mask] = [0,0,0] # Create the fading transparency between the regions with the # sun zenith angle of min and max from array alphas = sun_zenith / 100 min_sun_angle = 0.80 max_sun_angle = 1 alphas[alphas < min_sun_angle] = min_sun_angle alphas[alphas > max_sun_angle] = max_sun_angle # Normalize the transparency mask alphas = ((alphas - max_sun_angle) / (min_sun_angle - max_sun_angle)) # Combining RGB and Transparent Sun Zenith Angle RGB_alpha = np.dstack((RGB, alphas))
After a lot of extra shit, I get the resulting image. But naw, these niggas think I'm out here photoshopping shit.
![]()
@4 Dimensional stay lying
Check this out, I know what you're trying to do but it's not gonna work.
My check WILL be bigger from NASA and the Round Earth Society this month.
Cut me 10% for my effort.
DID YOU NOTICE THAT YOU CAN'T TELL ME WHERE THE NEW MOON GOES EVERY MONTH DURING THE NEW MOON PHASE?
PLEASE TELL US WITHOUT USING DERPY CARTOONS!