I am trying to map GPS points (lat, long) onto a 2D (X, Y) plane. The plane is drawn on an Android device using a custom view, and I want each axis to scale to 200 meters in length.
I'm trying to set a GPS location as the origin of this plane, and then map points which are up to 100 meters away from this GPS point onto the map.
I've done some prior research but the threads I'm finding address converting from Lat/Long to (X, Y, Z) spherical coordinates, in which the earth is the origin (see this thread).
Another thread is more along the lines of what I'm looking for, in which each pixel on the screen corresponds to a GPS location -- however, I am trying to map the GPS points onto a much smaller scale (200m X 200m).. not a large geographic map like a city.
What would be the most straightforward way to go about doing this?
Edit: Found a very similar question, but instead of using a coordinate plane, it uses an image of a floor plan to map GPS points to.