My next problem with creating the GeoJSON is that I have coords in EPSG 32610, in meters, and I need them in WGS84 for the GeoJSON. This approach will probably work:
npm install proj4 node... proj4.defs('epsg32610', '+proj=utm +zone=10 +ellps=WGS84 +datum=WGS84 +units=m +no_defs'); proj4.defs('WGS84', "+title=WGS 84 (long/lat) +proj=longlat +ellps=WGS84 +datum=WGS84 +units=degrees"); proj4(proj4('epsg32610'), proj4('WGS84'), [493251.00240006257,5459084.067122783]) [ -123.09280153510765, 49.28447161994075 ]
This converts a single point; I need to figure out how to convert polygons.