*** Solar Eclipse Caught On My Satellite Data Feed ***

This is a simulation of an eclipse based on a geocentric (flat earth) model.

7be3b7a38cdf60b19b7c4e3da8f62f162b7ce67d.gifv

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.
 
I don't know. I never said that. Some folks are just brainwashed and therefore think they are telling the truth.

They're not brainwashed they're liars. All of them.

If the evidence that every scientist and human have studied clearly shows that the Earth is flat and they still come out and say that it's round...

Then every single one of them is a liar.
 
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.
 
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
 
Thing is, you just posted footage of the earth being flat on the red bull vide

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?
 
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?


:rolleyes2:

See, :smh: 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. :smh:
 
:rolleyes2:

See, :smh: 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. :smh:






And no I'm not searching for these vids, unfortunately it popped up in my feed after my initial search.
 
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.

Not true AT ALL :smh: Look up Jeranism, Globebusters or Vibes of Cosmos on youtube and then come back and say that shit again with a straight face.
 
Yeah, flat earthers have debunked everything this dude has said..


Aight, gotta go! Time for some pussy! :hellyea:

What you don't realize is that I'm on your side. I'm here to prove all those round Earther's wrong so that I can get to this money!

I'll win the Nobel Peace Prize, be Time and CNN's person of the year. And last but not least the most decorated Astronomer of all time!

The man that brought truth to all of humanity.

I want that, I just need the proof.
 
Not true AT ALL :smh: Look up Jeranism, Globebusters or Vibes of Cosmos on youtube and then come back and say that shit again with a straight face.

Nah bruh, if YOU believe the earth is flat I want YOU to walk us through the math. Sam already made the point, people who believe the earth is flat aren't good in math.

Instead of referencing dudes on YouTube, you could have shut everyone in the thread down by posting the equations and walking us through them YOURSELF. And I mean using your own words, not copying and pasting someone else's explanation.
 
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.

202404081829-L2-CMIPF-TCBT.jpg
 
Last edited:
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.

202404081829-L2-CMIPF-TCBT.jpg






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.
 
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!

Oh lawd, this nigga....

Yeah, I know all about the new moon. The new moon goes to different locations monthly due to the spiraling cycle of the moon around the flat earth. The moon really is a clock that works on a 13-month schedule.

I'm reluctant to get into specifics with you mf's because it's a big waste of time. Yall don't listen. Yall can't grasp simple shit I tell you. :smh:
 
Back
Top