jumipeca / Ahorro_Combustible

Saving money in Fuel vehicle
0 stars 0 forks source link

Extract ordered gas station brand name list from JSON data at Precio de carburantes en las gasolineras españolas. #2

Open ixemad opened 5 years ago

ixemad commented 5 years ago

Issue created from the card entry Gas Station brands list.

ixemad commented 5 years ago

Input data are the JSON resources at Precio de carburantes en las gasolineras españolas.

ixemad commented 5 years ago

Feature branch ac-2 was created for this issue.

ixemad commented 5 years ago

File data/precios-gasolineras.json.gz was upload for testing. Last version of this file can be downloaded from the shell as shown below

curl https://sedeaplicaciones.minetur.gob.es/ServiciosRESTCarburantes/PreciosCarburantes/EstacionesTerrestres/ | \
  gzip > precios-gasolineras.json.gz
ixemad commented 5 years ago

Similar functionality can be reproduced from the command line using the jq tool as shown below

zcat precios-gasolineras.json.gz | jq '.ListaEESSPrecio[]."Rótulo"' | \
    sort | uniq -c | sort -r | head -n 10