I use loadStrings() method to load all the discrete X,Y coordinates from a txt file. Then I put them in a string array. If I directly put ellipse(X,Y,10,10) under the draw() method, the ball will not move in a constant speed, because the distance between each sets of coordinates is different. As the ball moves in a high density area, it slows down dramatically; as it moves in a discrete area, it moves fast. Is there any way to make it move in a constant speed in the whole route? or should I use some other shape like to create a curve first before draw()?
I am doing my master's thesis on the spatial and temporal patterns of bike flow. I found an exquisite animated map created using Processing, If I have all the bikes' data ( starting and ending time and location), how can I use processing to build the map? I am starting learning Processing now, because I have some programming experience, so to learn it won't be a barrier to me.
I need some guide lines to help me start with this project, for now, I really have no idea where should I start to build this map!