Skip to content

Commit

Permalink
advertise Parquet as output format #623
Browse files Browse the repository at this point in the history
  • Loading branch information
bossie committed Jan 23, 2024
1 parent 05e2a3c commit aa28c14
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
8 changes: 7 additions & 1 deletion openeogeotrellis/backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,13 @@ def file_formats(self) -> dict:
"description": "CSV format is supported to export vector cube data, for instance generated by aggregate_spatial.",
"gis_data_types": [ "vector"],
"parameters": {}
}
},
"Parquet": {
"title": "(Geo)Parquet",
"description": "GeoParquet is an efficient binary format, to distribute large amounts of vector data.",
"gis_data_types": ["vector"],
"parameters": {},
},
}
}

Expand Down
1 change: 1 addition & 0 deletions tests/test_views.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ def test_file_formats(api100):
assert "GTiff" in formats["output"]
assert "CovJSON" in formats["output"]
assert "netCDF" in formats["output"]
assert "Parquet" in formats["output"]
assert "description" in deep_get(formats, "output", "PNG", "parameters", "colormap")


Expand Down

0 comments on commit aa28c14

Please sign in to comment.