Closed mmcfarland closed 7 years ago
For reference, a DRB result will return the input_pt
object similar to:
"input_pt": {
"type": "FeatureCollection",
"features": [
{
"geometry": {
"type": "Point",
"coordinates": [
-75.700779,
40.311832
]
},
"type": "Feature",
"properties": {
"Lat": 40.311832,
"Dist_moved": 0,
"Lon": -75.700779,
"ID": 1
}
}
]
}
The coordinate system is likely that of #39
The RWD service returns two points along with the generated polygon: original clicked point and snapped to stream point. The NHD variety of the call does not reproject the "original" point, so it's coordinates are in the original source projection and not rendered on the map. The original point is encoded as properties on the snapped point gejoson, under
Lat
andLon
.