Truxton file create location

From truxwiki.com
Revision as of 03:58, 10 June 2020 by Sam (talk | contribs) (Created page with "This creates a geographic location object sourced from this file that you can use in the Location API. A location object is how you add...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This creates a geographic location object sourced from this file that you can use in the Location API. A location object is how you add records to the Location table. The resulting object will automatically be associated with the file it was created from and with the media the file belongs to.

Syntax

uint64_t truxton_file_create_location( uint64_t file_handle );

Parameters

file_handle

The handle created by the truxton_child_file_create or truxton_file_create_child call.

Return value

A handle to an location object.

Sample

void process_file(uint64_t truxton)
{
   uint64_t file = truxton_file_open_md5(truxton, "9ec8fb6095c35eff2b236863b7caaf10");

   uint64_t location = truxton_child_file_create_location(file);

   truxton_location_set_latitude(location, 18.30305549975252);
   truxton_location_set_longitude(location, -64.824006192214);
   truxton_location_set_altitude(location, 1.1);
   truxton_location_set_type(location, LOCATION_TYPE_GOPRO_VIDEO);
   truxton_location_save(location);
   truxton_location_destroy(location);

   truxton_file_destroy(file);
}