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

'id' field is incorrectly put inside 'properties' for Place type features #50

Open
pvdosev opened this issue Nov 8, 2024 · 0 comments

Comments

@pvdosev
Copy link

pvdosev commented Nov 8, 2024

When downloading places, such as
overturemaps download --bbox=14.426031,50.081049,14.427,50.082 -f geojson --type=place -o test.geojson
I get the following output for the first place:

{
    "type": "Feature",
    "geometry": {
        ...
    },
    "properties": {
        "id": "08f1e3541e2d928e03cc3a2d3a3758de",
        ...
    }
}

when the correct format is

{
    "id": "08f1e3541e2d928e03cc3a2d3a3758de",
    "type": "Feature",
    "geometry": {
        ...
    },
    "properties": {
        ...
    }
}

Check https://docs.overturemaps.org/schema/reference/places/place/ for more info

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