Questions tagged [trajectory]
An ordered collection of x,y,time coordinates.
60 questions
0
votes
0
answers
56
views
Defining outbound and return directions of GPS points in QGIS
In QGIS, I have a layer of points corresponding to the positions of my vehicles every 2 seconds. So, my layer contains the following information:
XY coordinates
Vehicle number
GPS heading
Timestamp
...
6
votes
2
answers
362
views
Is there a common method for measuring "curviness" of a line?
I have a bunch of GPS tracks in a Postgres+PostGIS database and want to extract a single metric as a measure of turns shown in the data. Some of the GPS targets travel in almost straight lines while ...
2
votes
0
answers
58
views
Calculate kinematic data within a PostGIS trajectory [closed]
I have a number of glider flight tracks recorded in GPX format and I would like to extract kinematic data such as instantaneous vertical velocity for charting and further analysis.
There's plenty of ...
2
votes
0
answers
198
views
How do I animate paths from points using temporal controller on QGIS, or in other words, connect points from a user with a line that changes w time
I want to animate people moving using temporal controller. I have a dataset that shows people's locations on a particular day, and these locations are points. I, however, want the points for each ...
0
votes
1
answer
112
views
Counting telemetry intersections with a polygon in R
I am currently tracking animals in national parks and have lat/long and date/time data for individuals and a polygon shapefile for the park boundary. I want to know how many times individuals leave ...
1
vote
1
answer
74
views
Transforming a linestring table to trajectories on the fly
I have the following code:
tracks AS
(SELECT
imei,
st_setsrid(ST_MakeLine(points_geom ORDER BY time_created),4326) AS track from
subset_cr
GROUP BY imei
)
Is there any way I can ...
-2
votes
1
answer
659
views
Trajectory density map or line density map
Data: ships AIS trajectory Data with longitude and latitude. (that data is a CSV file with several columns:id,time,lon,lat,etc.)//
I transform the point to line, every line is a ship trajectory. Now I ...
-1
votes
2
answers
1k
views
Converting GPS co-ordinates to relative trajectories
I wish to convert GPS co-ordinates of an object (say, a car) to a relative trajectory.
So suppose I'm travelling from A to B, at A I need to know the precise x-y-z co-ordinate from my current point (...
1
vote
1
answer
159
views
Ideal procedure to deal with faulty data for generation of LiDAR trajectory [closed]
The reason for this post is to understand possible remedial measures when one is dealing with a lidar dataset that is faulty (incorrectly populated, missing trajectory information etc.). Obviously, re-...
2
votes
1
answer
252
views
Points of tracklog inside a polygon with a re-enter tolerance
I have points in PostGIS that represent GPS coordinates with a timestamp from a tracklog. I'm interested in selecting the times at which the tracklog entered and exited the polygon with a certain ...
1
vote
0
answers
60
views
Clipping common overlapping regions in multiple trajectories
I have 20 trajectories
I found a method on Github https://github.com/wisaaco/MatchGPX. The method's output is shown below. There are two GPS traces one in blue and other in Red.
The overlapping ...
1
vote
0
answers
396
views
Generate synthetic trajectory dataset that has global coverage
I want to generate a spatial trajectory dataset which basically contains tuples - (lat,lon,time), grouped together by an identifier so they form trajectories. In addition, I want this dataset to have ...
0
votes
0
answers
44
views
Is there a measure that account for the the location diversity and trajectory distance of agents?
I am currently working on project to assess the success of musicians. For each musician I know when and where (coordinates,city,county) they performed in a gig. I assume a successful musician is the ...
2
votes
1
answer
297
views
Count number of overlapping map matched GPS trajectories with road network
I map matched a sequence of GPS-points to a road network using the Offline-Map Matching plugin for QGIS. This map matched trajectory passes certain roads segments multiple times (for example, the ...
2
votes
1
answer
382
views
Creating animation of movement along shortest path
In my project I need to find the shortest path between different layer points. I did this using the network analysis shortest path tool for single points and OD-matrix tool with QNEAT 3 Plugin for ...