mirror of
https://github.com/mapbox/tippecanoe.git
synced 2025-01-22 04:18:01 +00:00
Fix nulls and negative integers in geobuf parsing
This commit is contained in:
parent
c65a388597
commit
4d6ebaa088
@ -41,7 +41,7 @@ serial_val readValue(protozero::pbf_reader &pbf, std::vector<std::string> &keys)
|
|||||||
|
|
||||||
case 4:
|
case 4:
|
||||||
sv.type = mvt_double;
|
sv.type = mvt_double;
|
||||||
sv.s = std::to_string(-pbf.get_uint64());
|
sv.s = std::to_string(- (long long) pbf.get_uint64());
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 5:
|
case 5:
|
||||||
@ -56,6 +56,11 @@ serial_val readValue(protozero::pbf_reader &pbf, std::vector<std::string> &keys)
|
|||||||
case 6:
|
case 6:
|
||||||
sv.type = mvt_string; // stringified JSON
|
sv.type = mvt_string; // stringified JSON
|
||||||
sv.s = pbf.get_string();
|
sv.s = pbf.get_string();
|
||||||
|
|
||||||
|
if (sv.s == "null") {
|
||||||
|
sv.type = mvt_null;
|
||||||
|
}
|
||||||
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
|
Loading…
Reference in New Issue
Block a user