Skip to content

Commit

Permalink
Add .zenodo.json file (#5101)
Browse files Browse the repository at this point in the history
  • Loading branch information
rouault authored Jan 13, 2022
1 parent ecdfb44 commit 93b4b95
Show file tree
Hide file tree
Showing 2 changed files with 93 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/code_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,3 +82,19 @@ jobs:
cd doc
make .doxygen_up_to_date >log.txt 2>&1
if grep -i warning log.txt | grep -v -e russian -e brazilian; then echo "Doxygen warnings found" && cat log.txt && /bin/false; else echo "No Doxygen warnings found"; fi
other_checks:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2

- name: Install Requirements
run: |
sudo apt install python3-pip wget
sudo pip3 install jsonschema
- name: Check json files
run: |
wget https://raw.githubusercontent.com/rouault/zenodo_json_schema/master/zenodo-json-schema.json
jsonschema -i .zenodo.json zenodo-json-schema.json
77 changes: 77 additions & 0 deletions .zenodo.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
{
"creators": [
{
"affiliation": "Spatialys",
"name": "Rouault, Even",
"orcid": "0000-0002-5068-0476"
},
{
"affiliation": "Planet Labs Inc",
"name": "Warmerdam, Frank"
},
{
"affiliation": "Google Inc",
"name": "Schwehr, Kurt",
"orcid": "0000-0002-5624-8190"
},
{
"name": "Kiselev, Andrey"
},
{
"affiliation": "Hobu Inc",
"name": "Butler, Howard",
"orcid": "0000-0002-5340-1380"
},
{
"affiliation": "Cadcorp",
"name": "Łoskot, Mateusz"
},
{
"name": "Szekeres, Tamas"
},
{
"name": "Tourigny, Etienne"
},
{
"name": "Landa, Martin"
},
{
"name": "Miara, Idan"
},
{
"name": "Elliston, Ben"
},
{
"name": "Kumar, Chaitanya"
},
{
"affiliation": "Esri",
"name": "Plesea, Lucian"
},
{
"affiliation": "Mapgears Inc",
"name": "Morissette, Daniel"
},
{
"name": "Jolma, Ari"
},
{
"affiliation": "North Road",
"name": "Dawson, Nyall",
"orcid": "0000-0001-9812-7584"
}
],
"description": "GDAL is a translator library for raster and vector geospatial data formats that is released under an X/MIT style Open Source License by the Open Source Geospatial Foundation. As a library, it presents a single raster abstract data model and single vector abstract data model to the calling application for all supported formats. It also comes with a variety of useful command line utilities for data translation and processing.",
"keywords": [
"GDAL",
"geospatial",
"raster",
"vector",
"conversion",
"processing"
],
"license": {
"id": "MIT"
},
"title": "GDAL"
}

0 comments on commit 93b4b95

Please sign in to comment.