Empty properties in GeoJSON import

599
0
09-25-2019 04:33 AM
NadeigeGONZALEZ
New Contributor

Hi! I am trying to import a GeoJSON files containing features that consist of a polygon and some properties. I am doing it in Portal in order to publish it as a feature layer.

When I do it in ArcGIS 10.7.0, I see no problem, I get the expected output: polygon features on a map, with the properties attached to the feature.

geojson import in 10.7.0 has all values associated with properties

However, in ArcGIS 10.7.1, I get the polygon features on the map, the data has columns corresponding to the fields in properties, but no value.

geojson import in 10.7.1 is missing values associated with properties

Here is a test GeoJSON representative of my issue, and which replicates the issue.

{
    "type""FeatureCollection",
    "features": [
        {
            "type""Feature",
            "id""211b50e3-4f6e-401f-b2fe-14ddff2042a6",
            "properties": {
                "zonename""Test",
                "zonelevel""1",
                "parentname""Test"
            },
            "geometry": {
                "type""Polygon",
                "coordinates": [
                    [
                        [
                            2.351194977760315,
                            44.61678802912819
                        ],
                        [
                            2.3508462905883791,
                            44.6156345661527
                        ],
                        [
                            2.3527184724807741,
                            44.61533163281392
                        ],
                        [
                            2.3527667522430422,
                            44.61596856780862
                        ],
                        [
                            2.3529330492019653,
                            44.61651228746635
                        ],
                        [
                            2.351194977760315,
                            44.61678802912819
                        ]
                    ]
                ]
            }
        }
    ]
}

Any idea what's going on?

Émeric

0 Kudos
0 Replies