We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bfe69d0 commit f9b2c69Copy full SHA for f9b2c69
formatters.js
@@ -117,7 +117,11 @@ const Formatters = {
117
case 'application/x.mrf':
118
return short ? 'MRF' : 'Meta Raster Format';
119
case 'application/wmo-GRIB2':
120
- return 'GRIB2';
+ return 'GRIB 2';
121
+ case 'application/grib':
122
+ return `GRIB ${media.parameters.edition || ""}`.trim();
123
+ case 'application/bufr':
124
+ return `BUFR ${media.parameters.edition || ""}`.trim();
125
case 'application/octet-stream':
126
return short ? 'Binary' : 'Binary file';
127
case 'application/vnd.laszip':
0 commit comments