Regularly, people talk about UFOs, some of us believe having seen one of them. These phenomena last since the WW2. UFO sightings across the world is a nice dataset to discover and experiment data manipulation and correlation with Warp 10.

Regularly, people talk about UFOs, some of us believe having seen one of them. This phenomenon lasts since the WW2.
There is a UFO dataset which represents 80 thousand UFO sightings over the world, with a date, a location, and some extra info.
Upload UFO datasets
First import it into Warp 10 (thanks to the sandbox, you can do it easily):
- Go to https://sandbox.senx.io/ and create a Sandbox. Copy-paste somewhere the 3 generated tokens (especially, the read and the write one)
- Download this UFO datasets: ufo.zip
- Unzip it and push data into the Sandbox:
Now, you have data on our SandBox.
Here is the data model:
- class name: sighting.ufo
- labels:
- state (mostly for the US, but I do not want to spoil some analysis results)
- country
- shape (the shape of what they see, like a triangle, a circle, a pink duck, and so on)
- datapoint: date of observation / latitude : longitude / and the duration of the observation as a value
Read more about what in the world is a Time Series Database. |
First analysis
First, I would like to know the country where there were the most sightings. You can use either https://studio.senx.io/ or our VSCode plugin.
With WarpScript, it takes 4 steps:
- Fetch data
- Bucketize it in a single big bucket and compute the data points count
- Reduce by country and compute the sum of data points counts
- Prettify the result
Ok, the winner is surprisingly the USA.
This could mean one of two things:
- A large amount of Americans are reptilian alien
- The US government is in cahoots with aliens and is using their technology to maintain their status as a global superpower
Second analysis
How sightings evolve during time, with a monthly aggregation? 3 steps:
- Fetch data
- Bucketize it by month and compute the data points count (i.e.: month count aggregation)
- Reduce by country and compute the sum of data points counts

Ok, it happens mostly at the end of century, and it seems that there is some kind of seasonality. Now, focus on the USA. In which US state do UFO sightings occur the most?
Cross data
What are the top states for UFO sightings relative to state population?
Seasonality
Is there a particular period for UFO flights? Here is the process:
- Fetch data
- Bucketize and fill gaps
- Reduce
- Split by year
- Shift the time to 01/01/1970
- Bucketize to align timestamps and reduce

Well, they like Christmas and the summer.
Correlation
Is there a correlation with alien movies?
So, here is TheMovieDB datasets with the "UFO" search term. movies.zip. Download it and upload your data.
Now I would like to compare evolution of each curve:
UFO sightings:

UFO movies releases:

It seems there is something. Now, I put both series on the same chart:

Oh, they are not on the same scale. Obviously, there's less movie releases per year than UFO sightings. Here is a way to compare them:

We have to look a bit further by zooming on two eras:
The last century:

It seems that sightings are a consequence of Hollywood movie production. In fact, this is a common social theory about the UFO observation phenomena. But for this century:

It seems that Hollywood reacts to people by producing movies about a spread interest.
Final thought about this UFO datasets
I am not a sociologist but, with the power and the simplicity of WarpScript, we have done some data manipulations.
UFO sightings across the world is a nice dataset to discover and experiment data manipulation and correlation with Warp 10. Share on XThese UFO datasets were just a pretext to introduce common Time Series concepts like:
In a future post, I will correlate sightings location with military bases position.
Live long and prosper.
With the help of https://www.kaggle.com/hakeemtfrank/ufo-sightings-data-exploration
Part 2 of UFO sightings datasets is right here.
Read more
Santa asset tracking and delivery service
An AIS data set for the 2022 Ocean Hackathon
Build a Complete Application with Warp 10, from TCP Stream to Dashboard

Senior Software Engineer