Return the unicode name string at *name_str_offset* or |None| if decoding its format is not supported.
(
self, bufr, platform_id, encoding_id, strings_offset, name_str_offset, length
)
| 360 | return platform_id, name_id, name |
| 361 | |
| 362 | def _read_name_text( |
| 363 | self, bufr, platform_id, encoding_id, strings_offset, name_str_offset, length |
| 364 | ): |
| 365 | """ |
| 366 | Return the unicode name string at *name_str_offset* or |None| if |
| 367 | decoding its format is not supported. |
| 368 | """ |
| 369 | raw_name = self._raw_name_string(bufr, strings_offset, name_str_offset, length) |
| 370 | return self._decode_name(raw_name, platform_id, encoding_id) |
| 371 | |
| 372 | @lazyproperty |
| 373 | def _table_bytes(self): |