Places

Show Only ...
Maps - Photos - Videos

THE UGLY TRUTH ABOUT OWNING LAND | What They Don’t Tell You

I was listening to this podcast on the way in today. Taxes, maintance cost, acreage that is build-able, among other things are big considerations. More information is good, and while I don't necessarily agree with everything in this podcast, I am considering each topic they discuss carefully.

If you are using a projected coordinate system, finding a location from a bearing and a distance is easy πŸ—Ί

If you are using a projected coordinate system, finding a location from a bearing and a distance is easy πŸ—Ί

newX = startX + distance * sin(bearing/180*pi)

newY = startY + distance * cos(bearing/180*pi)

Distance is in map units, so if you are working in UTM then that’s meters.

Bearing is in compass degrees, due north is 0, due east is 90, etc.