Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Identify geojson file types #8262

Merged
merged 2 commits into from
Nov 30, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions doc/release-notes/8261-geojson.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.geojson files are now correctly identified as GeoJSON files rather than "unknown".

A full re-index is needed to update the facets, as well as optionally running the "redetect file type" API on existing GeoJSON files.
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ dbf=application/dbf
dcm=application/dicom
docx=application/vnd.openxmlformats-officedocument.wordprocessingml.document
emf=application/x-emf
geojson=application/geo+json
h5=application/x-h5
hdf=application/x-hdf
hdf5=application/x-hdf5
Expand Down
1 change: 1 addition & 0 deletions src/main/java/propertyFiles/MimeTypeDisplay.properties
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,7 @@ application/x-emf=Extended Metafile
application/x-h5=Hierarchical Data Format
application/x-hdf=Hierarchical Data Format
application/x-hdf5=Hierarchical Data Format
application/geo+json=GeoJSON
application/json=JSON
application/mathematica=Mathematica
application/matlab-mat=MATLAB Data
Expand Down
1 change: 1 addition & 0 deletions src/main/java/propertyFiles/MimeTypeFacets.properties
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ application/x-emf=Data
application/x-h5=Data
application/x-hdf=Data
application/x-hdf5=Data
application/geo+json=Data
application/json=Data
application/mathematica=Data
application/matlab-mat=Data
Expand Down