parsedGCPs = d3.csvParseRows(
await FileAttachment("earlier_gpcs.csv").text(),
(d, i) => {
return {
type: "Feature",
properties: {
resourceCoords: [+d[1] * scale, annotation.target.source.height - d[2] * scale]
},
geometry: {
type: "Point",
coordinates: proj4("EPSG:31370").inverse([+d[3], +d[4]])
}
};
}
)