Submit Manifest

To add a manifest request

  • Simply open a new Github issue

  • Upload the issue with the metadata json or xml file or any other format. If the image metadata is part of the image header this will depend on the imagery type.

  • Make sure you have permission to upload the metadata and or imagery file.

This is a community project, so anyone can fork the repo create the manifest file and create a pull request to be merged.

For example a PlanetScope 4Band Analytic Manifest looks like this. Here you will notice that I have added band names as simply b1, b2 and so on but you can modify this to be "Red","Green","NIR" and so on as needed. This is an example of an empty manifest though I have filled in the bandnames for ease. You can build an ingestion manifest that automatically parses your files and then gets it ready for upload into Google Earth Engine.

{
    "id": "",
    "bands": [{
        "id": "b1"
    }, {
        "id": "b2"
    }, {
        "id": "b3"
    }, {
        "id": "b4"
    }],
    "missingData": {
        "value": "0"
    },
    "properties": {
        "system:time_start": "",
        "product_type": "",
        "orbit": "",
        "provider": "",
        "instrument": "",
        "satellite_id": "",
        "number_of_bands": "",
        "epsg_code": "",
        "resampling_kernel": "",
        "number_of_rows": "",
        "number_of_columns": "",
        "gsd": "",
        "cloud_cover": "",
        "incidence_angle": "",
        "sun_azimuth": "",
        "sun_elevation": "",
        "azimuth_angle": "",
        "spacecraft_angle": "",
        "radiometric_scale_factor": "",
        "reflectance_coefficient_b1": "",
        "reflectance_coefficient_b2": "",
        "reflectance_coefficient_b3": "",
        "reflectance_coefficient_b4": ""
    },
    "tilesets": [{
        "sources": [{
            "primaryPath": ""
        }]
    }]
}

Note: All manifest that are submitted are user contributed and are in no way inclusive of all fields in the manifest. The license allows you to modify and extend the manifests as necessary.