Open kazlauskis opened 2 months ago
geom and lat/lon values are not updated when updating the entered_sref using the /services/rest/samples endpoint.
geom
lat
lon
entered_sref
/services/rest/samples
POST
{ "values": { "entered_sref": "51, 1", // ... other values } }
GET
{ "values": { "entered_sref": "51, 1", "geom": "POINT(111319.49079327357 6621293.722740169)", "lat": "51", "lon": "0.9999999999999998", // ... other values } }
PUT
{ "values": { "entered_sref": "50, 2" } }
{ "values": { "entered_sref": "50, 2", "geom": "POINT(111319.49079327357 6621293.722740169)", // ❌ not updated "lat": "51", // ❌ not updated "lon": "0.9999999999999998", // ❌ not updated // ... other values } }
geom
andlat
/lon
values are not updated when updating theentered_sref
using the/services/rest/samples
endpoint.POST
GET
PUT
GET