I want to get the shapes of an area via overpass that is defined by the first two letters of the postal code. This query:
rel["boundary"="postal_code"][postal_code~"32..."];
out geom;
gets me a number of areas that I want to combine. I am interested in the path of the outer border, i.e. just a single large area instead of the many small ones.
You can see the result on http://overpass-turbo.eu/s/8il .
Is it possible to achieve this via an overpass query only? If not, what might be the most efficient way to provide a JavaScript application with the desired result?