After some consideration, I think it might be better to remove crs from the output. My reasoning is as follows: previously, R could still handle custom CRS - it only issued a warning (desirable). Now, however, it no longer works at all.
Currently, the output includes:
"properties": {
"note": "Created from go-cart.io with custom projection, not in EPSG:4326."
}
I wonder if we should move the projection indication here. For example:
"properties": {
"projected": true,
"note": "Created from go-cart.io with custom projection, not in EPSG:4326."
}
This way, cpp could check properties.projected instead of crs to decide whether projection should be skipped.
After some consideration, I think it might be better to remove
crsfrom the output. My reasoning is as follows: previously, R could still handle custom CRS - it only issued a warning (desirable). Now, however, it no longer works at all.Currently, the output includes:
I wonder if we should move the projection indication here. For example:
This way, cpp could check
properties.projectedinstead ofcrsto decide whether projection should be skipped.