Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

282
Vistas
Why decoding the MVT using the specification protofile is different from using their python package

I'm decoding some proto buffers of Mapbox. See spec. In Python, I can do this pretty easily with:

import mapbox_vector_tile
mapbox_vector_tile.decode(buffer)

And I get the following JSON:

{
   "default":{
      "extent":4096,
      "version":2,
      "features":[
         {
            "geometry":{
               "type":"Point",
               "coordinates":[
                  1208,
                  2556
               ]
            },
            "properties":{
               "original_address":"11919 Jamaica Ave, Jamaica, NY 11418, EE. UU."
            },
            "id":0,
            "type":1
         },  
      ]
   }
}                      

BUT, if I do the same in Javascript, with the following code:

async function decodeMessage(buffer) {
  const PROTO_FILE = await protobuf.load("vector_tile.proto");
  const testMessage = PROTO_FILE.lookupType("vector_tile.Tile");
  const err = testMessage.verify(buffer);
  if (err) {
    throw err;
  }
  const message = testMessage.decode(buffer);
  return testMessage.toObject(message);
}

Being the vector_tile.proto the file from the specification 2.1 (or the 2.0, it does not matter). I get the following result:

{
    "layers": [
        {
            "name": "default",
            "features": [
                {
                    "tags": [
                        0,
                        0
                    ],
                    "type": 1,
                    "geometry": [
                        9,
                        2416,
                        3080
                    ]
                },
            ],
            "keys": [
                "original_address"
            ],
            "values": [
                {
                    "stringValue": "Haags Kwartier 55, 2491 BM Den Haag, Netherlands"
                }
            ],
            "extent": 4096,
            "version": 2
        }
    ]
}

I do not understand why this difference in the format. I suppose the python package does some additional processing. Is that the case? Is there a way to get the same result on javascript?

about 4 years ago · Juan Pablo Isaza
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda