cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - You can subscribe to a forum, label or individual post and receive email notifications when someone posts a new topic or reply. Learn more! X

how can get output as infotable which is filtered result of another infotable?

njain-31
6-Contributor

how can get output as infotable which is filtered result of another infotable?

how can get output as infotable with 2 column Location and DateTime (Datatype) from another infotable which has lat (string), long (string) and Date and time?

1 REPLY 1
mpatel-21
12-Amethyst
(To:njain-31)

var tableLength = infotable1.rows.length;
for (var x = 0; x < tableLength; x++) {

var row = infotable1.rows;

var newEntry = new Object();

var location = new Object();

location.latitude = parseInt(<lat>);

location.longitude = parseInt(<lon>);

location.elevation = 0;

location.units = "WGS84";

newEntry.location = location;

newEntry.datetime = row.datetime;

result.AddRow(newEntry);
}

Announcements


Top Tags