Skip to content

Commit

Permalink
remove unsupported file types in datasets upload (#731)
Browse files Browse the repository at this point in the history
  • Loading branch information
allyoucanmap authored Jan 20, 2022
1 parent f925db1 commit 228588b
Showing 1 changed file with 1 addition and 19 deletions.
20 changes: 1 addition & 19 deletions geonode_mapstore_client/client/js/routes/UploadDataset.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,12 +47,6 @@ const supportedDatasetTypes = [
ext: ['shp'],
requires: ['shp', 'prj', 'dbf', 'shx']
},
{
id: 'asc',
label: 'ASCII Text File',
format: 'raster',
ext: ['asc']
},
{
id: 'tiff',
label: 'GeoTIFF',
Expand All @@ -62,23 +56,11 @@ const supportedDatasetTypes = [
},
{
id: 'csv',
label: 'Comma Separated Value',
label: 'Comma Separated Value (CSV)',
format: 'vector',
ext: ['csv'],
mimeType: ['text/csv']
},
{
id: 'kml',
label: 'Google Earth KML',
format: 'archive',
ext: ['kml']
},
{
id: 'kmz',
label: 'Google Earth KMZ',
format: 'archive',
ext: ['kmz']
},
{
id: 'zip',
label: 'Zip Archive',
Expand Down

0 comments on commit 228588b

Please sign in to comment.