Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feature request; geojson support #208

Open
stavpup opened this issue Jan 20, 2025 · 0 comments
Open

feature request; geojson support #208

stavpup opened this issue Jan 20, 2025 · 0 comments

Comments

@stavpup
Copy link

stavpup commented Jan 20, 2025

I don't know how to describe it in words.. The sample;

{
"type": "FeatureCollection",
"crs": {
"type": "name",
"properties": {
"name": "urn:ogc:def:crs:EPSG::2100"
}
},
"features": [
{
"type": "Feature",
"properties": {},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[
679135.7,
4328314.3
],
[
679139.8,
4328273.0
],
[
679116.6,
4328278.9
],
[
679135.7,
4328314.3
]
]
]
}
}
]
}

And we want it as

{
"type": "FeatureCollection",
"crs": {
"type": "name",
"properties": {
"name": "urn:ogc:def:crs:EPSG::2100"
}
},
"features": [
{
"type": "Feature",
"properties": {},
"geometry": {
"type": "Polygon",
"coordinates": [
[
[ 679135.7, 4328314.3 ],
[ 679139.8, 4328273.0 ],
[ 679116.6, 4328278.9 ],
[ 679135.7, 4328314.3 ]
]
]
}
}
]
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant