geotrellis / geotrellis-server

Tools for building raster processing and display services
Apache License 2.0
73 stars 24 forks source link

GetFeatureInfo and GetFeatureInfoExtended pixel values field name change #389

Closed pomadchin closed 2 years ago

pomadchin commented 2 years ago

Overview

This PR changes the json / xml field name:

Checklist

Demo

{
    "type": "FeatureCollection",
    "features": [
        {
            "type": "Feature",
            "geometry": {
                "type": "Point",
                "coordinates": [
                    7.954221646931719,
                    55.19328859044019
                ]
            },
            "properties": {
                "band-0-value": 30.0
            }
        },
        {
            "type": "Feature",
            "geometry": {
                "type": "Point",
                "coordinates": [
                    7.954221646931719,
                    56.19328859044019
                ]
            },
            "properties": {
                "band-0-value": 27.0
            }
        }
    ]
}