It looks like you're using an Ad Blocker.
Please white-list or disable AboveTopSecret.com in your ad-blocking tool.
Thank you.
Some features of ATS will be disabled while you continue to use an ad-blocker.
originally posted by: FederWBush
Column AU is complete , It won't be long until I complete Column I.
And where I can send to you the xlsm file ?
originally posted by: FederWBush
Check your Email inbox please.
originally posted by: IsaacKoi
Challenge 2 : Plotting and animating some of that data (whether using After Effects, Cinem4D or otherwise) on a map or maps (whether sourced from Google Earth or otherwise).
originally posted by: FederWBush
Column I is complete.
minor errors has been fixed in Column H.
I'll start Column AL next,
but I'll be busy in the next few days.
so it will be delayed a bit.
Btw, I got some background in AE , dont know if I can animate the data...
But I can check it out at least.
originally posted by: IsaacKoi
That would be very useful. My current focus is on Google Earth animations and converting the Excel spreadsheet date to the KML format used by Google Earth - but an After Effects alternative would be very interesting.
public double ConvertDegreeAngleToDouble(string point)
[
string longlat_pattern = "(d+)d+)d+)(w[1])";
Regex longlat_regex = new Regex(longlat_pattern, RegexOptions.Singleline);
if (longlat_regex.IsMatch(point))
[
Match match = longlat_regex.Match(point);
string deg = match.Groups[1].Value;
string min = match.Groups[2].Value;
string sec = match.Groups[3].Value;
string hem = match.Groups[4].Value;
var multiplier = (hem == "S" || hem == "W") ? -1 : 1;
var degrees = Double.Parse(deg);
var minutes = Double.Parse(min) / 60;
var seconds = Double.Parse(sec) / 3600;
double dec = (degrees + minutes + seconds) * multiplier;
return dec;
]
else
[
throw new Exception("Not correct format!" + point);
]
]
originally posted by: WeAre0ne
I have an app that will load the Excel or CSV file into a DataTable and iterate through each DataRow and convert the coordinates in specific Columns. I can run it once on your data and give it back to you.
originally posted by: FederWBush
In a quick analysis of the data , I found out something kinda odd.
The amount of distance he past between Frame 1110 (frame A) to Frame 1222 (Frame B) is: 0.414 km (414m)
Frame A details : 18.31.23N - 067.07.10W (01:22:44)
Frame B details : 18.31.21N - 067.01.24W (01:22:48)
between frame A and B their is 4 seconds.
which means the object flight was 414m in about 4 seconds. (414 / 4 = 103.5m per second)
...
But still , I belive the object's speed were around 100m per second / 370 kmh. (There is high chance that i'm wrong)
originally posted by: IsaacKoi
AA: States "ACFT" (short for “Aircraft”) throughout the video. This indicates that the numbers (which are co-ordinates) below that word relate to the position of the aircraft.
AB, AC, AD, AE: These numbers, which changes frequently, give the latitude of the aircraft (e.g. 18:30:22N). The latitude indicates a north-south position. The equator is defined as 0 degrees, the North Pole is 90 degrees north, and the South Pole is 90 degrees south. One degree of latitude is 60 nautical miles, 69 statute miles or 111 km. One minute of latitude is 1 nautical mile, 1.15 statute miles, or 1.85 km.
originally posted by: WeAre0ne
1: Your Excel formula doesn't adjust for the hemisphere. It is ignoring "N" and "W". That means your longitude should be negative because it is in the West. So your values are most likely wrong, unless you just change it manually.