Lab 03: Indexing and Relevance Ranking on Geo-Texts#

In this tutorial, we will experiment on checking/implementing some information retrieval techniques on a geo-text. Most of these techniques like R-tree, TF-IDF, relevance ranking, cosine similarity, etc. have been covered in the lecture. Techniques that you have learnt in Lab 1 and 2 (e.g., geopandas, osm, etc.) will be used/enhanced in this tutoiral. Meanwhile, new techniques such as wordcloud will also be introduced.

A summary of packages you will be using:

Okay, now let’s discuss first in a very general sense what we want to achieve in this tutorial. The goal is to understand the (functional) characteristics of regions in the City of Bristol. To do it, we use the points of interest and their types (e.g., restaurant, school, police office) as a proxy to quantify such a “functional” characteristics. Namely, if a region has a lot of restrants and bars, it might be more likely to be characterized as a food/entertainment region. It is then clearly different from another region where most points of interet are types of, for instance, school and nursery.

More interestingly, we do not only want to qualitatively describe these regions, we also need a more quantitative method so that computers can also understand it and then retrieve information for us more accurately and effectively.

Part 1: Load the local regions (Lower Super Output Areas 2011) for the City of Bristol#

First of all, let’s load the region data about Bristol. There are many ways to delineate the City (e.g., by administrative office or by local citizens’ perception/activity). In this tutorial, we use the data called Lower Super Output Areas 2011. It is created for the collection of census data. “Lower Super Output Areas (LSOAs) are a national geography for collecting, aggregating and reporting statistics. They were designed to improve the reporting of small area statistics and are built up from groups of Output Areas”. You can download the data from the Open Data Bristol portal or find the downloaded file from Blackboard. The code below then loads the data into Python and convert it to a geodataframe.

Several tips:

  • replace the directory to where your data is downloaded. ../ in my code means going up one level in the directory

  • sometimes, we can ignore the parameter delimiter in pd.read_csv if the delimiter is by default comma. But here, since it is semicolon, we need to indicate it (you can try to see what kind of errors you will encourter if you do not include it)

  • the raw data provide geomery information in a geojson format like {"coordinates": [[[-2.5705649134167503, 51.408..., to convert it to a format as well-know text, which is supported by geopandas/shapely, we write a function parse_geom

import geopandas as gpd
import pandas as pd
import json
from shapely.geometry import shape


def parse_geom(geom_str):
    try:
        return shape(json.loads(geom_str))
    except (TypeError, AttributeError):  # Handle NaN and empty strings
        return None

bristol_lsoal_df = pd.read_csv('../../LabData/Lab3/lsoa110.csv', delimiter=';')
bristol_lsoal_df["geom"] = bristol_lsoal_df["geo_shape"].apply(parse_geom)
bristol_lsoal_gdf = gpd.GeoDataFrame(bristol_lsoal_df, geometry="geom")
print(bristol_lsoal_gdf.head())
   OBJECTID LSOA11 Code   LSOA11 Name LSOA11 Local name MSOA11 Code  \
0         7   E01014612  Bristol 052B    Fortfield East   E02003063   
1         8   E01014512  Bristol 016E   Somerville Road   E02003027   
2        18   E01014618  Bristol 011C    Henleaze North   E02003022   
3        36   E01014576  Bristol 019D        Rose Green   E02003030   
4        24   E01033370  Bristol 054E   Redcliffe South   E02006887   

   Ward code  Area square mteres  Perimeter (m)  MI_PRINX  \
0  E05001989       250084.343750    3010.960449         2   
1  E05001975       178468.437500    3093.555908       152   
2  E05001990       324102.562500    4205.579590       921   
3  E05001984       469484.093750    3586.286133       976   
4  E05001995       126227.867188    2103.395020        19   

                                           geo_shape  \
0  {"coordinates": [[[-2.5705649134167503, 51.408...   
1  {"coordinates": [[[-2.5836634052406393, 51.476...   
2  {"coordinates": [[[-2.610432616527603, 51.4856...   
3  {"coordinates": [[[-2.5511455096576006, 51.463...   
4  {"coordinates": [[[-2.5911512584061063, 51.445...   

                            geo_point_2d  \
0  51.409649589944884,-2.566230812955203   
1   51.47614221648566,-2.588736496528701   
2  51.489587737185744,-2.606558179420023   
3  51.46845752679203,-2.5464321087549955   
4  51.44681337159509,-2.5874479497333067   

                                                geom  
0  POLYGON ((-2.57056 51.40811, -2.57048 51.40829...  
1  POLYGON ((-2.58366 51.47624, -2.58344 51.47609...  
2  POLYGON ((-2.61043 51.48565, -2.61012 51.48600...  
3  POLYGON ((-2.55115 51.46378, -2.55102 51.46396...  
4  POLYGON ((-2.59115 51.44567, -2.59098 51.44604...  

Alternatively, you can load shapefiles (or geojson, geopackages formated data) using the read_file() function of geopandas, which will directly load the geo-referenced file as a geodataframe. Note that you can download the LSOA_2011 of Bristol in different formats from the Open Data Bristol portal too.

bristol_shp_dir = '../../LabData/Lab3/LSOA_2011_(simplified)/LSOA_2011_(simplified).shp'
bristol_lsoal_gdf2 = gpd.read_file(bristol_shp_dir)
bristol_lsoal_gdf2.head()
OBJECTID LSOA11CD LSOA11NM LSOA11LN MSOA11CD WARDCD WARDNM AREA_M2 PERIMETER_ Shape__Are Shape__Len geometry
0 1 E01014485 Bristol 023A Mina Road E02003034 E05001972 Ashley 274649.437500 3500.999023 271234.427200 3345.873087 POLYGON ((360647.016 174587.134, 360638.381 17...
1 2 E01033366 Bristol 023H St Pauls Grosvenor Road E02003034 E05001972 Ashley 92561.281250 1667.071045 91912.916122 1590.649592 POLYGON ((359458.000 173935.000, 359464.000 17...
2 3 E01014486 Bristol 023B St Agnes E02003034 E05001972 Ashley 276066.531250 4337.872559 276957.510246 4153.567496 POLYGON ((360249.713 174716.608, 360224.497 17...
3 4 E01014489 Bristol 023D Lower Montpelier E02003034 E05001972 Ashley 171743.171875 2755.843506 171822.423092 2655.816875 POLYGON ((359628.089 174397.518, 359611.263 17...
4 5 E01014488 Bristol 023C Upper Montpelier E02003034 E05001972 Ashley 188000.250000 2753.252197 188759.246117 2636.044692 POLYGON ((359628.089 174397.518, 359604.571 17...

Now, even though bristol_lsoal_gdf is created as a geodataframe, we still want to check if the crs is set up already because sometimes we can easily forgot it. Then, .crs can be used here (crs is an attribute of geodataframe):

bristol_lsoal_gdf.crs is None
True

Since there is no crs being set up in this example, we will assign a crs by using:

bristol_lsoal_gdf.crs = 'epsg:4326'
bristol_lsoal_gdf.crs
<Geographic 2D CRS: EPSG:4326>
Name: WGS 84
Axis Info [ellipsoidal]:
- Lat[north]: Geodetic latitude (degree)
- Lon[east]: Geodetic longitude (degree)
Area of Use:
- name: World.
- bounds: (-180.0, -90.0, 180.0, 90.0)
Datum: World Geodetic System 1984 ensemble
- Ellipsoid: WGS 84
- Prime Meridian: Greenwich

So, how do I know it is epsg:4326?

As usual, we can easily plot the regions:

bristol_lsoal_gdf.plot()
<Axes: >
../_images/fcfb09d4ae4253b97127c1f458a6fd6b95474ada0f00bc9cb55f1958b8d1f623.png

Part 2: Load in the Points of Interest (POI) from OSM#

Alright, now we have the regions in the City of Bristol. We next want to get the POIs in the City. There are many ways to get the POIs, many of which have been introduced in the lecture (e.g., Yelp and Foursquare). Since we have already used OSM, why not playing with the POIs provided from OSM?

As you may recall there are also many ways to load OSM data into Python. For example, you can readily use pyrosm to get the POIs in Bristol:

from pyrosm import OSM, get_data
bristol = get_data("bristol")
osm = OSM(bristol)
bristol_pois = osm.get_pois()

However, some of you have encourtered issues of using this package. The main reason is that this package is sometimes out of date and its dependencies are not updated so that your system might have conflicts with it. The data extracted by this approach is sometimes also the very raw one without any preprocessing.

The second way, which is recommended in this tutorial, is to directly download the data from https://download.geofabrik.de/, and then load it to Python:

## Option 2 (Recommended): directly download it from the website and load it into python
bristol_pois_file = "../../LabData/Lab3/gis_osm_pois_a_free_1.shp"
bristol_pois = gpd.read_file(bristol_pois_file)
bristol_pois.head()
osm_id code fclass name geometry
0 3894324 2204 park Portland Square POLYGON ((-2.58600 51.46103, -2.58600 51.46110...
1 4297151 2204 park Gainsborough Square POLYGON ((-2.56426 51.49027, -2.56422 51.49031...
2 4309554 2008 town_hall Bristol City Hall POLYGON ((-2.60242 51.45242, -2.60241 51.45244...
3 4313536 2204 park None POLYGON ((-2.57615 51.49791, -2.57609 51.49803...
4 4313541 2204 park Poets Park POLYGON ((-2.57429 51.49952, -2.57419 51.49972...

As can be seen, there is a fclass column indicating the place type of the poi. We wil regard it as a token/term of a document, which will be explained in more detail later.

Again, let’s double check the crs of this data:

bristol_pois.crs
<Geographic 2D CRS: EPSG:4326>
Name: WGS 84
Axis Info [ellipsoidal]:
- Lat[north]: Geodetic latitude (degree)
- Lon[east]: Geodetic longitude (degree)
Area of Use:
- name: World.
- bounds: (-180.0, -90.0, 180.0, 90.0)
Datum: World Geodetic System 1984 ensemble
- Ellipsoid: WGS 84
- Prime Meridian: Greenwich

Let’s also check the number of place types we have in this dataset:

len(set(bristol_pois['fclass']))
104

Don’t forget we can also use .info() to summary the basic info about such a dataset. For example, from the info below, we know that there are 5370 pois in this dataset.

bristol_pois.info() # you can also use list(bristol_pois.columns) to check the list of the columns 
<class 'geopandas.geodataframe.GeoDataFrame'>
RangeIndex: 5370 entries, 0 to 5369
Data columns (total 5 columns):
 #   Column    Non-Null Count  Dtype   
---  ------    --------------  -----   
 0   osm_id    5370 non-null   object  
 1   code      5370 non-null   int64   
 2   fclass    5370 non-null   object  
 3   name      4567 non-null   object  
 4   geometry  5370 non-null   geometry
dtypes: geometry(1), int64(1), object(3)
memory usage: 209.9+ KB

And, we can also simply plot these pois:

bristol_pois.plot()
<Axes: >
../_images/fde6a06e69897647f71542206cb70703e1a1652941cb9427f4ba5f2cedcc9fc1.png

Part 3: Use WordCloud to Characterize Regions#

For natural languages like the place types, a popular way to visulize it is to use a technique called WordCloud. It draws a “cloud” of words, where the position and size of the word is determined by its frequency in the document. In Python, we can use the package wordcloud to implement it. To do it, we need a document that contains words/tokens.

However, what is the document in our case study here?

There can be many ways and you are encouraged to be creative in answering this question. One way we will experiment here is to regard the whole City of Bristol as a document. Its words/tokens are those place types whose georeferenced POIs are within the City of Bristol.

Let’s next see how we implement it. We first need to convert the column fclass in geodataframe to a string (document). Then we can use the function WordCloud provided by the package wordcloud to build the cloud map. Note that the example showing below can be modified to other versions. You can check the wordcloud gallaries for some inspirations.

## use word cloud to visualize the frequency of poi types mentioned in Bristol 
# first you need to install the package of wordcloud 
from wordcloud import WordCloud, STOPWORDS
import matplotlib.pyplot as plt

bristol_pois_doc = " ".join(list(bristol_pois['fclass']))

wordcloud = WordCloud(width = 800, height = 800,
                background_color ='white',
                min_font_size = 10).generate(bristol_pois_doc)

# plot the WordCloud image                      
plt.figure(figsize = (8, 8), facecolor = None)
plt.imshow(wordcloud)
plt.axis("off")
plt.tight_layout(pad = 0)
 
plt.show()
../_images/0e5ed9268d3d70522ac6968a3633fe3f3b8ceda11f698edabea7186240c2b6fd.png

So, we here regarded the whole City as a document. Can you try to implement it by regarding each LSOA11 region as the document? What other approaches can you think of?

Part 4: Preprocessing the data for GIR#

After exploring some new techniques of visualizing regions using natural language processing techniques, next let’s come back to the implemention of techniques we have learnt in the lecture.

First, we would like to create a dataset where place types of POIs are assigned to each LSOA11 regions, as in later experiment, we will regard the LSOA11 regions as documents and place types will be the words/tokens.

To do it, we can use sjoin(), which we have learnt before. Note the meaning of the parameters in the function, e.g., how and op.

bristol_lsoal_pois = gpd.sjoin(bristol_lsoal_gdf, bristol_pois , how="left", op='intersects')
bristol_lsoal_pois.head()
/Users/gy22808/opt/anaconda3/envs/ox/lib/python3.12/site-packages/IPython/core/interactiveshell.py:3493: FutureWarning: The `op` parameter is deprecated and will be removed in a future release. Please use the `predicate` parameter instead.
  if await self.run_code(code, result, async_=asy):
OBJECTID LSOA11 Code LSOA11 Name LSOA11 Local name MSOA11 Code Ward code Area square mteres Perimeter (m) MI_PRINX geo_shape geo_point_2d geom index_right osm_id code fclass name
0 7 E01014612 Bristol 052B Fortfield East E02003063 E05001989 250084.34375 3010.960449 2 {"coordinates": [[[-2.5705649134167503, 51.408... 51.409649589944884,-2.566230812955203 POLYGON ((-2.57056 51.40811, -2.57048 51.40829... 1172.0 211278259 2204.0 park Briery Leaze Road Open Space
0 7 E01014612 Bristol 052B Fortfield East E02003063 E05001989 250084.34375 3010.960449 2 {"coordinates": [[[-2.5705649134167503, 51.408... 51.409649589944884,-2.566230812955203 POLYGON ((-2.57056 51.40811, -2.57048 51.40829... 4126.0 436088974 2205.0 playground None
0 7 E01014612 Bristol 052B Fortfield East E02003063 E05001989 250084.34375 3010.960449 2 {"coordinates": [[[-2.5705649134167503, 51.408... 51.409649589944884,-2.566230812955203 POLYGON ((-2.57056 51.40811, -2.57048 51.40829... 5114.0 750955626 2253.0 swimming_pool None
0 7 E01014612 Bristol 052B Fortfield East E02003063 E05001989 250084.34375 3010.960449 2 {"coordinates": [[[-2.5705649134167503, 51.408... 51.409649589944884,-2.566230812955203 POLYGON ((-2.57056 51.40811, -2.57048 51.40829... 5113.0 750955625 2253.0 swimming_pool None
1 8 E01014512 Bristol 016E Somerville Road E02003027 E05001975 178468.43750 3093.555908 152 {"coordinates": [[[-2.5836634052406393, 51.476... 51.47614221648566,-2.588736496528701 POLYGON ((-2.58366 51.47624, -2.58344 51.47609... 447.0 121690642 2013.0 nursing_home Sycamore Court

There are many columns from OSM that we might not use. Here we can remove them by using codes like:

drop_cols = ['index_right', 'osm_id', 'code', 'name']
bristol_lsoal_pois_dropped = bristol_lsoal_pois.drop(drop_cols, axis=1)
bristol_lsoal_pois_dropped.head()
OBJECTID LSOA11 Code LSOA11 Name LSOA11 Local name MSOA11 Code Ward code Area square mteres Perimeter (m) MI_PRINX geo_shape geo_point_2d geom fclass
0 7 E01014612 Bristol 052B Fortfield East E02003063 E05001989 250084.34375 3010.960449 2 {"coordinates": [[[-2.5705649134167503, 51.408... 51.409649589944884,-2.566230812955203 POLYGON ((-2.57056 51.40811, -2.57048 51.40829... park
0 7 E01014612 Bristol 052B Fortfield East E02003063 E05001989 250084.34375 3010.960449 2 {"coordinates": [[[-2.5705649134167503, 51.408... 51.409649589944884,-2.566230812955203 POLYGON ((-2.57056 51.40811, -2.57048 51.40829... playground
0 7 E01014612 Bristol 052B Fortfield East E02003063 E05001989 250084.34375 3010.960449 2 {"coordinates": [[[-2.5705649134167503, 51.408... 51.409649589944884,-2.566230812955203 POLYGON ((-2.57056 51.40811, -2.57048 51.40829... swimming_pool
0 7 E01014612 Bristol 052B Fortfield East E02003063 E05001989 250084.34375 3010.960449 2 {"coordinates": [[[-2.5705649134167503, 51.408... 51.409649589944884,-2.566230812955203 POLYGON ((-2.57056 51.40811, -2.57048 51.40829... swimming_pool
1 8 E01014512 Bristol 016E Somerville Road E02003027 E05001975 178468.43750 3093.555908 152 {"coordinates": [[[-2.5836634052406393, 51.476... 51.47614221648566,-2.588736496528701 POLYGON ((-2.58366 51.47624, -2.58344 51.47609... nursing_home

There are still many things we need to process before this data can be used for our later study. One thing is that the column fclass might not be recorded as a str (natural language based string) as we expect. To ensure it is, we can use the code:

bristol_lsoal_pois_dropped['fclass'] = bristol_lsoal_pois_dropped['fclass'].astype('str') 
bristol_lsoal_pois_dropped.head()
OBJECTID LSOA11 Code LSOA11 Name LSOA11 Local name MSOA11 Code Ward code Area square mteres Perimeter (m) MI_PRINX geo_shape geo_point_2d geom fclass
0 7 E01014612 Bristol 052B Fortfield East E02003063 E05001989 250084.34375 3010.960449 2 {"coordinates": [[[-2.5705649134167503, 51.408... 51.409649589944884,-2.566230812955203 POLYGON ((-2.57056 51.40811, -2.57048 51.40829... park
0 7 E01014612 Bristol 052B Fortfield East E02003063 E05001989 250084.34375 3010.960449 2 {"coordinates": [[[-2.5705649134167503, 51.408... 51.409649589944884,-2.566230812955203 POLYGON ((-2.57056 51.40811, -2.57048 51.40829... playground
0 7 E01014612 Bristol 052B Fortfield East E02003063 E05001989 250084.34375 3010.960449 2 {"coordinates": [[[-2.5705649134167503, 51.408... 51.409649589944884,-2.566230812955203 POLYGON ((-2.57056 51.40811, -2.57048 51.40829... swimming_pool
0 7 E01014612 Bristol 052B Fortfield East E02003063 E05001989 250084.34375 3010.960449 2 {"coordinates": [[[-2.5705649134167503, 51.408... 51.409649589944884,-2.566230812955203 POLYGON ((-2.57056 51.40811, -2.57048 51.40829... swimming_pool
1 8 E01014512 Bristol 016E Somerville Road E02003027 E05001975 178468.43750 3093.555908 152 {"coordinates": [[[-2.5836634052406393, 51.476... 51.47614221648566,-2.588736496528701 POLYGON ((-2.58366 51.47624, -2.58344 51.47609... nursing_home

More importantly, we need to group the place types (words/terms) to LSOA11 regions (documents). To do so, we can use the groupby() function provided in pandas. Here is how it looks like:

bristol_lsoal_pois_dropped.groupby('LSOA11 Code')['fclass'].apply(list)
LSOA11 Code
E01014485    [sports_centre, sports_centre, recycling_metal...
E01014486    [sports_centre, pitch, pitch, pitch, cafe, pit...
E01014487    [hairdresser, clothes, sports_shop, furniture_...
E01014488    [park, ruins, pitch, school, school, school, p...
E01014489    [community_centre, fast_food, convenience, caf...
                                   ...                        
E01033364    [sports_shop, convenience, fast_food, convenie...
E01033366    [convenience, playground, library, cafe, park,...
E01033367    [mall, cafe, park, pub, playground, restaurant...
E01033369    [car_dealership, recycling_glass, stationery, ...
E01033370    [convenience, restaurant, kindergarten, school...
Name: fclass, Length: 263, dtype: object

Once we have the grouped dataframe, we want to join it back to the bristol_lsoal_gdf dataframe. Here we can use a general join():

bristol_lsoal_poi_full = bristol_lsoal_gdf.join(bristol_lsoal_pois_dropped.groupby('LSOA11 Code')['fclass'].apply(list), on='LSOA11 Code')
bristol_lsoal_poi_full.head()
OBJECTID LSOA11 Code LSOA11 Name LSOA11 Local name MSOA11 Code Ward code Area square mteres Perimeter (m) MI_PRINX geo_shape geo_point_2d geom fclass
0 7 E01014612 Bristol 052B Fortfield East E02003063 E05001989 250084.343750 3010.960449 2 {"coordinates": [[[-2.5705649134167503, 51.408... 51.409649589944884,-2.566230812955203 POLYGON ((-2.57056 51.40811, -2.57048 51.40829... [park, playground, swimming_pool, swimming_pool]
1 8 E01014512 Bristol 016E Somerville Road E02003027 E05001975 178468.437500 3093.555908 152 {"coordinates": [[[-2.5836634052406393, 51.476... 51.47614221648566,-2.588736496528701 POLYGON ((-2.58366 51.47624, -2.58344 51.47609... [nursing_home, hairdresser, computer_shop, fas...
2 18 E01014618 Bristol 011C Henleaze North E02003022 E05001990 324102.562500 4205.579590 921 {"coordinates": [[[-2.610432616527603, 51.4856... 51.489587737185744,-2.606558179420023 POLYGON ((-2.61043 51.48565, -2.61012 51.48600... [kindergarten, convenience, hairdresser, fast_...
3 36 E01014576 Bristol 019D Rose Green E02003030 E05001984 469484.093750 3586.286133 976 {"coordinates": [[[-2.5511455096576006, 51.463... 51.46845752679203,-2.5464321087549955 POLYGON ((-2.55115 51.46378, -2.55102 51.46396... [sports_shop, beauty_shop, convenience, fast_f...
4 24 E01033370 Bristol 054E Redcliffe South E02006887 E05001995 126227.867188 2103.395020 19 {"coordinates": [[[-2.5911512584061063, 51.445... 51.44681337159509,-2.5874479497333067 POLYGON ((-2.59115 51.44567, -2.59098 51.44604... [convenience, restaurant, kindergarten, school...

We can also save the data as a pickle for future use by applying the following code. pickle is a module in python that convert python object into a byte stream (called “Pickling”), and vice verse (called “unpickling”).

bristol_lsoal_poi_full.to_pickle("./bristol_lsoal_poi_full.pkl")

Part 5: Compute TF-IDF#

After the preprocessing, now let’s apply some techniques in IR on these unstructured geo-text (i.e., poi’s place types for regions). There are many things we can do here. The first thing we want is to find the most representative place types for the region, in analogy to finding the representative words in a document. So, we can use the TF-IDF we discussed in the lecture to do so.

Before computing TF-IDF, we need to have a vocabulary. Here we simply call it a wordSet, which includes all the unique terms used in the document:

wordSet = set()
for index, row in bristol_lsoal_poi_full.iterrows():  
    wordSet = wordSet.union(set(row['fclass']))
wordSet
{'archaeological',
 'arts_centre',
 'artwork',
 'attraction',
 'bakery',
 'bank',
 'bar',
 'beauty_shop',
 'beverages',
 'bicycle_shop',
 'bookshop',
 'butcher',
 'cafe',
 'camp_site',
 'car_dealership',
 'car_rental',
 'car_wash',
 'caravan_site',
 'castle',
 'chemist',
 'cinema',
 'clinic',
 'clothes',
 'college',
 'comms_tower',
 'community_centre',
 'computer_shop',
 'convenience',
 'courthouse',
 'dentist',
 'department_store',
 'doctors',
 'doityourself',
 'fast_food',
 'fire_station',
 'florist',
 'food_court',
 'fountain',
 'furniture_shop',
 'garden_centre',
 'gift_shop',
 'golf_course',
 'graveyard',
 'greengrocer',
 'guesthouse',
 'hairdresser',
 'hospital',
 'hostel',
 'hotel',
 'jeweller',
 'kindergarten',
 'laundry',
 'library',
 'mall',
 'market_place',
 'memorial',
 'mobile_phone_shop',
 'monument',
 'museum',
 'nan',
 'newsagent',
 'nightclub',
 'nursing_home',
 'observation_tower',
 'optician',
 'outdoor_shop',
 'park',
 'pharmacy',
 'picnic_site',
 'pitch',
 'playground',
 'police',
 'post_office',
 'prison',
 'pub',
 'public_building',
 'recycling',
 'recycling_glass',
 'recycling_metal',
 'restaurant',
 'ruins',
 'school',
 'shelter',
 'shoe_shop',
 'sports_centre',
 'sports_shop',
 'stadium',
 'stationery',
 'supermarket',
 'swimming_pool',
 'theatre',
 'theme_park',
 'toilet',
 'tourist_info',
 'tower',
 'town_hall',
 'toy_shop',
 'track',
 'travel_agent',
 'university',
 'veterinary',
 'video_shop',
 'wastewater_plant',
 'water_tower',
 'water_works'}

Once we have the vocabulary, next we will see how frequently each word/token in the vacabulary occurred in each of my document:

docDic = {}
for index, row in bristol_lsoal_poi_full.iterrows():   
    doc = row['fclass']
    wordDict = dict.fromkeys(wordSet, 0) 
    for word in doc:
        wordDict[word]+=1
    docDic[row['LSOA11 Code']] = wordDict
docDic
{'E01014612': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 2,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014512': {'cafe': 1,
  'university': 0,
  'market_place': 0,
  'community_centre': 1,
  'restaurant': 3,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 3,
  'college': 1,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 1,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 1,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 1,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 3,
  'doityourself': 3,
  'hostel': 0,
  'bakery': 0,
  'butcher': 1,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 1,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 1,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 0,
  'car_wash': 1,
  'fountain': 0,
  'dentist': 1,
  'theatre': 1,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 2,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 1},
 'E01014618': {'cafe': 1,
  'university': 0,
  'market_place': 0,
  'community_centre': 1,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 2,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 1,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 3,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 2,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 2,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 2},
 'E01014576': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 1,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 1,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 1,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 1,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 2,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 1,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 2,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01033370': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 1,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 1,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 1,
  'furniture_shop': 1,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 2,
  'observation_tower': 0,
  'fast_food': 2,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 2,
  'pitch': 3,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 1},
 'E01014518': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 1,
  'car_dealership': 1,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 1,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 3,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 2,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 1,
  'car_wash': 1,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 1,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014731': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 1,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 1,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 1,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 1,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 1,
  'pub': 4,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01033345': {'cafe': 14,
  'university': 0,
  'market_place': 0,
  'community_centre': 1,
  'restaurant': 23,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 2,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 2,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 1,
  'pharmacy': 1,
  'car_dealership': 0,
  'furniture_shop': 1,
  'water_works': 0,
  'beverages': 3,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 4,
  'beauty_shop': 2,
  'bar': 7,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 1,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 1,
  'track': 0,
  'castle': 0,
  'florist': 1,
  'sports_centre': 1,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 1,
  'supermarket': 2,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 1,
  'observation_tower': 0,
  'fast_food': 13,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 1,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 5,
  'car_wash': 0,
  'fountain': 5,
  'dentist': 0,
  'theatre': 2,
  'fire_station': 0,
  'post_office': 0,
  'museum': 2,
  'ruins': 0,
  'library': 1,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 9,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 1,
  'greengrocer': 0,
  'pub': 9,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 1,
  'clothes': 2,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014591': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 3,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 2,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 1,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 2,
  'hostel': 0,
  'bakery': 1,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 2,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 2,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014611': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 1,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 1,
  'castle': 0,
  'florist': 0,
  'sports_centre': 1,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 1,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 3,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 1,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014550': {'cafe': 1,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 2,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 2,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 1,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 2,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 1,
  'doityourself': 1,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 3,
  'outdoor_shop': 1,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 1,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 1,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 5,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014568': {'cafe': 3,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 9,
  'hospital': 0,
  'travel_agent': 2,
  'arts_centre': 0,
  'toy_shop': 1,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 5,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 1,
  'pharmacy': 2,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 1,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 2,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 2,
  'butcher': 3,
  'tourist_info': 0,
  'supermarket': 4,
  'public_building': 0,
  'playground': 2,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 7,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 2,
  'car_wash': 1,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 5,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 4,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 3,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01033359': {'cafe': 8,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 1,
  'hospital': 0,
  'travel_agent': 1,
  'arts_centre': 1,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 1,
  'artwork': 0,
  'convenience': 2,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 1,
  'pharmacy': 1,
  'car_dealership': 1,
  'furniture_shop': 2,
  'water_works': 0,
  'beverages': 1,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 2,
  'archaeological': 0,
  'optician': 2,
  'mobile_phone_shop': 7,
  'swimming_pool': 0,
  'nightclub': 1,
  'beauty_shop': 3,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 1,
  'clinic': 1,
  'department_store': 0,
  'jeweller': 1,
  'nursing_home': 0,
  'toilet': 1,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 1,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 1,
  'tourist_info': 0,
  'supermarket': 1,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 9,
  'outdoor_shop': 1,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 1,
  'car_wash': 1,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 1,
  'museum': 0,
  'ruins': 0,
  'library': 1,
  'doctors': 1,
  'courthouse': 0,
  'hairdresser': 7,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 1,
  'pub': 6,
  'pitch': 1,
  'camp_site': 0,
  'chemist': 1,
  'attraction': 0,
  'clothes': 2,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014549': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 1,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 1,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014554': {'cafe': 1,
  'university': 2,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 3,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 2,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 1,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 1,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 1,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 2,
  'observation_tower': 0,
  'fast_food': 2,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 1,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 1,
  'nan': 0,
  'school': 1,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 1,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 3,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 3,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 1},
 'E01014585': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 1,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 2,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 2,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014600': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 1,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014648': {'cafe': 1,
  'university': 0,
  'market_place': 0,
  'community_centre': 1,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 1,
  'monument': 0,
  'stationery': 0,
  'newsagent': 1,
  'food_court': 0,
  'graveyard': 1,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 1,
  'gift_shop': 1,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 2,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 1,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 1,
  'track': 0,
  'castle': 0,
  'florist': 1,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 1,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 3,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 2,
  'car_wash': 1,
  'fountain': 0,
  'dentist': 1,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 2,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 1,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 4,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 2},
 'E01014566': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 2,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 1,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 3,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 1,
  'car_dealership': 1,
  'furniture_shop': 1,
  'water_works': 0,
  'beverages': 4,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 1,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 2,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 1,
  'hostel': 0,
  'bakery': 2,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 5,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 1,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 1,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 2,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 3,
  'pitch': 3,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014654': {'cafe': 7,
  'university': 0,
  'market_place': 0,
  'community_centre': 1,
  'restaurant': 3,
  'hospital': 0,
  'travel_agent': 1,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 6,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 1,
  'car_dealership': 1,
  'furniture_shop': 2,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 1,
  'mobile_phone_shop': 2,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 2,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 1,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 2,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 4,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 2,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 7,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 1,
  'bookshop': 0,
  'nan': 0,
  'school': 3,
  'park': 4,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 1,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 3,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 1,
  'town_hall': 0,
  'greengrocer': 1,
  'pub': 0,
  'pitch': 3,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 2,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014649': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 1,
  'restaurant': 2,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 1,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 1,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 1,
  'courthouse': 0,
  'hairdresser': 2,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 1,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014636': {'cafe': 1,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 1,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 1,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014569': {'cafe': 1,
  'university': 0,
  'market_place': 0,
  'community_centre': 1,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 1,
  'car_dealership': 4,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 1,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 1,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 1,
  'pub': 1,
  'pitch': 1,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014532': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 1,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 2,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014560': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 2,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 1,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 1,
  'nightclub': 0,
  'beauty_shop': 1,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 2,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 1,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 2,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 1,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 1,
  'courthouse': 0,
  'hairdresser': 3,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014587': {'cafe': 1,
  'university': 4,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 1,
  'hospital': 1,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 2,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 1,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 1,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 1,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 3,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 2,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 3,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014592': {'cafe': 1,
  'university': 0,
  'market_place': 0,
  'community_centre': 1,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 1,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 1,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 1,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 2,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 4,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 1,
  'police': 1,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 1,
  'stadium': 0,
  'kindergarten': 1},
 'E01014706': {'cafe': 1,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 3,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 2,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 1,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 5,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 2,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 1,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 2,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 1,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 1},
 'E01014642': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 2,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 1,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 2,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 2,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 2,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01033366': {'cafe': 1,
  'university': 0,
  'market_place': 0,
  'community_centre': 1,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 2,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 3,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 1,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 1,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014553': {'cafe': 9,
  'university': 0,
  'market_place': 0,
  'community_centre': 1,
  'restaurant': 7,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 1,
  'monument': 0,
  'stationery': 0,
  'newsagent': 1,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 2,
  'college': 0,
  'garden_centre': 0,
  'shelter': 2,
  'gift_shop': 1,
  'pharmacy': 1,
  'car_dealership': 0,
  'furniture_shop': 9,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 2,
  'bank': 0,
  'archaeological': 0,
  'optician': 2,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 3,
  'bar': 3,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 1,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 1,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 1,
  'doityourself': 1,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 2,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 2,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 1,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 1,
  'nan': 0,
  'school': 1,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 1,
  'doctors': 1,
  'courthouse': 0,
  'hairdresser': 2,
  'police': 1,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 1,
  'town_hall': 0,
  'greengrocer': 1,
  'pub': 3,
  'pitch': 1,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 1,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 2},
 'E01014632': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 1,
  'restaurant': 0,
  'hospital': 1,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 1,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 1,
  'doityourself': 1,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 1,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 2,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 1,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 1,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 1,
  'courthouse': 0,
  'hairdresser': 3,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 4,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014644': {'cafe': 1,
  'university': 0,
  'market_place': 0,
  'community_centre': 1,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 2,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 1,
  'nightclub': 0,
  'beauty_shop': 2,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 1,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 1,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 6,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 1,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 1,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 1,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 2,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014733': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 1,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 1,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 2,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 2,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014588': {'cafe': 0,
  'university': 1,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 1,
  'hospital': 1,
  'travel_agent': 1,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 1,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 1,
  'archaeological': 0,
  'optician': 1,
  'mobile_phone_shop': 1,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 2,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 1,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 4,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 4,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 2,
  'park': 3,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 1,
  'ruins': 0,
  'library': 1,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 2,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 2,
  'pitch': 1,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 1,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014487': {'cafe': 1,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 1,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 1,
  'gift_shop': 1,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 1,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 1,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 1,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 1,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 1,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 2,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 1,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 1,
  'pub': 0,
  'pitch': 1,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 1,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 1},
 'E01014633': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 1,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 1,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 1,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 1,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 1,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 1,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01033362': {'cafe': 3,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 2,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 1,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 2,
  'furniture_shop': 2,
  'water_works': 0,
  'beverages': 1,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 2,
  'bar': 1,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 1,
  'department_store': 0,
  'jeweller': 1,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 1,
  'sports_centre': 0,
  'doityourself': 3,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 1,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 5,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 1,
  'nan': 0,
  'school': 0,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 4,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 1,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 3,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 1,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014722': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014687': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 1,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 1,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 1,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 1,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 1,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 2,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014577': {'cafe': 1,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 2,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 2,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 1,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 2,
  'park': 4,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 1,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 2,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014725': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014575': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 1,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 1,
  'water_tower': 0,
  'tower': 1,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 1,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 7,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 1},
 'E01014692': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 1,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 1,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 1,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 2,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 1,
  'car_wash': 1,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 2,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 3,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01033347': {'cafe': 2,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 2,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 1,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 2,
  'college': 1,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 1,
  'beauty_shop': 0,
  'bar': 3,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 1,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 2,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 3,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 2,
  'park': 3,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 1,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 2,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014645': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 2,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 1,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 1,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 1,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 2,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 2,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 1,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 4,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 3,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014498': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 1,
  'car_rental': 2,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 1,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 3,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 2,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 1,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 1,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 1,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 2,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 3,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 1,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 1,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 6,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014617': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 2,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 1,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 2,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 1,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 1,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 3,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014539': {'cafe': 1,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 1,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 2,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 1,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 1,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 1,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 2,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 1,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 4,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014670': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 1,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 2,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 1,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 1,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 1,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 1,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014640': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 2,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 1,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 2,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 5,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 1},
 'E01014679': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 1,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 1,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 1,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014653': {'cafe': 2,
  'university': 0,
  'market_place': 0,
  'community_centre': 1,
  'restaurant': 2,
  'hospital': 0,
  'travel_agent': 1,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 6,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 1,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 1,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 1,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 1,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 2,
  'tourist_info': 0,
  'supermarket': 1,
  'public_building': 0,
  'playground': 3,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 2,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 1,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 2,
  'park': 4,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 1,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 2,
  'pitch': 2,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014676': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 1,
  'school': 0,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014601': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 1,
  'restaurant': 0,
  'hospital': 1,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 4,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 1,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014651': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 1,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 1,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 1,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 1,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 1},
 'E01032518': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 1,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014521': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 2,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 1,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 4,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014664': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 1,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 1,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 2,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 5,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 2,
  'camp_site': 1,
  'chemist': 0,
  'attraction': 1,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014489': {'cafe': 6,
  'university': 0,
  'market_place': 0,
  'community_centre': 1,
  'restaurant': 4,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 6,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 1,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 1,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 1,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 1,
  'butcher': 1,
  'tourist_info': 0,
  'supermarket': 1,
  'public_building': 0,
  'playground': 2,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 5,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 2,
  'park': 2,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 1,
  'courthouse': 0,
  'hairdresser': 2,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 5,
  'pitch': 3,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014655': {'cafe': 1,
  'university': 0,
  'market_place': 0,
  'community_centre': 1,
  'restaurant': 3,
  'hospital': 0,
  'travel_agent': 2,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 10,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 1,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 1,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 1,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 2,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 1,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 3,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 9,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 1,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 3,
  'car_wash': 1,
  'fountain': 0,
  'dentist': 1,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 8,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 1,
  'town_hall': 0,
  'greengrocer': 1,
  'pub': 2,
  'pitch': 1,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 1,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014589': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 1,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 2,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 2,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 1,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014683': {'cafe': 1,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 1,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 1,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 1,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 2,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 1,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014646': {'cafe': 1,
  'university': 0,
  'market_place': 0,
  'community_centre': 1,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 1,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 1,
  'monument': 0,
  'stationery': 0,
  'newsagent': 1,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 2,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 1,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 1,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 3,
  'bar': 1,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 1,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 1,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 2,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 2,
  'courthouse': 0,
  'hairdresser': 2,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 1,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01033364': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 1,
  'restaurant': 2,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 2,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 2,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 1,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 1,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 2,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 1,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 4,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 5,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 1,
  'courthouse': 0,
  'hairdresser': 1,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014528': {'cafe': 2,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 1,
  'car_dealership': 1,
  'furniture_shop': 0,
  'water_works': 1,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 1,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 2,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 3,
  'car_wash': 2,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 1,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 4,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014734': {'cafe': 1,
  'university': 0,
  'market_place': 0,
  'community_centre': 1,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 1,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 1,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 2,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 4,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014665': {'cafe': 1,
  'university': 0,
  'market_place': 1,
  'community_centre': 2,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 1,
  'car_dealership': 0,
  'furniture_shop': 2,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 1,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 3,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 2,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 1,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 3,
  'park': 2,
  'car_wash': 1,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 1,
  'courthouse': 0,
  'hairdresser': 2,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 1,
  'bicycle_shop': 1,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 1,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014526': {'cafe': 3,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 2,
  'furniture_shop': 0,
  'water_works': 1,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 1,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 2,
  'doityourself': 2,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 1,
  'observation_tower': 0,
  'fast_food': 1,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 2,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 1,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 21,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 1},
 'E01014499': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 1,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 2,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 1,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 1,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 3,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 2,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 3,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 1,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 1,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 1,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014712': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 2,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 1,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 1,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 1,
  'nightclub': 0,
  'beauty_shop': 2,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 1,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 1,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 2,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 2,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 1,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 1,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014563': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 7,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 2,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 1,
  'bar': 1,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 1,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 1,
  'observation_tower': 0,
  'fast_food': 2,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 1,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 1,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 2,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 1,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014675': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 2,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 3,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 1,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 1,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 1,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 3,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 3,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014511': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 1,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 1,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014729': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 1,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 2,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 6,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 3,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014641': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 2,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 2,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 1,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 1},
 'E01014637': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 1,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 1,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 1,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 1,
  'car_wash': 1,
  'fountain': 0,
  'dentist': 1,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 1,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014525': {'cafe': 1,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 1,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 1,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 1,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01032515': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 1,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 2,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 1,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014527': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 1,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 2,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 1,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 1,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 1,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 4,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 1,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 2,
  'pitch': 3,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014520': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 1,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 1,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 1,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014677': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 1,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 1,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 1,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 1},
 'E01014630': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 2,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 1,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 1,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 2,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 3,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 3,
  'park': 2,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 2,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 1,
  'pub': 0,
  'pitch': 2,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014615': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 1,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 1,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 3,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 1,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 5,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014536': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 1,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 1,
  'furniture_shop': 2,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 1,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 4,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 2,
  'golf_course': 1,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 1,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 2,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 1,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 2,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014661': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 2,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 1,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 1,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 1,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 0,
  'car_wash': 1,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 1,
  'courthouse': 0,
  'hairdresser': 1,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 1,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014602': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 1,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 1,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 1,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 1,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 2,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 1,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 1,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014516': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 3,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 2,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 1,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014671': {'cafe': 3,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 7,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 5,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 2,
  'car_dealership': 0,
  'furniture_shop': 1,
  'water_works': 0,
  'beverages': 1,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 1,
  'mobile_phone_shop': 1,
  'swimming_pool': 1,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 3,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 1,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 1,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 1,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 2,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 6,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 1,
  'memorial': 0,
  'computer_shop': 1,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 1,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 6,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 1,
  'pub': 4,
  'pitch': 1,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 4,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014562': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 1,
  'restaurant': 2,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 1,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 2,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 1,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 3,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014571': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 3,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014621': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 1,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 3,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 1,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 1,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 1,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 1,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 1,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 3,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 1,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014522': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 1,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014622': {'cafe': 2,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 1,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 3,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 1,
  'car_dealership': 1,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 1,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 1,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 2,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 1,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 2,
  'butcher': 1,
  'tourist_info': 0,
  'supermarket': 1,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 7,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 1,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 1,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 6,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 1,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014717': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 2,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 1,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 5,
  'park': 2,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 1,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 2,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 1},
 'E01014718': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 1,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014492': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 1,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 1,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 1,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 1,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 1,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 1},
 'E01014501': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 1,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 1,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 1,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 1,
  'doityourself': 1,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 3,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014559': {'cafe': 2,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 3,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 3,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 1,
  'beauty_shop': 3,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 1,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 1,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 1,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 1,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 1,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 2,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 1,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 3,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 2,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 3,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 2},
 'E01014581': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 1,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 2,
  'car_wash': 1,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 6,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014534': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 1,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 2,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 1,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 1,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 1,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 1,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 3,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 2,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 1,
  'stadium': 0,
  'kindergarten': 0},
 'E01014684': {'cafe': 2,
  'university': 0,
  'market_place': 0,
  'community_centre': 1,
  'restaurant': 2,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 2,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 1,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 2,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 2,
  'bar': 1,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 1,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 1,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 4,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 1,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 4,
  'police': 0,
  'recycling': 1,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 3,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014507': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 1,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 0,
  'car_wash': 1,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 1,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 1},
 'E01014673': {'cafe': 1,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 1,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 1,
  'food_court': 0,
  'graveyard': 1,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 1,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 1,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 1,
  'car_wash': 1,
  'fountain': 0,
  'dentist': 2,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 2,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 1,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014699': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 2,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 1,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 1,
  'tourist_info': 0,
  'supermarket': 1,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 1,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 1,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 2,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 1,
  'stadium': 0,
  'kindergarten': 1},
 'E01014515': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 2,
  'pitch': 1,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014531': {'cafe': 1,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 3,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 1,
  'food_court': 0,
  'graveyard': 1,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 4,
  'college': 0,
  'garden_centre': 0,
  'shelter': 1,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 5,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 1,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 6,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 1,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 1,
  'butcher': 1,
  'tourist_info': 0,
  'supermarket': 1,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 6,
  'outdoor_shop': 1,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 2,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 1,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 7,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 1,
  'town_hall': 0,
  'greengrocer': 1,
  'pub': 3,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014608': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 1,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 1,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 4,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 1,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01033355': {'cafe': 5,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 4,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 1,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 1,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 1,
  'sports_shop': 0,
  'bank': 1,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 1,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 1,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 1,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 2,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 5,
  'observation_tower': 0,
  'fast_food': 7,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 1,
  'memorial': 1,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 3,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 1,
  'post_office': 0,
  'museum': 0,
  'ruins': 1,
  'library': 0,
  'doctors': 0,
  'courthouse': 1,
  'hairdresser': 2,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 7,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 1},
 'E01014586': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 1,
  'restaurant': 1,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 1,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 2,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 1,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 2,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 2,
  'park': 4,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 1,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 5,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014597': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 1,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014582': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 2,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 1,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014567': {'cafe': 1,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 2,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 1,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 1,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 4,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 1,
  'public_building': 0,
  'playground': 2,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 6,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 2,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 6,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 6,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014669': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 1,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 2,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 6,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014510': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 1,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 1,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 1,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 1,
  'kindergarten': 0},
 'E01014570': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 1,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 1,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 1,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 6,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01033352': {'cafe': 4,
  'university': 0,
  'market_place': 1,
  'community_centre': 0,
  'restaurant': 1,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 1,
  'newsagent': 1,
  'food_court': 0,
  'graveyard': 1,
  'wastewater_plant': 0,
  'car_rental': 2,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 5,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 1,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 3,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 2,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 1,
  'observation_tower': 0,
  'fast_food': 2,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 2,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 1,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 2,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 2,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014613': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 1,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 1,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 1,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 1,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014701': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 1,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 2,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 3,
  'stadium': 0,
  'kindergarten': 0},
 'E01014486': {'cafe': 2,
  'university': 0,
  'market_place': 0,
  'community_centre': 2,
  'restaurant': 8,
  'hospital': 0,
  'travel_agent': 2,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 1,
  'newsagent': 1,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 9,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 2,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 1,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 1,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 2,
  'tourist_info': 0,
  'supermarket': 1,
  'public_building': 0,
  'playground': 4,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 6,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 2,
  'memorial': 0,
  'computer_shop': 1,
  'bookshop': 0,
  'nan': 0,
  'school': 3,
  'park': 5,
  'car_wash': 1,
  'fountain': 0,
  'dentist': 1,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 1,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 6,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 1,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 3,
  'pitch': 7,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 1,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014548': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 1,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 1,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 2,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 3,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 1,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 1,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 3,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014506': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 1,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 6,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 1,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 1,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 1,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 3,
  'hostel': 0,
  'bakery': 1,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 1,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 2,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 1,
  'car_wash': 1,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 1,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014508': {'cafe': 7,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 5,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 1,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 2,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 1,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 3,
  'pharmacy': 0,
  'car_dealership': 1,
  'furniture_shop': 2,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 1,
  'archaeological': 0,
  'optician': 1,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 2,
  'bar': 1,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 1,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 2,
  'sports_centre': 1,
  'doityourself': 1,
  'hostel': 0,
  'bakery': 1,
  'butcher': 1,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 4,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 2,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 0,
  'car_wash': 1,
  'fountain': 0,
  'dentist': 0,
  'theatre': 1,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 4,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 1,
  'veterinary': 1,
  'bicycle_shop': 2,
  'town_hall': 0,
  'greengrocer': 1,
  'pub': 5,
  'pitch': 1,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 1,
  'kindergarten': 2},
 'E01014579': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 1,
  'artwork': 0,
  'convenience': 3,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 1,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 1,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 2,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 1,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 1,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 3,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 4,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 1,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 1,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 2,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 2},
 'E01014678': {'cafe': 1,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 2,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 1,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 1,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 1,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 1,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 4,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 1,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 2,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 2,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01033353': {'cafe': 6,
  'university': 0,
  'market_place': 1,
  'community_centre': 0,
  'restaurant': 3,
  'hospital': 0,
  'travel_agent': 1,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 1,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 1,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 2,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 1,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 4,
  'beauty_shop': 0,
  'bar': 1,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 1,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 1,
  'sports_centre': 1,
  'doityourself': 2,
  'hostel': 0,
  'bakery': 3,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 1,
  'observation_tower': 0,
  'fast_food': 3,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 1,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 2,
  'car_wash': 1,
  'fountain': 0,
  'dentist': 2,
  'theatre': 1,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 2,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 1,
  'bicycle_shop': 1,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 10,
  'pitch': 1,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 3,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014624': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 1,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 1,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 1,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 1,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 1,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 1,
  'courthouse': 0,
  'hairdresser': 1,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 2,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 1,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01032514': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 3,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 1,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014509': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 2,
  'college': 1,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 1,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 3,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 1,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 2,
  'pitch': 1,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 1,
  'kindergarten': 0},
 'E01014726': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 1,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 1,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 3,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 1},
 'E01014690': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 1,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 3,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 1,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 2,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014702': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014626': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 2,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 1,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 1,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 1,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 1,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 2,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 11,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014572': {'cafe': 1,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 4,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 3,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 2,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 2,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 4,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 1,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 7,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 1,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 11,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 2,
  'pitch': 3,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 2,
  'stadium': 0,
  'kindergarten': 0},
 'E01014735': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 1,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 1,
  'convenience': 2,
  'college': 0,
  'garden_centre': 0,
  'shelter': 1,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 1,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 4,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 1,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 3,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 1,
  'pub': 0,
  'pitch': 3,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014714': {'cafe': 0,
  'university': 1,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 1,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 1,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 2,
  'toilet': 1,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 1,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 1,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 1,
  'town_hall': 1,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 6,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014715': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 1,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 1,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 1,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 1,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 1,
  'bar': 1,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 1,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 1,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 1,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 2,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 1,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 1,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 4,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 2,
  'pitch': 3,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 3},
 'E01014491': {'cafe': 1,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 2,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 2,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 1},
 'E01014555': {'cafe': 1,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 1,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 1,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 2,
  'pitch': 1,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 1},
 'E01014610': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 1,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 2,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014689': {'cafe': 3,
  'university': 0,
  'market_place': 0,
  'community_centre': 3,
  'restaurant': 1,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 3,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 2,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 1,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 1,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 1,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 2,
  'public_building': 2,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 5,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 6,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 1,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 4,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014631': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 1,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 1,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 2,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 4,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014666': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 1,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 6,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014502': {'cafe': 1,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 4,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 2,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 1,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 2,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 1,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 2,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 2,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014523': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 2,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 1,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 1,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 1},
 'E01014596': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 2,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 2,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 2,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014638': {'cafe': 2,
  'university': 0,
  'market_place': 0,
  'community_centre': 1,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 1,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 6,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 1,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 1,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 1,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 1,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 4,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 2,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 1,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 1,
  'courthouse': 0,
  'hairdresser': 2,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 5,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014682': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 1,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 1,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 2,
  'pitch': 1,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014659': {'cafe': 1,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 1,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 1,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 1,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 1,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 1,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 1,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 2,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014705': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 1,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 1,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014493': {'cafe': 4,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 1,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 5,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 1,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 1,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 1,
  'archaeological': 0,
  'optician': 1,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 1,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 1,
  'sports_centre': 0,
  'doityourself': 1,
  'hostel': 0,
  'bakery': 1,
  'butcher': 1,
  'tourist_info': 0,
  'supermarket': 1,
  'public_building': 0,
  'playground': 2,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 3,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 1,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 1,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 6,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 1,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 2,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 1},
 'E01033367': {'cafe': 3,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 7,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 1,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 1,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 1,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 1,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 3,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 1,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 2,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 1,
  'museum': 1,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 2,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 3,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 1,
  'clothes': 2,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014623': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 4,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 1,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 3,
  'pitch': 5,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014497': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 1,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 1,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 2,
  'park': 2,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 4,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014700': {'cafe': 4,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 6,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 1,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 1,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 1,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 1,
  'archaeological': 0,
  'optician': 1,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 2,
  'bar': 1,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 1,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 1,
  'sports_centre': 0,
  'doityourself': 2,
  'hostel': 0,
  'bakery': 2,
  'butcher': 1,
  'tourist_info': 0,
  'supermarket': 1,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 3,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 1,
  'bookshop': 1,
  'nan': 0,
  'school': 0,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 4,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 1,
  'pub': 1,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 1,
  'kindergarten': 1},
 'E01014668': {'cafe': 5,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 4,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 2,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 1,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 4,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 2,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 1,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 2,
  'bar': 1,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 1,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 2,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 3,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 1,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 1,
  'nan': 0,
  'school': 0,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 1,
  'museum': 0,
  'ruins': 0,
  'library': 1,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 3,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 1,
  'town_hall': 0,
  'greengrocer': 2,
  'pub': 4,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 1,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 1},
 'E01033356': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 1,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 1,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 1,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 1,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 2,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 2,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 3,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 2,
  'pitch': 1,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014584': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 2,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 4,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 2,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014561': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 2,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 2,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 5,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 2,
  'park': 6,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 3,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 2},
 'E01014694': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 1,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 1,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 3,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014556': {'cafe': 1,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 1,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 1,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 1,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 1,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 2,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 1,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 1,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 3,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 1,
  'stadium': 0,
  'kindergarten': 0},
 'E01014732': {'cafe': 4,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 1,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 1,
  'food_court': 0,
  'graveyard': 1,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 1,
  'car_dealership': 0,
  'furniture_shop': 1,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 1,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 1,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 1,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 1,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 1,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 3,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 1,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 2,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 3,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014627': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 1,
  'restaurant': 1,
  'hospital': 1,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 1,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 1,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 1,
  'sports_centre': 0,
  'doityourself': 1,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 1,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 0,
  'car_wash': 1,
  'fountain': 0,
  'dentist': 1,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 2,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 1,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 3,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014708': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 1,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 1,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 1,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 14,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014709': {'cafe': 1,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 1,
  'garden_centre': 0,
  'shelter': 1,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 1,
  'beverages': 0,
  'water_tower': 1,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 6,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 1,
  'toilet': 2,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 3,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 1,
  'library': 0,
  'doctors': 1,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 20,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014544': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 1,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 3,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 1,
  'department_store': 0,
  'jeweller': 2,
  'nursing_home': 0,
  'toilet': 1,
  'track': 0,
  'castle': 0,
  'florist': 1,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 1,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 2,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 1,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 1,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 4,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 2,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01033361': {'cafe': 5,
  'university': 0,
  'market_place': 0,
  'community_centre': 1,
  'restaurant': 2,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 1,
  'toy_shop': 1,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 1,
  'food_court': 0,
  'graveyard': 1,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 1,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 1,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 2,
  'archaeological': 0,
  'optician': 1,
  'mobile_phone_shop': 1,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 2,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 1,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 1,
  'doityourself': 1,
  'hostel': 0,
  'bakery': 1,
  'butcher': 1,
  'tourist_info': 0,
  'supermarket': 1,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 1,
  'observation_tower': 0,
  'fast_food': 5,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 2,
  'car_wash': 3,
  'fountain': 0,
  'dentist': 2,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 1,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 2,
  'courthouse': 0,
  'hairdresser': 9,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 1,
  'pub': 4,
  'pitch': 3,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 2,
  'guesthouse': 1,
  'stadium': 0,
  'kindergarten': 0},
 'E01014691': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 1,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 1,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 2,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 4,
  'park': 3,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 1,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 1,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 9,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014658': {'cafe': 1,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 1,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 1,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 1,
  'car_dealership': 2,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 1,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 1,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 7,
  'hostel': 0,
  'bakery': 1,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 3,
  'public_building': 0,
  'playground': 2,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 6,
  'outdoor_shop': 0,
  'comms_tower': 1,
  'cinema': 1,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 3,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 1,
  'police': 1,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 1},
 'E01014524': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 1,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 1,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 1,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 2,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 2,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 1,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 1},
 'E01014546': {'cafe': 9,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 15,
  'hospital': 1,
  'travel_agent': 1,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 2,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 2,
  'pharmacy': 2,
  'car_dealership': 1,
  'furniture_shop': 2,
  'water_works': 0,
  'beverages': 1,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 1,
  'mobile_phone_shop': 1,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 4,
  'bar': 1,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 1,
  'clinic': 1,
  'department_store': 0,
  'jeweller': 8,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 2,
  'sports_centre': 0,
  'doityourself': 1,
  'hostel': 0,
  'bakery': 1,
  'butcher': 1,
  'tourist_info': 0,
  'supermarket': 1,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 2,
  'observation_tower': 0,
  'fast_food': 3,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 2,
  'memorial': 0,
  'computer_shop': 1,
  'bookshop': 3,
  'nan': 0,
  'school': 0,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 2,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 1,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 7,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 8,
  'pitch': 1,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 13,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014629': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 1,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 1,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 1,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 1,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 1,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 1},
 'E01014519': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 1,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 1,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 2,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 2,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014672': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 1,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 1,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 4,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 4,
  'park': 2,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 7,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014500': {'cafe': 1,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 2,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 2,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 1,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 1,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 1,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 1,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 3,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 1,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 1,
  'car_wash': 1,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 1,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 3,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 1,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014517': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014686': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 1,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 1,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014639': {'cafe': 1,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 1,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 1,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 2,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 1,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 2,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014616': {'cafe': 3,
  'university': 0,
  'market_place': 0,
  'community_centre': 1,
  'restaurant': 2,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 1,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 1,
  'shelter': 0,
  'gift_shop': 1,
  'pharmacy': 1,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 1,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 2,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 2,
  'bar': 1,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 1,
  'hostel': 0,
  'bakery': 1,
  'butcher': 1,
  'tourist_info': 0,
  'supermarket': 1,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 2,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 1,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 3,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 1,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 1,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 9,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 1,
  'town_hall': 0,
  'greengrocer': 1,
  'pub': 1,
  'pitch': 4,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 1,
  'stadium': 0,
  'kindergarten': 0},
 'E01014713': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 1,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 2,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014593': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 1,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 2,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 2,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014681': {'cafe': 3,
  'university': 0,
  'market_place': 0,
  'community_centre': 1,
  'restaurant': 1,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 1,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 2,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 1,
  'furniture_shop': 1,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 1,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 3,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 1,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 1,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 2,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 1,
  'memorial': 0,
  'computer_shop': 1,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 2,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 1,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 5,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 1,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 3,
  'pitch': 3,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 1},
 'E01014547': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 2,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 1,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 1,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 1,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 3,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01033358': {'cafe': 3,
  'university': 0,
  'market_place': 0,
  'community_centre': 2,
  'restaurant': 3,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 1,
  'toy_shop': 0,
  'mall': 1,
  'monument': 0,
  'stationery': 0,
  'newsagent': 1,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 1,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 3,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 3,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 1,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 1,
  'sports_centre': 0,
  'doityourself': 1,
  'hostel': 0,
  'bakery': 1,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 1,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 2,
  'observation_tower': 0,
  'fast_food': 2,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 1,
  'bookshop': 0,
  'nan': 0,
  'school': 2,
  'park': 3,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 1,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 3,
  'police': 1,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 4,
  'pitch': 1,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 1,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 1},
 'E01014696': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 1,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 1,
  'water_works': 0,
  'beverages': 1,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 1,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 1,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 1,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 1,
  'nan': 0,
  'school': 1,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 1,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 1,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014540': {'cafe': 37,
  'university': 0,
  'market_place': 1,
  'community_centre': 1,
  'restaurant': 52,
  'hospital': 0,
  'travel_agent': 6,
  'arts_centre': 2,
  'toy_shop': 2,
  'mall': 8,
  'monument': 1,
  'stationery': 0,
  'newsagent': 1,
  'food_court': 1,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 7,
  'college': 2,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 7,
  'pharmacy': 2,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 2,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 8,
  'archaeological': 0,
  'optician': 2,
  'mobile_phone_shop': 9,
  'swimming_pool': 0,
  'nightclub': 5,
  'beauty_shop': 7,
  'bar': 21,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 6,
  'clinic': 3,
  'department_store': 0,
  'jeweller': 5,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 1,
  'sports_centre': 2,
  'doityourself': 0,
  'hostel': 3,
  'bakery': 5,
  'butcher': 1,
  'tourist_info': 0,
  'supermarket': 1,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 10,
  'observation_tower': 2,
  'fast_food': 27,
  'outdoor_shop': 2,
  'comms_tower': 0,
  'cinema': 2,
  'video_shop': 2,
  'laundry': 0,
  'memorial': 1,
  'computer_shop': 0,
  'bookshop': 6,
  'nan': 0,
  'school': 1,
  'park': 4,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 3,
  'theatre': 1,
  'fire_station': 0,
  'post_office': 0,
  'museum': 1,
  'ruins': 3,
  'library': 0,
  'doctors': 3,
  'courthouse': 1,
  'hairdresser': 18,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 5,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 32,
  'pitch': 2,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 5,
  'clothes': 25,
  'guesthouse': 1,
  'stadium': 0,
  'kindergarten': 1},
 'E01014634': {'cafe': 1,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 2,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 1,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 1,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 2,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 3,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 1,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 1,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01033350': {'cafe': 3,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 2,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 2,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 1,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 1,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 3,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 1,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 2,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 4,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 2,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 3,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 4,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014723': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014530': {'cafe': 1,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 2,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 1,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 4,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 1,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 1,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014635': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 1,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 1,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 1,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 1},
 'E01014496': {'cafe': 2,
  'university': 0,
  'market_place': 0,
  'community_centre': 1,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 1,
  'gift_shop': 0,
  'pharmacy': 1,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 1,
  'sports_shop': 1,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 1,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 1,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 1,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 1,
  'public_building': 0,
  'playground': 2,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 2,
  'observation_tower': 0,
  'fast_food': 6,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 1,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 3,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 2,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 1,
  'doctors': 1,
  'courthouse': 0,
  'hairdresser': 2,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 2,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 1,
  'stadium': 0,
  'kindergarten': 0},
 'E01014573': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 1,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 2,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 2,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 1,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 3,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 1,
  'stadium': 0,
  'kindergarten': 0},
 'E01014598': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 1,
  'car_dealership': 2,
  'furniture_shop': 1,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 1,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 1,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 2,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 1,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 2,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 2,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014551': {'cafe': 3,
  'university': 1,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 1,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 1,
  'monument': 0,
  'stationery': 0,
  'newsagent': 1,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 1,
  'shelter': 0,
  'gift_shop': 1,
  'pharmacy': 1,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 1,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 1,
  'archaeological': 0,
  'optician': 1,
  'mobile_phone_shop': 2,
  'swimming_pool': 1,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 6,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 1,
  'sports_centre': 0,
  'doityourself': 1,
  'hostel': 0,
  'bakery': 0,
  'butcher': 1,
  'tourist_info': 0,
  'supermarket': 2,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 1,
  'observation_tower': 0,
  'fast_food': 2,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 1,
  'video_shop': 0,
  'laundry': 1,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 1,
  'theatre': 1,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 1,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 1,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 2},
 'E01014603': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014680': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 1,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 2,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014542': {'cafe': 25,
  'university': 4,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 20,
  'hospital': 5,
  'travel_agent': 1,
  'arts_centre': 4,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 4,
  'newsagent': 1,
  'food_court': 1,
  'graveyard': 0,
  'wastewater_plant': 1,
  'car_rental': 1,
  'artwork': 0,
  'convenience': 2,
  'college': 1,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 2,
  'pharmacy': 1,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 1,
  'water_tower': 0,
  'tower': 2,
  'sports_shop': 1,
  'bank': 4,
  'archaeological': 0,
  'optician': 3,
  'mobile_phone_shop': 2,
  'swimming_pool': 0,
  'nightclub': 7,
  'beauty_shop': 4,
  'bar': 16,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 3,
  'department_store': 1,
  'jeweller': 1,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 2,
  'sports_centre': 1,
  'doityourself': 1,
  'hostel': 3,
  'bakery': 1,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 2,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 3,
  'observation_tower': 0,
  'fast_food': 13,
  'outdoor_shop': 2,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 3,
  'nan': 0,
  'school': 3,
  'park': 4,
  'car_wash': 1,
  'fountain': 0,
  'dentist': 1,
  'theatre': 2,
  'fire_station': 0,
  'post_office': 1,
  'museum': 3,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 15,
  'police': 1,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 3,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 12,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 15,
  'guesthouse': 1,
  'stadium': 0,
  'kindergarten': 0},
 'E01014594': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 1,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 1,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 1,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 1,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 5,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014716': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 1,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 1,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 5,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014695': {'cafe': 3,
  'university': 2,
  'market_place': 0,
  'community_centre': 1,
  'restaurant': 2,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 1,
  'newsagent': 1,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 1,
  'garden_centre': 1,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 1,
  'furniture_shop': 0,
  'water_works': 1,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 1,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 1,
  'castle': 0,
  'florist': 0,
  'sports_centre': 1,
  'doityourself': 1,
  'hostel': 0,
  'bakery': 2,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 2,
  'golf_course': 0,
  'theme_park': 1,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 2,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 1,
  'bookshop': 0,
  'nan': 0,
  'school': 3,
  'park': 5,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 1,
  'pub': 4,
  'pitch': 16,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 1,
  'stadium': 1,
  'kindergarten': 1},
 'E01032517': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 1,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 1,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 1,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 2,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 1,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014703': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 1,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 1,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 2,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014537': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 1,
  'car_dealership': 5,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 1,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 2,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 1,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014533': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 1,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 1,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 1,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 3,
  'stadium': 0,
  'kindergarten': 0},
 'E01014647': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 3,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014711': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 1,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 4,
  'nightclub': 0,
  'beauty_shop': 1,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 1,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 2,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 3,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 2,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 1,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 2,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 1,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 3,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014565': {'cafe': 1,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 5,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 1,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 1,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 1,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 0,
  'car_wash': 1,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 4,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 2,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01032516': {'cafe': 1,
  'university': 0,
  'market_place': 0,
  'community_centre': 1,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 1,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 1,
  'track': 0,
  'castle': 1,
  'florist': 0,
  'sports_centre': 1,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 1,
  'public_building': 0,
  'playground': 3,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 1,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 4,
  'park': 2,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 1,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 1,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 2,
  'pitch': 3,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014574': {'cafe': 2,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 1,
  'hospital': 0,
  'travel_agent': 1,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 1,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 1,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 2,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 1,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 1,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 1,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 3,
  'tourist_info': 0,
  'supermarket': 1,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 2,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 1,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 3,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 1,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014529': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 1,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 2,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014514': {'cafe': 11,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 10,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 3,
  'college': 0,
  'garden_centre': 0,
  'shelter': 1,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 2,
  'water_works': 0,
  'beverages': 1,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 1,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 1,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 3,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 2,
  'department_store': 0,
  'jeweller': 1,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 2,
  'doityourself': 1,
  'hostel': 0,
  'bakery': 0,
  'butcher': 1,
  'tourist_info': 0,
  'supermarket': 3,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 7,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 1,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 1,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 12,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 1,
  'veterinary': 1,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 2,
  'pitch': 3,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 2,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014662': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 1,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 1,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 5,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014607': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 2,
  'hospital': 1,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 1,
  'castle': 0,
  'florist': 0,
  'sports_centre': 2,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 1,
  'observation_tower': 0,
  'fast_food': 2,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 1,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 2,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 3,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014620': {'cafe': 1,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 1,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014505': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 1,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 1,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 1,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 4,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014495': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 1,
  'restaurant': 1,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 1,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 1,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 2,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 0,
  'car_wash': 1,
  'fountain': 0,
  'dentist': 2,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 1,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 1,
  'courthouse': 0,
  'hairdresser': 2,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 3,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014663': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 1,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 1,
  'outdoor_shop': 0,
  'comms_tower': 1,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 4,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 1,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014535': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 1,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 1,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 2,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 2,
  'public_building': 0,
  'playground': 1,
  'golf_course': 1,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 6,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 1,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 1,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014667': {'cafe': 2,
  'university': 0,
  'market_place': 0,
  'community_centre': 1,
  'restaurant': 1,
  'hospital': 0,
  'travel_agent': 1,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 2,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 1,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 2,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 1,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 1,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 1,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 3,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 3,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 1},
 'E01014513': {'cafe': 1,
  'university': 0,
  'market_place': 0,
  'community_centre': 1,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 1,
  'doityourself': 2,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 1,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 3,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 1,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 1,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 5,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014595': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 3,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 5,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014580': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 1,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 2,
  'park': 4,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014552': {'cafe': 2,
  'university': 0,
  'market_place': 0,
  'community_centre': 1,
  'restaurant': 1,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 1,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 1,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 1,
  'furniture_shop': 2,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 1,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 2,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 3,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 1,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 1,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 2,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 2,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 3,
  'pitch': 1,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 1,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 1},
 'E01032519': {'cafe': 1,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 1,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 2,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 1,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014688': {'cafe': 1,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 3,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 1,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 1,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 7,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 1,
  'car_wash': 1,
  'fountain': 0,
  'dentist': 1,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 1,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 1,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014719': {'cafe': 4,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 3,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 1,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 1,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 2,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 1,
  'pharmacy': 1,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 5,
  'archaeological': 0,
  'optician': 2,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 4,
  'bar': 1,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 1,
  'clinic': 3,
  'department_store': 0,
  'jeweller': 1,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 1,
  'sports_centre': 1,
  'doityourself': 2,
  'hostel': 0,
  'bakery': 1,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 3,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 3,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 1,
  'memorial': 0,
  'computer_shop': 2,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 1,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 2,
  'courthouse': 0,
  'hairdresser': 7,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 1,
  'pub': 4,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014557': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 1,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 1,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 1,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 2,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 1,
  'ruins': 0,
  'library': 0,
  'doctors': 1,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 6,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 1},
 'E01014710': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 1,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 1,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 2,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014693': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 1,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 1,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 3,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 2,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 2,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014578': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 1,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 3,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 2,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 4,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014707': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 1,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 2,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 1,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014650': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 1,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 1,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 2,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014730': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 1,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 1,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 1,
  'furniture_shop': 0,
  'water_works': 1,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 1,
  'bar': 1,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 1,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 2,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 5,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 1,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 1},
 'E01014698': {'cafe': 5,
  'university': 0,
  'market_place': 0,
  'community_centre': 1,
  'restaurant': 1,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 2,
  'toy_shop': 1,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 1,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 1,
  'car_dealership': 1,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 1,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 2,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 1,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 2,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 3,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 2,
  'pitch': 1,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 1,
  'guesthouse': 1,
  'stadium': 0,
  'kindergarten': 0},
 'E01033369': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 1,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 1,
  'car_dealership': 1,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 4,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 1,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 3,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 1,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 1,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014599': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 2,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 1,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 1,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 2,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 2,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 1,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014674': {'cafe': 1,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 1,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 1,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 1,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 1,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 0,
  'car_wash': 1,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 1,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014619': {'cafe': 1,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 3,
  'hospital': 0,
  'travel_agent': 1,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 1,
  'gift_shop': 0,
  'pharmacy': 1,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 1,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 1,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 1,
  'tourist_info': 0,
  'supermarket': 1,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 1,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 1,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 2,
  'nan': 0,
  'school': 1,
  'park': 2,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 3,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 3,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 1,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 1,
  'guesthouse': 1,
  'stadium': 0,
  'kindergarten': 3},
 'E01014538': {'cafe': 4,
  'university': 6,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 2,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 1,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 1,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 1,
  'car_dealership': 0,
  'furniture_shop': 1,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 1,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 1,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 3,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 2,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 1,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 1,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 1,
  'observation_tower': 0,
  'fast_food': 1,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 2,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 1,
  'doctors': 1,
  'courthouse': 0,
  'hairdresser': 4,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 5,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 2},
 'E01014736': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 1,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 1,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 2,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 2,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 2,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 2,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 1,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01033342': {'cafe': 11,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 4,
  'hospital': 1,
  'travel_agent': 1,
  'arts_centre': 0,
  'toy_shop': 1,
  'mall': 2,
  'monument': 0,
  'stationery': 0,
  'newsagent': 1,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 4,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 2,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 2,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 1,
  'bank': 4,
  'archaeological': 0,
  'optician': 1,
  'mobile_phone_shop': 11,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 8,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 4,
  'clinic': 1,
  'department_store': 2,
  'jeweller': 1,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 2,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 1,
  'recycling_glass': 0,
  'hotel': 1,
  'observation_tower': 0,
  'fast_food': 16,
  'outdoor_shop': 3,
  'comms_tower': 0,
  'cinema': 1,
  'video_shop': 1,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 2,
  'nan': 0,
  'school': 0,
  'park': 3,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 1,
  'hairdresser': 8,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 1,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 23,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01033344': {'cafe': 7,
  'university': 1,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 6,
  'hospital': 0,
  'travel_agent': 1,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 1,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 1,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 1,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 1,
  'beauty_shop': 0,
  'bar': 2,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 2,
  'department_store': 0,
  'jeweller': 1,
  'nursing_home': 0,
  'toilet': 1,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 1,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 1,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 3,
  'observation_tower': 0,
  'fast_food': 6,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 1,
  'nan': 0,
  'school': 6,
  'park': 3,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 1,
  'fire_station': 0,
  'post_office': 0,
  'museum': 2,
  'ruins': 0,
  'library': 1,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 4,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 1,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 6,
  'pitch': 1,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 2,
  'clothes': 3,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014494': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 1,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 1,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 1,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 2,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 1,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 2,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01033348': {'cafe': 2,
  'university': 0,
  'market_place': 0,
  'community_centre': 1,
  'restaurant': 6,
  'hospital': 0,
  'travel_agent': 1,
  'arts_centre': 1,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 6,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 1,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 1,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 4,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 2,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 1,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 1,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014720': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 1,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 1,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 1,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 2},
 'E01014564': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 1,
  'restaurant': 1,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 1,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 2,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 2,
  'pitch': 4,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 1},
 'E01014605': {'cafe': 1,
  'university': 0,
  'market_place': 0,
  'community_centre': 1,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 1,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 1,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 1,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 1,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 1,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 1,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 1,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 3,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 6,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 2,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 1,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 1,
  'doctors': 1,
  'courthouse': 0,
  'hairdresser': 4,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 1,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 1},
 'E01014504': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 1,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 1,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 1,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 1,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014488': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 2,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 3,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 1,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 1,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014583': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014643': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 1,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 1,
  'nightclub': 0,
  'beauty_shop': 1,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 1,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 3,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 1,
  'courthouse': 0,
  'hairdresser': 1,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 5,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 2,
  'kindergarten': 1},
 'E01014727': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 1,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 1,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 2,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 1,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 1,
  'museum': 0,
  'ruins': 0,
  'library': 1,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014609': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014545': {'cafe': 5,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 2,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 1,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 2,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 1,
  'water_works': 0,
  'beverages': 1,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 1,
  'nightclub': 0,
  'beauty_shop': 1,
  'bar': 1,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 1,
  'clinic': 2,
  'department_store': 0,
  'jeweller': 3,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 1,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 1,
  'nan': 0,
  'school': 2,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 1,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 2,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 2,
  'pub': 1,
  'pitch': 4,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 3,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 1},
 'E01014721': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 1,
  'restaurant': 2,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 0,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 1,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 1,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 3,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 1,
  'public_building': 0,
  'playground': 0,
  'golf_course': 1,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 1,
  'car_wash': 1,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 2,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014590': {'cafe': 2,
  'university': 0,
  'market_place': 0,
  'community_centre': 1,
  'restaurant': 4,
  'hospital': 0,
  'travel_agent': 1,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 1,
  'newsagent': 1,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 3,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 1,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 2,
  'archaeological': 0,
  'optician': 2,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 1,
  'bar': 1,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 1,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 1,
  'butcher': 1,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 1,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 8,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 1,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 1,
  'park': 6,
  'car_wash': 1,
  'fountain': 0,
  'dentist': 1,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 2,
  'courthouse': 0,
  'hairdresser': 5,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 1,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 3,
  'pitch': 1,
  'camp_site': 0,
  'chemist': 1,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 1},
 'E01014614': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 2,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 1,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 1,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 1,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 2,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 4,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 2,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 1,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 1,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014485': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 2,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 1,
  'newsagent': 1,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 1,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 2,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 1,
  'public_building': 0,
  'playground': 2,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 2,
  'park': 3,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 1,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 2,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 1},
 'E01014558': {'cafe': 8,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 14,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 1,
  'pharmacy': 1,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 3,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 1,
  'archaeological': 0,
  'optician': 1,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 5,
  'bar': 5,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 2,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 1,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 1,
  'doityourself': 2,
  'hostel': 0,
  'bakery': 1,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 2,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 7,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 1,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 1,
  'nan': 0,
  'school': 1,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 1,
  'courthouse': 0,
  'hairdresser': 9,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 1,
  'pub': 5,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 3,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014660': {'cafe': 1,
  'university': 0,
  'market_place': 0,
  'community_centre': 3,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 3,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 1,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 2,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 4,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 2,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 2,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 6,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 1,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 2,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 1,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014704': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 0,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 0,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 1,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 1,
  'pitch': 0,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 0},
 'E01014685': {'cafe': 0,
  'university': 0,
  'market_place': 0,
  'community_centre': 1,
  'restaurant': 0,
  'hospital': 0,
  'travel_agent': 0,
  'arts_centre': 0,
  'toy_shop': 0,
  'mall': 0,
  'monument': 0,
  'stationery': 0,
  'newsagent': 0,
  'food_court': 0,
  'graveyard': 0,
  'wastewater_plant': 0,
  'car_rental': 0,
  'artwork': 0,
  'convenience': 1,
  'college': 0,
  'garden_centre': 0,
  'shelter': 0,
  'gift_shop': 0,
  'pharmacy': 0,
  'car_dealership': 0,
  'furniture_shop': 0,
  'water_works': 0,
  'beverages': 0,
  'water_tower': 0,
  'tower': 0,
  'sports_shop': 0,
  'bank': 0,
  'archaeological': 0,
  'optician': 0,
  'mobile_phone_shop': 0,
  'swimming_pool': 0,
  'nightclub': 0,
  'beauty_shop': 0,
  'bar': 0,
  'picnic_site': 0,
  'caravan_site': 0,
  'shoe_shop': 0,
  'clinic': 0,
  'department_store': 0,
  'jeweller': 0,
  'nursing_home': 0,
  'toilet': 0,
  'track': 0,
  'castle': 0,
  'florist': 0,
  'sports_centre': 0,
  'doityourself': 0,
  'hostel': 0,
  'bakery': 0,
  'butcher': 0,
  'tourist_info': 0,
  'supermarket': 0,
  'public_building': 0,
  'playground': 0,
  'golf_course': 0,
  'theme_park': 0,
  'recycling_glass': 0,
  'hotel': 0,
  'observation_tower': 0,
  'fast_food': 1,
  'outdoor_shop': 0,
  'comms_tower': 0,
  'cinema': 0,
  'video_shop': 0,
  'laundry': 0,
  'memorial': 0,
  'computer_shop': 0,
  'bookshop': 0,
  'nan': 0,
  'school': 0,
  'park': 0,
  'car_wash': 0,
  'fountain': 0,
  'dentist': 0,
  'theatre': 0,
  'fire_station': 0,
  'post_office': 0,
  'museum': 0,
  'ruins': 0,
  'library': 0,
  'doctors': 0,
  'courthouse': 0,
  'hairdresser': 0,
  'police': 0,
  'recycling': 0,
  'recycling_metal': 0,
  'prison': 0,
  'veterinary': 0,
  'bicycle_shop': 0,
  'town_hall': 0,
  'greengrocer': 0,
  'pub': 0,
  'pitch': 3,
  'camp_site': 0,
  'chemist': 0,
  'attraction': 0,
  'clothes': 0,
  'guesthouse': 0,
  'stadium': 0,
  'kindergarten': 1}}

docDic here is a dictionary of dictionary. The inner dictionary is the frequency of each word occurred in the document. The outer dictionary is about different documents. We next can convert such a dictionary into a dataframe:

doc2wordMatrix = pd.DataFrame.from_dict(docDic, orient='index').rename_axis('LSOA11 Code').reset_index()
doc2wordMatrix.head()
LSOA11 Code cafe university market_place community_centre restaurant hospital travel_agent arts_centre toy_shop ... greengrocer pub pitch camp_site chemist attraction clothes guesthouse stadium kindergarten
0 E01014612 0 0 0 0 0 0 0 0 0 ... 0 0 0 0 0 0 0 0 0 0
1 E01014512 1 0 0 1 3 0 0 0 0 ... 0 0 0 0 0 0 0 0 0 1
2 E01014618 1 0 0 1 0 0 0 0 0 ... 0 0 0 0 0 0 0 0 0 2
3 E01014576 0 0 0 0 0 0 0 0 1 ... 0 1 2 0 0 0 0 0 0 0
4 E01033370 0 0 0 0 1 0 0 0 0 ... 0 2 3 0 0 0 0 0 0 1

5 rows × 106 columns

Note here such a data sometimes is referred as a document matrix, where each row is a document, and each column is a word/token from the vocabulary. The value in the matrix represents the frequency of the word/token in the correspoding document. For example, we can see that place types car_dealership and college both occurred once in the document with LSOA11 code “E01014512” (remember that it is actually a region in our example).

Now, we can start computing the term frequency-inverse document frequency (TF-IDF), which will be used later for us to determine the relevance ranking of documents in relation to a query. The functions are written below. We first compute TF, and then IDF. Multiplying both, we will have TF-IDF. Please read it first and try to think if you can understand it:

## Compute term frequency (TF)
def computeTF(wordDict):
    tfDict = {}
    bowCount = 0
    for word, count in wordDict.items():
        if count >0:
            bowCount +=1
    for word, count in wordDict.items():
        tfDict[word] = count/float(bowCount)
    return tfDict

We can use the computeTF() function on one example document (region with code ‘E01014612’). From the result, you can see the frequency of “swimming_pool” in this region is 0.666666666, frequency of “park” is 0.3333333, and the frequency of seeing “playground” is also 0.33333333.

computeTF(docDic['E01014612'])
{'cafe': 0.0,
 'university': 0.0,
 'market_place': 0.0,
 'community_centre': 0.0,
 'restaurant': 0.0,
 'hospital': 0.0,
 'travel_agent': 0.0,
 'arts_centre': 0.0,
 'toy_shop': 0.0,
 'mall': 0.0,
 'monument': 0.0,
 'stationery': 0.0,
 'newsagent': 0.0,
 'food_court': 0.0,
 'graveyard': 0.0,
 'wastewater_plant': 0.0,
 'car_rental': 0.0,
 'artwork': 0.0,
 'convenience': 0.0,
 'college': 0.0,
 'garden_centre': 0.0,
 'shelter': 0.0,
 'gift_shop': 0.0,
 'pharmacy': 0.0,
 'car_dealership': 0.0,
 'furniture_shop': 0.0,
 'water_works': 0.0,
 'beverages': 0.0,
 'water_tower': 0.0,
 'tower': 0.0,
 'sports_shop': 0.0,
 'bank': 0.0,
 'archaeological': 0.0,
 'optician': 0.0,
 'mobile_phone_shop': 0.0,
 'swimming_pool': 0.6666666666666666,
 'nightclub': 0.0,
 'beauty_shop': 0.0,
 'bar': 0.0,
 'picnic_site': 0.0,
 'caravan_site': 0.0,
 'shoe_shop': 0.0,
 'clinic': 0.0,
 'department_store': 0.0,
 'jeweller': 0.0,
 'nursing_home': 0.0,
 'toilet': 0.0,
 'track': 0.0,
 'castle': 0.0,
 'florist': 0.0,
 'sports_centre': 0.0,
 'doityourself': 0.0,
 'hostel': 0.0,
 'bakery': 0.0,
 'butcher': 0.0,
 'tourist_info': 0.0,
 'supermarket': 0.0,
 'public_building': 0.0,
 'playground': 0.3333333333333333,
 'golf_course': 0.0,
 'theme_park': 0.0,
 'recycling_glass': 0.0,
 'hotel': 0.0,
 'observation_tower': 0.0,
 'fast_food': 0.0,
 'outdoor_shop': 0.0,
 'comms_tower': 0.0,
 'cinema': 0.0,
 'video_shop': 0.0,
 'laundry': 0.0,
 'memorial': 0.0,
 'computer_shop': 0.0,
 'bookshop': 0.0,
 'nan': 0.0,
 'school': 0.0,
 'park': 0.3333333333333333,
 'car_wash': 0.0,
 'fountain': 0.0,
 'dentist': 0.0,
 'theatre': 0.0,
 'fire_station': 0.0,
 'post_office': 0.0,
 'museum': 0.0,
 'ruins': 0.0,
 'library': 0.0,
 'doctors': 0.0,
 'courthouse': 0.0,
 'hairdresser': 0.0,
 'police': 0.0,
 'recycling': 0.0,
 'recycling_metal': 0.0,
 'prison': 0.0,
 'veterinary': 0.0,
 'bicycle_shop': 0.0,
 'town_hall': 0.0,
 'greengrocer': 0.0,
 'pub': 0.0,
 'pitch': 0.0,
 'camp_site': 0.0,
 'chemist': 0.0,
 'attraction': 0.0,
 'clothes': 0.0,
 'guesthouse': 0.0,
 'stadium': 0.0,
 'kindergarten': 0.0}

Next, we have the function computeIDF() to compute inverse document frequency. Note the use of math.log10() in the last step is to avoid the situation where the number of documents N is too large making N/float(count) become too large as well. This logarithm is to scale the inversed document frequency to a relatively small value (e.g., a dampen effect).

## Compute inverse document frequency (IDF)
def computeIDF(docDic):
    import math
    idfDict = {}
    N = len(docDic)
    
    idfDict = dict.fromkeys(wordSet, 0)
    for doc, wordDic in docDic.items():
        for word, count in wordDic.items():
            if count > 0:
                idfDict[word] += 1
    
    for word, count in idfDict.items():  ## this count is the number of document containing the word 
        idfDict[word] = math.log10(N / float(count))
        
    return idfDict    

With this function, we can then input all the documents (represented using the docDoc variable) to it so as to obtain the inverse document frequency (idfs), which is also represented as a dictionary. The keys of the dictionary are the words/tokens from the vocabulary. The values are the computed IDF.

idfs = computeIDF(docDic)
idfs
{'cafe': 0.428729672797263,
 'university': 1.465713239050433,
 'market_place': 1.8178957571617955,
 'community_centre': 0.5686973997706826,
 'restaurant': 0.4905368227754652,
 'hospital': 1.189506827111484,
 'travel_agent': 1.141202147536929,
 'arts_centre': 1.4199557484897578,
 'toy_shop': 1.378563063331533,
 'mall': 1.4199557484897578,
 'monument': 2.1189257528257768,
 'stationery': 1.378563063331533,
 'newsagent': 0.8401721518729477,
 'food_court': 2.1189257528257768,
 'graveyard': 0.9885919843307706,
 'wastewater_plant': 2.1189257528257768,
 'car_rental': 1.306012396182921,
 'artwork': 2.419955748489758,
 'convenience': 0.258587746254783,
 'college': 1.215835765833833,
 'garden_centre': 1.720985744153739,
 'shelter': 1.189506827111484,
 'gift_shop': 1.141202147536929,
 'pharmacy': 0.7039524048549587,
 'car_dealership': 0.6491037368476137,
 'furniture_shop': 0.8636532477224705,
 'water_works': 1.378563063331533,
 'beverages': 0.8517540244227628,
 'water_tower': 2.1189257528257768,
 'tower': 1.720985744153739,
 'sports_shop': 1.1189257528257768,
 'bank': 1.141202147536929,
 'archaeological': 1.9428344937700954,
 'optician': 0.9885919843307706,
 'mobile_phone_shop': 1.141202147536929,
 'swimming_pool': 1.058227912472165,
 'nightclub': 1.465713239050433,
 'beauty_shop': 0.5811066577525026,
 'bar': 0.8517540244227628,
 'picnic_site': 2.419955748489758,
 'caravan_site': 2.419955748489758,
 'shoe_shop': 1.465713239050433,
 'clinic': 0.6640808928172665,
 'department_store': 1.8178957571617955,
 'jeweller': 1.2738277128115199,
 'nursing_home': 1.2738277128115199,
 'toilet': 1.2738277128115199,
 'track': 1.306012396182921,
 'castle': 2.1189257528257768,
 'florist': 0.9575577505908017,
 'sports_centre': 0.7765030720035705,
 'doityourself': 0.7864872929101714,
 'hostel': 1.9428344937700954,
 'bakery': 0.7478578905540404,
 'butcher': 1.0049824005189398,
 'tourist_info': 2.1189257528257768,
 'supermarket': 0.5168657614978143,
 'public_building': 2.1189257528257768,
 'playground': 0.34440878709722716,
 'golf_course': 1.3407745024421331,
 'theme_park': 2.1189257528257768,
 'recycling_glass': 1.9428344937700954,
 'hotel': 1.0220157398177203,
 'observation_tower': 2.419955748489758,
 'fast_food': 0.26461971102469606,
 'outdoor_shop': 1.574857708475501,
 'comms_tower': 2.1189257528257768,
 'cinema': 1.574857708475501,
 'video_shop': 1.9428344937700954,
 'laundry': 0.9575577505908017,
 'memorial': 2.1189257528257768,
 'computer_shop': 1.189506827111484,
 'bookshop': 1.2738277128115199,
 'nan': 2.419955748489758,
 'school': 0.19984766044970276,
 'park': 0.17198248212795123,
 'car_wash': 0.9727977171475386,
 'fountain': 2.419955748489758,
 'dentist': 0.7297596684612442,
 'theatre': 1.378563063331533,
 'fire_station': 1.8178957571617955,
 'post_office': 1.215835765833833,
 'museum': 1.3407745024421331,
 'ruins': 1.5168657614978143,
 'library': 0.9885919843307706,
 'doctors': 0.8288911414632587,
 'courthouse': 1.9428344937700954,
 'hairdresser': 0.2864168401195404,
 'police': 1.574857708475501,
 'recycling': 2.419955748489758,
 'recycling_metal': 2.419955748489758,
 'prison': 1.9428344937700954,
 'veterinary': 1.058227912472165,
 'bicycle_shop': 1.058227912472165,
 'town_hall': 2.1189257528257768,
 'greengrocer': 1.1189257528257768,
 'pub': 0.2961041075226721,
 'pitch': 0.2615932563945082,
 'camp_site': 2.419955748489758,
 'chemist': 2.1189257528257768,
 'attraction': 1.3407745024421331,
 'clothes': 0.8401721518729477,
 'guesthouse': 1.215835765833833,
 'stadium': 1.6418044981061142,
 'kindergarten': 0.679593058995514}

By multiplying tf and idf, we can finally have the TF-IDF using the function:

def computeTFIDF(tf, idfs):
    tfidf = {}
    for word, freq in tf.items():
        tfidf[word] = freq*idfs[word]
    return tfidf

Here is an example on how we use the function:

tfidfDic = {}
for doc, wordDic in docDic.items():
    doc_tfidf = computeTFIDF(wordDic, idfs)
    tfidfDic[doc] = doc_tfidf
tfidfDic
{'E01014612': {'cafe': 0.0,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.0,
  'restaurant': 0.0,
  'hospital': 0.0,
  'travel_agent': 0.0,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.0,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 0.0,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 0.0,
  'pharmacy': 0.0,
  'car_dealership': 0.0,
  'furniture_shop': 0.0,
  'water_works': 0.0,
  'beverages': 0.0,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.0,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 2.11645582494433,
  'nightclub': 0.0,
  'beauty_shop': 0.0,
  'bar': 0.0,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.0,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 0.0,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 0.0,
  'doityourself': 0.0,
  'hostel': 0.0,
  'bakery': 0.0,
  'butcher': 0.0,
  'tourist_info': 0.0,
  'supermarket': 0.0,
  'public_building': 0.0,
  'playground': 0.34440878709722716,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 0.0,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.0,
  'park': 0.17198248212795123,
  'car_wash': 0.0,
  'fountain': 0.0,
  'dentist': 0.0,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.0,
  'doctors': 0.0,
  'courthouse': 0.0,
  'hairdresser': 0.0,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 0.0,
  'town_hall': 0.0,
  'greengrocer': 0.0,
  'pub': 0.0,
  'pitch': 0.0,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.0,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.0},
 'E01014512': {'cafe': 0.428729672797263,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.5686973997706826,
  'restaurant': 1.4716104683263955,
  'hospital': 0.0,
  'travel_agent': 0.0,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.0,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 0.7757632387643489,
  'college': 1.215835765833833,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 0.0,
  'pharmacy': 0.0,
  'car_dealership': 0.6491037368476137,
  'furniture_shop': 0.0,
  'water_works': 0.0,
  'beverages': 0.0,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.0,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 0.0,
  'nightclub': 0.0,
  'beauty_shop': 0.0,
  'bar': 0.0,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.6640808928172665,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 1.2738277128115199,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 2.3295092160107114,
  'doityourself': 2.359461878730514,
  'hostel': 0.0,
  'bakery': 0.0,
  'butcher': 1.0049824005189398,
  'tourist_info': 0.0,
  'supermarket': 0.0,
  'public_building': 0.0,
  'playground': 0.0,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 0.26461971102469606,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 1.189506827111484,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.0,
  'park': 0.0,
  'car_wash': 0.9727977171475386,
  'fountain': 0.0,
  'dentist': 0.7297596684612442,
  'theatre': 1.378563063331533,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.0,
  'doctors': 0.0,
  'courthouse': 0.0,
  'hairdresser': 0.5728336802390808,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 0.0,
  'town_hall': 0.0,
  'greengrocer': 0.0,
  'pub': 0.0,
  'pitch': 0.0,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.0,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.679593058995514},
 'E01014618': {'cafe': 0.428729672797263,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.5686973997706826,
  'restaurant': 0.0,
  'hospital': 0.0,
  'travel_agent': 0.0,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.0,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 0.517175492509566,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 0.0,
  'pharmacy': 0.0,
  'car_dealership': 0.0,
  'furniture_shop': 0.0,
  'water_works': 0.0,
  'beverages': 0.0,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.0,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 0.0,
  'nightclub': 0.0,
  'beauty_shop': 0.5811066577525026,
  'bar': 0.0,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.0,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 0.0,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 0.0,
  'doityourself': 0.0,
  'hostel': 0.0,
  'bakery': 0.0,
  'butcher': 0.0,
  'tourist_info': 0.0,
  'supermarket': 0.0,
  'public_building': 0.0,
  'playground': 0.34440878709722716,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 0.7938591330740882,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.0,
  'park': 0.34396496425590245,
  'car_wash': 0.0,
  'fountain': 0.0,
  'dentist': 0.0,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.0,
  'doctors': 0.0,
  'courthouse': 0.0,
  'hairdresser': 0.5728336802390808,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 0.0,
  'town_hall': 0.0,
  'greengrocer': 0.0,
  'pub': 0.0,
  'pitch': 0.0,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.0,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 1.359186117991028},
 'E01014576': {'cafe': 0.0,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.0,
  'restaurant': 0.0,
  'hospital': 0.0,
  'travel_agent': 0.0,
  'arts_centre': 0.0,
  'toy_shop': 1.378563063331533,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.0,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 0.258587746254783,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 0.0,
  'pharmacy': 0.0,
  'car_dealership': 0.6491037368476137,
  'furniture_shop': 0.0,
  'water_works': 0.0,
  'beverages': 0.0,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 1.1189257528257768,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.0,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 0.0,
  'nightclub': 0.0,
  'beauty_shop': 0.5811066577525026,
  'bar': 0.0,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.0,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 0.0,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 0.0,
  'doityourself': 0.0,
  'hostel': 0.0,
  'bakery': 0.0,
  'butcher': 0.0,
  'tourist_info': 0.0,
  'supermarket': 0.0,
  'public_building': 0.0,
  'playground': 0.6888175741944543,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 0.26461971102469606,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.0,
  'park': 0.0,
  'car_wash': 0.0,
  'fountain': 0.0,
  'dentist': 0.0,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.0,
  'doctors': 0.0,
  'courthouse': 0.0,
  'hairdresser': 0.0,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 0.0,
  'town_hall': 0.0,
  'greengrocer': 0.0,
  'pub': 0.2961041075226721,
  'pitch': 0.5231865127890164,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.0,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.0},
 'E01033370': {'cafe': 0.0,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.0,
  'restaurant': 0.4905368227754652,
  'hospital': 0.0,
  'travel_agent': 0.0,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.0,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 0.258587746254783,
  'college': 1.215835765833833,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 0.0,
  'pharmacy': 0.0,
  'car_dealership': 0.6491037368476137,
  'furniture_shop': 0.8636532477224705,
  'water_works': 0.0,
  'beverages': 0.0,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.0,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 0.0,
  'nightclub': 0.0,
  'beauty_shop': 0.0,
  'bar': 0.0,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.0,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 0.0,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 0.0,
  'doityourself': 0.0,
  'hostel': 0.0,
  'bakery': 0.0,
  'butcher': 0.0,
  'tourist_info': 0.0,
  'supermarket': 0.0,
  'public_building': 0.0,
  'playground': 0.34440878709722716,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 2.0440314796354406,
  'observation_tower': 0.0,
  'fast_food': 0.5292394220493921,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.19984766044970276,
  'park': 0.17198248212795123,
  'car_wash': 0.0,
  'fountain': 0.0,
  'dentist': 0.0,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.0,
  'doctors': 0.0,
  'courthouse': 0.0,
  'hairdresser': 0.0,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 0.0,
  'town_hall': 0.0,
  'greengrocer': 0.0,
  'pub': 0.5922082150453442,
  'pitch': 0.7847797691835245,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.0,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.679593058995514},
 'E01014518': {'cafe': 0.0,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.0,
  'restaurant': 0.0,
  'hospital': 0.0,
  'travel_agent': 0.0,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.0,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 0.258587746254783,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 0.0,
  'pharmacy': 0.7039524048549587,
  'car_dealership': 0.6491037368476137,
  'furniture_shop': 0.0,
  'water_works': 0.0,
  'beverages': 0.0,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.0,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 0.0,
  'nightclub': 0.0,
  'beauty_shop': 0.5811066577525026,
  'bar': 0.0,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.0,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 0.0,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 0.0,
  'doityourself': 2.359461878730514,
  'hostel': 0.0,
  'bakery': 0.0,
  'butcher': 0.0,
  'tourist_info': 0.0,
  'supermarket': 0.0,
  'public_building': 0.0,
  'playground': 0.0,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 0.5292394220493921,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.0,
  'park': 0.17198248212795123,
  'car_wash': 0.9727977171475386,
  'fountain': 0.0,
  'dentist': 0.0,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.0,
  'doctors': 0.0,
  'courthouse': 0.0,
  'hairdresser': 0.2864168401195404,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 0.0,
  'town_hall': 0.0,
  'greengrocer': 0.0,
  'pub': 0.2961041075226721,
  'pitch': 0.0,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.0,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.0},
 'E01014731': {'cafe': 0.0,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.0,
  'restaurant': 0.4905368227754652,
  'hospital': 0.0,
  'travel_agent': 0.0,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.0,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 0.258587746254783,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 1.141202147536929,
  'pharmacy': 0.0,
  'car_dealership': 0.0,
  'furniture_shop': 0.0,
  'water_works': 0.0,
  'beverages': 0.0,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.0,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 0.0,
  'nightclub': 0.0,
  'beauty_shop': 0.0,
  'bar': 0.0,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.0,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 0.0,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 0.7765030720035705,
  'doityourself': 0.0,
  'hostel': 0.0,
  'bakery': 0.7478578905540404,
  'butcher': 0.0,
  'tourist_info': 0.0,
  'supermarket': 0.0,
  'public_building': 0.0,
  'playground': 0.0,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 0.0,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.0,
  'park': 0.0,
  'car_wash': 0.0,
  'fountain': 0.0,
  'dentist': 0.0,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.0,
  'doctors': 0.0,
  'courthouse': 0.0,
  'hairdresser': 0.0,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 0.0,
  'town_hall': 0.0,
  'greengrocer': 1.1189257528257768,
  'pub': 1.1844164300906883,
  'pitch': 0.0,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.0,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.0},
 'E01033345': {'cafe': 6.002215419161682,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.5686973997706826,
  'restaurant': 11.2823469238357,
  'hospital': 0.0,
  'travel_agent': 0.0,
  'arts_centre': 2.8399114969795156,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.0,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 0.517175492509566,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 1.141202147536929,
  'pharmacy': 0.7039524048549587,
  'car_dealership': 0.0,
  'furniture_shop': 0.8636532477224705,
  'water_works': 0.0,
  'beverages': 2.5552620732682882,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.0,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 0.0,
  'nightclub': 5.862852956201732,
  'beauty_shop': 1.1622133155050052,
  'bar': 5.9622781709593395,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.6640808928172665,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 0.0,
  'toilet': 1.2738277128115199,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.9575577505908017,
  'sports_centre': 0.7765030720035705,
  'doityourself': 0.0,
  'hostel': 0.0,
  'bakery': 0.0,
  'butcher': 0.0,
  'tourist_info': 2.1189257528257768,
  'supermarket': 1.0337315229956285,
  'public_building': 0.0,
  'playground': 0.0,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 1.0220157398177203,
  'observation_tower': 0.0,
  'fast_food': 3.440056243321049,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 1.574857708475501,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.19984766044970276,
  'park': 0.8599124106397561,
  'car_wash': 0.0,
  'fountain': 12.099778742448791,
  'dentist': 0.0,
  'theatre': 2.757126126663066,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 2.6815490048842663,
  'ruins': 0.0,
  'library': 0.9885919843307706,
  'doctors': 0.0,
  'courthouse': 0.0,
  'hairdresser': 2.5777515610758632,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 0.0,
  'town_hall': 2.1189257528257768,
  'greengrocer': 0.0,
  'pub': 2.664936967704049,
  'pitch': 0.0,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 1.3407745024421331,
  'clothes': 1.6803443037458954,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.0},
 'E01014591': {'cafe': 0.0,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.0,
  'restaurant': 0.0,
  'hospital': 0.0,
  'travel_agent': 0.0,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.0,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 0.7757632387643489,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 0.0,
  'pharmacy': 0.0,
  'car_dealership': 1.2982074736952274,
  'furniture_shop': 0.0,
  'water_works': 0.0,
  'beverages': 0.0,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.0,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 0.0,
  'nightclub': 0.0,
  'beauty_shop': 0.0,
  'bar': 0.0,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.0,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 1.2738277128115199,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 0.0,
  'doityourself': 1.5729745858203428,
  'hostel': 0.0,
  'bakery': 0.7478578905540404,
  'butcher': 0.0,
  'tourist_info': 0.0,
  'supermarket': 0.0,
  'public_building': 0.0,
  'playground': 0.34440878709722716,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 0.0,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.3996953208994055,
  'park': 0.17198248212795123,
  'car_wash': 0.0,
  'fountain': 0.0,
  'dentist': 0.0,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.0,
  'doctors': 0.0,
  'courthouse': 0.0,
  'hairdresser': 0.5728336802390808,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 0.0,
  'town_hall': 0.0,
  'greengrocer': 0.0,
  'pub': 0.0,
  'pitch': 0.0,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.0,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.0},
 'E01014611': {'cafe': 0.0,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.0,
  'restaurant': 0.0,
  'hospital': 0.0,
  'travel_agent': 0.0,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.0,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 0.0,
  'college': 1.215835765833833,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 0.0,
  'pharmacy': 0.0,
  'car_dealership': 0.0,
  'furniture_shop': 0.0,
  'water_works': 0.0,
  'beverages': 0.0,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.0,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 0.0,
  'nightclub': 0.0,
  'beauty_shop': 0.0,
  'bar': 0.0,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.0,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 0.0,
  'toilet': 0.0,
  'track': 1.306012396182921,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 0.7765030720035705,
  'doityourself': 0.0,
  'hostel': 0.0,
  'bakery': 0.0,
  'butcher': 0.0,
  'tourist_info': 0.0,
  'supermarket': 0.0,
  'public_building': 0.0,
  'playground': 0.0,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 0.26461971102469606,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.19984766044970276,
  'park': 0.5159474463838537,
  'car_wash': 0.0,
  'fountain': 0.0,
  'dentist': 0.0,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.0,
  'doctors': 0.0,
  'courthouse': 0.0,
  'hairdresser': 0.0,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 0.0,
  'town_hall': 0.0,
  'greengrocer': 0.0,
  'pub': 0.0,
  'pitch': 0.2615932563945082,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.0,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.0},
 'E01014550': {'cafe': 0.428729672797263,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.0,
  'restaurant': 0.9810736455509304,
  'hospital': 0.0,
  'travel_agent': 0.0,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.0,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 0.517175492509566,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 0.0,
  'pharmacy': 0.0,
  'car_dealership': 0.0,
  'furniture_shop': 0.0,
  'water_works': 0.0,
  'beverages': 0.0,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 1.1189257528257768,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.0,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 0.0,
  'nightclub': 0.0,
  'beauty_shop': 0.0,
  'bar': 0.0,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 1.328161785634533,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 0.0,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 0.7765030720035705,
  'doityourself': 0.7864872929101714,
  'hostel': 0.0,
  'bakery': 0.0,
  'butcher': 0.0,
  'tourist_info': 0.0,
  'supermarket': 0.0,
  'public_building': 0.0,
  'playground': 0.34440878709722716,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 0.7938591330740882,
  'outdoor_shop': 1.574857708475501,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.0,
  'park': 0.0,
  'car_wash': 0.0,
  'fountain': 0.0,
  'dentist': 0.7297596684612442,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.0,
  'doctors': 0.0,
  'courthouse': 0.0,
  'hairdresser': 0.0,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 1.058227912472165,
  'bicycle_shop': 0.0,
  'town_hall': 0.0,
  'greengrocer': 0.0,
  'pub': 1.4805205376133603,
  'pitch': 0.0,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.0,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.0},
 'E01014568': {'cafe': 1.286189018391789,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.0,
  'restaurant': 4.414831404979187,
  'hospital': 0.0,
  'travel_agent': 2.282404295073858,
  'arts_centre': 0.0,
  'toy_shop': 1.378563063331533,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.0,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 1.292938731273915,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 1.141202147536929,
  'pharmacy': 1.4079048097099174,
  'car_dealership': 0.0,
  'furniture_shop': 0.0,
  'water_works': 0.0,
  'beverages': 0.0,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.0,
  'mobile_phone_shop': 1.141202147536929,
  'swimming_pool': 0.0,
  'nightclub': 0.0,
  'beauty_shop': 1.1622133155050052,
  'bar': 0.0,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.0,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 0.0,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 0.0,
  'doityourself': 0.0,
  'hostel': 0.0,
  'bakery': 1.4957157811080808,
  'butcher': 3.0149472015568195,
  'tourist_info': 0.0,
  'supermarket': 2.067463045991257,
  'public_building': 0.0,
  'playground': 0.6888175741944543,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 1.8523379771728723,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.0,
  'park': 0.34396496425590245,
  'car_wash': 0.9727977171475386,
  'fountain': 0.0,
  'dentist': 0.0,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.0,
  'doctors': 0.0,
  'courthouse': 0.0,
  'hairdresser': 1.432084200597702,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 0.0,
  'town_hall': 0.0,
  'greengrocer': 0.0,
  'pub': 1.1844164300906883,
  'pitch': 0.0,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 2.520516455618843,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.0},
 'E01033359': {'cafe': 3.429837382378104,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.0,
  'restaurant': 0.4905368227754652,
  'hospital': 0.0,
  'travel_agent': 1.141202147536929,
  'arts_centre': 1.4199557484897578,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.0,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 1.306012396182921,
  'artwork': 0.0,
  'convenience': 0.517175492509566,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 1.141202147536929,
  'pharmacy': 0.7039524048549587,
  'car_dealership': 0.6491037368476137,
  'furniture_shop': 1.727306495444941,
  'water_works': 0.0,
  'beverages': 0.8517540244227628,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 2.282404295073858,
  'archaeological': 0.0,
  'optician': 1.9771839686615411,
  'mobile_phone_shop': 7.988415032758502,
  'swimming_pool': 0.0,
  'nightclub': 1.465713239050433,
  'beauty_shop': 1.7433199732575078,
  'bar': 0.0,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 1.465713239050433,
  'clinic': 0.6640808928172665,
  'department_store': 0.0,
  'jeweller': 1.2738277128115199,
  'nursing_home': 0.0,
  'toilet': 1.2738277128115199,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 0.7765030720035705,
  'doityourself': 0.0,
  'hostel': 0.0,
  'bakery': 0.0,
  'butcher': 1.0049824005189398,
  'tourist_info': 0.0,
  'supermarket': 0.5168657614978143,
  'public_building': 0.0,
  'playground': 0.34440878709722716,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 2.3815773992222646,
  'outdoor_shop': 1.574857708475501,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.0,
  'park': 0.17198248212795123,
  'car_wash': 0.9727977171475386,
  'fountain': 0.0,
  'dentist': 0.0,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 1.215835765833833,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.9885919843307706,
  'doctors': 0.8288911414632587,
  'courthouse': 0.0,
  'hairdresser': 2.004917880836783,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 0.0,
  'town_hall': 0.0,
  'greengrocer': 1.1189257528257768,
  'pub': 1.7766246451360326,
  'pitch': 0.2615932563945082,
  'camp_site': 0.0,
  'chemist': 2.1189257528257768,
  'attraction': 0.0,
  'clothes': 1.6803443037458954,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.0},
 'E01014549': {'cafe': 0.0,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.0,
  'restaurant': 0.0,
  'hospital': 0.0,
  'travel_agent': 0.0,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.0,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 0.0,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 0.0,
  'pharmacy': 0.0,
  'car_dealership': 0.0,
  'furniture_shop': 0.0,
  'water_works': 0.0,
  'beverages': 0.0,
  'water_tower': 0.0,
  'tower': 1.720985744153739,
  'sports_shop': 0.0,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.0,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 0.0,
  'nightclub': 0.0,
  'beauty_shop': 0.0,
  'bar': 0.0,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.0,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 0.0,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 0.0,
  'doityourself': 0.0,
  'hostel': 0.0,
  'bakery': 0.0,
  'butcher': 0.0,
  'tourist_info': 0.0,
  'supermarket': 0.0,
  'public_building': 0.0,
  'playground': 0.34440878709722716,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 0.0,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.0,
  'park': 0.0,
  'car_wash': 0.0,
  'fountain': 0.0,
  'dentist': 0.0,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.0,
  'doctors': 0.0,
  'courthouse': 0.0,
  'hairdresser': 0.0,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 0.0,
  'town_hall': 0.0,
  'greengrocer': 0.0,
  'pub': 0.0,
  'pitch': 0.2615932563945082,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.0,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.0},
 'E01014554': {'cafe': 0.428729672797263,
  'university': 2.931426478100866,
  'market_place': 0.0,
  'community_centre': 0.0,
  'restaurant': 1.4716104683263955,
  'hospital': 0.0,
  'travel_agent': 0.0,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.0,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 0.517175492509566,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 0.0,
  'pharmacy': 0.0,
  'car_dealership': 0.0,
  'furniture_shop': 0.0,
  'water_works': 0.0,
  'beverages': 0.0,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.0,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 1.058227912472165,
  'nightclub': 0.0,
  'beauty_shop': 0.0,
  'bar': 0.8517540244227628,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.6640808928172665,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 0.0,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 0.0,
  'doityourself': 0.0,
  'hostel': 0.0,
  'bakery': 0.0,
  'butcher': 0.0,
  'tourist_info': 0.0,
  'supermarket': 0.0,
  'public_building': 0.0,
  'playground': 0.0,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 2.0440314796354406,
  'observation_tower': 0.0,
  'fast_food': 0.5292394220493921,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.9575577505908017,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 1.2738277128115199,
  'nan': 0.0,
  'school': 0.19984766044970276,
  'park': 0.17198248212795123,
  'car_wash': 0.0,
  'fountain': 0.0,
  'dentist': 0.7297596684612442,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.0,
  'doctors': 0.0,
  'courthouse': 0.0,
  'hairdresser': 0.8592505203586212,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 0.0,
  'town_hall': 0.0,
  'greengrocer': 0.0,
  'pub': 0.8883123225680163,
  'pitch': 0.0,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.0,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.679593058995514},
 'E01014585': {'cafe': 0.0,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.5686973997706826,
  'restaurant': 0.0,
  'hospital': 0.0,
  'travel_agent': 0.0,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.0,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 0.258587746254783,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 0.0,
  'pharmacy': 0.0,
  'car_dealership': 0.0,
  'furniture_shop': 0.0,
  'water_works': 0.0,
  'beverages': 0.0,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.0,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 0.0,
  'nightclub': 0.0,
  'beauty_shop': 0.0,
  'bar': 0.0,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.0,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 0.0,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 0.0,
  'doityourself': 0.0,
  'hostel': 0.0,
  'bakery': 0.0,
  'butcher': 0.0,
  'tourist_info': 0.0,
  'supermarket': 0.0,
  'public_building': 0.0,
  'playground': 0.0,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 0.0,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.19984766044970276,
  'park': 0.34396496425590245,
  'car_wash': 0.0,
  'fountain': 0.0,
  'dentist': 0.0,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.0,
  'doctors': 0.0,
  'courthouse': 0.0,
  'hairdresser': 0.0,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 0.0,
  'town_hall': 0.0,
  'greengrocer': 0.0,
  'pub': 0.0,
  'pitch': 0.5231865127890164,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.0,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.0},
 'E01014600': {'cafe': 0.0,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.0,
  'restaurant': 0.0,
  'hospital': 0.0,
  'travel_agent': 0.0,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.0,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 0.0,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 0.0,
  'pharmacy': 0.0,
  'car_dealership': 0.0,
  'furniture_shop': 0.0,
  'water_works': 0.0,
  'beverages': 0.0,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.0,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 0.0,
  'nightclub': 0.0,
  'beauty_shop': 0.0,
  'bar': 0.0,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.0,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 0.0,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 0.0,
  'doityourself': 0.0,
  'hostel': 0.0,
  'bakery': 0.0,
  'butcher': 0.0,
  'tourist_info': 0.0,
  'supermarket': 0.0,
  'public_building': 0.0,
  'playground': 0.0,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 0.0,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.19984766044970276,
  'park': 0.0,
  'car_wash': 0.0,
  'fountain': 0.0,
  'dentist': 0.0,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 1.215835765833833,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.0,
  'doctors': 0.0,
  'courthouse': 0.0,
  'hairdresser': 0.0,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 0.0,
  'town_hall': 0.0,
  'greengrocer': 0.0,
  'pub': 0.0,
  'pitch': 0.0,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.0,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.0},
 'E01014648': {'cafe': 0.428729672797263,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.5686973997706826,
  'restaurant': 0.0,
  'hospital': 0.0,
  'travel_agent': 0.0,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 1.4199557484897578,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.8401721518729477,
  'food_court': 0.0,
  'graveyard': 0.9885919843307706,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 0.0,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 1.189506827111484,
  'gift_shop': 1.141202147536929,
  'pharmacy': 0.0,
  'car_dealership': 0.0,
  'furniture_shop': 0.0,
  'water_works': 0.0,
  'beverages': 0.0,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 2.282404295073858,
  'archaeological': 0.0,
  'optician': 0.0,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 0.0,
  'nightclub': 0.0,
  'beauty_shop': 0.0,
  'bar': 0.0,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.6640808928172665,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 0.0,
  'toilet': 1.2738277128115199,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.9575577505908017,
  'sports_centre': 0.0,
  'doityourself': 0.0,
  'hostel': 0.0,
  'bakery': 0.7478578905540404,
  'butcher': 0.0,
  'tourist_info': 0.0,
  'supermarket': 0.0,
  'public_building': 0.0,
  'playground': 0.34440878709722716,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 0.7938591330740882,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.19984766044970276,
  'park': 0.34396496425590245,
  'car_wash': 0.9727977171475386,
  'fountain': 0.0,
  'dentist': 0.7297596684612442,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.0,
  'doctors': 0.0,
  'courthouse': 0.0,
  'hairdresser': 0.5728336802390808,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 1.058227912472165,
  'bicycle_shop': 0.0,
  'town_hall': 0.0,
  'greengrocer': 0.0,
  'pub': 0.2961041075226721,
  'pitch': 1.0463730255780328,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.0,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 1.359186117991028},
 'E01014566': {'cafe': 0.0,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.0,
  'restaurant': 0.9810736455509304,
  'hospital': 0.0,
  'travel_agent': 0.0,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.8401721518729477,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 0.7757632387643489,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 0.0,
  'pharmacy': 0.7039524048549587,
  'car_dealership': 0.6491037368476137,
  'furniture_shop': 0.8636532477224705,
  'water_works': 0.0,
  'beverages': 3.4070160976910513,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.9885919843307706,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 0.0,
  'nightclub': 0.0,
  'beauty_shop': 1.1622133155050052,
  'bar': 0.0,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.0,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 0.0,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 0.0,
  'doityourself': 0.7864872929101714,
  'hostel': 0.0,
  'bakery': 1.4957157811080808,
  'butcher': 0.0,
  'tourist_info': 0.0,
  'supermarket': 0.0,
  'public_building': 0.0,
  'playground': 0.0,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 1.3230985551234804,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.19984766044970276,
  'park': 0.0,
  'car_wash': 0.0,
  'fountain': 0.0,
  'dentist': 0.7297596684612442,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 1.215835765833833,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.0,
  'doctors': 0.0,
  'courthouse': 0.0,
  'hairdresser': 0.5728336802390808,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 0.0,
  'town_hall': 0.0,
  'greengrocer': 0.0,
  'pub': 0.8883123225680163,
  'pitch': 0.7847797691835245,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.0,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.0},
 'E01014654': {'cafe': 3.001107709580841,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.5686973997706826,
  'restaurant': 1.4716104683263955,
  'hospital': 0.0,
  'travel_agent': 1.141202147536929,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.0,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 1.5515264775286979,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 0.0,
  'pharmacy': 0.7039524048549587,
  'car_dealership': 0.6491037368476137,
  'furniture_shop': 1.727306495444941,
  'water_works': 0.0,
  'beverages': 0.0,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.9885919843307706,
  'mobile_phone_shop': 2.282404295073858,
  'swimming_pool': 0.0,
  'nightclub': 0.0,
  'beauty_shop': 0.0,
  'bar': 1.7035080488455256,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.6640808928172665,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 0.0,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 1.553006144007141,
  'doityourself': 0.0,
  'hostel': 0.0,
  'bakery': 0.0,
  'butcher': 4.019929602075759,
  'tourist_info': 0.0,
  'supermarket': 0.0,
  'public_building': 0.0,
  'playground': 0.6888175741944543,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 1.8523379771728723,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 1.189506827111484,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.5995429813491082,
  'park': 0.6879299285118049,
  'car_wash': 0.0,
  'fountain': 0.0,
  'dentist': 0.0,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.9885919843307706,
  'doctors': 0.0,
  'courthouse': 0.0,
  'hairdresser': 0.8592505203586212,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 1.058227912472165,
  'town_hall': 0.0,
  'greengrocer': 1.1189257528257768,
  'pub': 0.0,
  'pitch': 0.7847797691835245,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 1.6803443037458954,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.0},
 'E01014649': {'cafe': 0.0,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.5686973997706826,
  'restaurant': 0.9810736455509304,
  'hospital': 0.0,
  'travel_agent': 0.0,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.0,
  'food_court': 0.0,
  'graveyard': 0.9885919843307706,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 0.0,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 0.0,
  'pharmacy': 0.0,
  'car_dealership': 0.0,
  'furniture_shop': 0.0,
  'water_works': 0.0,
  'beverages': 0.0,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.0,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 0.0,
  'nightclub': 0.0,
  'beauty_shop': 0.0,
  'bar': 0.0,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.0,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 0.0,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 0.0,
  'doityourself': 0.0,
  'hostel': 0.0,
  'bakery': 0.0,
  'butcher': 0.0,
  'tourist_info': 0.0,
  'supermarket': 0.0,
  'public_building': 0.0,
  'playground': 0.0,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 0.26461971102469606,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.0,
  'park': 0.0,
  'car_wash': 0.0,
  'fountain': 0.0,
  'dentist': 0.0,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.0,
  'doctors': 0.8288911414632587,
  'courthouse': 0.0,
  'hairdresser': 0.5728336802390808,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 1.058227912472165,
  'bicycle_shop': 0.0,
  'town_hall': 0.0,
  'greengrocer': 0.0,
  'pub': 0.2961041075226721,
  'pitch': 0.0,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.0,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.0},
 'E01014636': {'cafe': 0.428729672797263,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.0,
  'restaurant': 0.0,
  'hospital': 0.0,
  'travel_agent': 0.0,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.0,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 0.258587746254783,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 0.0,
  'pharmacy': 0.0,
  'car_dealership': 0.0,
  'furniture_shop': 0.0,
  'water_works': 0.0,
  'beverages': 0.0,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.0,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 0.0,
  'nightclub': 0.0,
  'beauty_shop': 0.0,
  'bar': 0.0,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.0,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 0.0,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 0.0,
  'doityourself': 0.0,
  'hostel': 0.0,
  'bakery': 0.0,
  'butcher': 0.0,
  'tourist_info': 0.0,
  'supermarket': 0.0,
  'public_building': 0.0,
  'playground': 0.34440878709722716,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 0.26461971102469606,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.19984766044970276,
  'park': 0.0,
  'car_wash': 0.0,
  'fountain': 0.0,
  'dentist': 0.0,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.0,
  'doctors': 0.0,
  'courthouse': 0.0,
  'hairdresser': 0.0,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 0.0,
  'town_hall': 0.0,
  'greengrocer': 0.0,
  'pub': 0.2961041075226721,
  'pitch': 0.2615932563945082,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.0,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.0},
 'E01014569': {'cafe': 0.428729672797263,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.5686973997706826,
  'restaurant': 0.0,
  'hospital': 0.0,
  'travel_agent': 0.0,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.0,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 0.258587746254783,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 0.0,
  'pharmacy': 0.7039524048549587,
  'car_dealership': 2.5964149473904548,
  'furniture_shop': 0.0,
  'water_works': 0.0,
  'beverages': 0.8517540244227628,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.0,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 0.0,
  'nightclub': 0.0,
  'beauty_shop': 0.0,
  'bar': 0.0,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.0,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 0.0,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 0.0,
  'doityourself': 0.0,
  'hostel': 0.0,
  'bakery': 0.0,
  'butcher': 0.0,
  'tourist_info': 0.0,
  'supermarket': 0.0,
  'public_building': 0.0,
  'playground': 0.0,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 0.0,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.0,
  'park': 0.17198248212795123,
  'car_wash': 0.0,
  'fountain': 0.0,
  'dentist': 0.0,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.0,
  'doctors': 0.0,
  'courthouse': 0.0,
  'hairdresser': 0.2864168401195404,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 0.0,
  'town_hall': 0.0,
  'greengrocer': 1.1189257528257768,
  'pub': 0.2961041075226721,
  'pitch': 0.2615932563945082,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.0,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.0},
 'E01014532': {'cafe': 0.0,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.0,
  'restaurant': 0.0,
  'hospital': 0.0,
  'travel_agent': 0.0,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.8401721518729477,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 0.0,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 0.0,
  'pharmacy': 0.0,
  'car_dealership': 0.0,
  'furniture_shop': 0.0,
  'water_works': 0.0,
  'beverages': 0.0,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.0,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 0.0,
  'nightclub': 0.0,
  'beauty_shop': 0.0,
  'bar': 0.0,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.0,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 0.0,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 0.0,
  'doityourself': 0.0,
  'hostel': 0.0,
  'bakery': 0.0,
  'butcher': 0.0,
  'tourist_info': 0.0,
  'supermarket': 0.0,
  'public_building': 0.0,
  'playground': 0.0,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 0.0,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.0,
  'park': 0.0,
  'car_wash': 0.0,
  'fountain': 0.0,
  'dentist': 0.0,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.0,
  'doctors': 0.0,
  'courthouse': 0.0,
  'hairdresser': 0.5728336802390808,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 0.0,
  'town_hall': 0.0,
  'greengrocer': 0.0,
  'pub': 0.0,
  'pitch': 0.0,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.0,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.0},
 'E01014560': {'cafe': 0.0,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.0,
  'restaurant': 0.9810736455509304,
  'hospital': 0.0,
  'travel_agent': 0.0,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.0,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 0.258587746254783,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 0.0,
  'pharmacy': 0.0,
  'car_dealership': 0.0,
  'furniture_shop': 0.0,
  'water_works': 0.0,
  'beverages': 0.0,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 1.141202147536929,
  'archaeological': 0.0,
  'optician': 0.0,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 1.058227912472165,
  'nightclub': 0.0,
  'beauty_shop': 0.5811066577525026,
  'bar': 0.0,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 1.328161785634533,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 0.0,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 0.0,
  'doityourself': 0.0,
  'hostel': 0.0,
  'bakery': 0.7478578905540404,
  'butcher': 0.0,
  'tourist_info': 0.0,
  'supermarket': 0.0,
  'public_building': 0.0,
  'playground': 0.0,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 0.5292394220493921,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.0,
  'park': 0.17198248212795123,
  'car_wash': 0.0,
  'fountain': 0.0,
  'dentist': 0.7297596684612442,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.0,
  'doctors': 0.8288911414632587,
  'courthouse': 0.0,
  'hairdresser': 0.8592505203586212,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 0.0,
  'town_hall': 0.0,
  'greengrocer': 0.0,
  'pub': 0.0,
  'pitch': 0.0,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.0,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.0},
 'E01014587': {'cafe': 0.428729672797263,
  'university': 5.862852956201732,
  'market_place': 0.0,
  'community_centre': 0.0,
  'restaurant': 0.4905368227754652,
  'hospital': 1.189506827111484,
  'travel_agent': 0.0,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.0,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 0.517175492509566,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 0.0,
  'pharmacy': 0.7039524048549587,
  'car_dealership': 0.0,
  'furniture_shop': 0.0,
  'water_works': 0.0,
  'beverages': 0.0,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.0,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 0.0,
  'nightclub': 0.0,
  'beauty_shop': 0.0,
  'bar': 0.0,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.0,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 1.2738277128115199,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 0.0,
  'doityourself': 0.0,
  'hostel': 0.0,
  'bakery': 0.0,
  'butcher': 0.0,
  'tourist_info': 0.0,
  'supermarket': 0.0,
  'public_building': 0.0,
  'playground': 0.34440878709722716,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 0.26461971102469606,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.19984766044970276,
  'park': 0.5159474463838537,
  'car_wash': 0.0,
  'fountain': 0.0,
  'dentist': 0.0,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.0,
  'doctors': 0.0,
  'courthouse': 0.0,
  'hairdresser': 0.5728336802390808,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 0.0,
  'town_hall': 0.0,
  'greengrocer': 0.0,
  'pub': 0.0,
  'pitch': 0.7847797691835245,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.0,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.0},
 'E01014592': {'cafe': 0.428729672797263,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.5686973997706826,
  'restaurant': 0.0,
  'hospital': 0.0,
  'travel_agent': 0.0,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.0,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 0.0,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 0.0,
  'pharmacy': 0.0,
  'car_dealership': 0.0,
  'furniture_shop': 0.0,
  'water_works': 0.0,
  'beverages': 0.0,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.0,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 0.0,
  'nightclub': 0.0,
  'beauty_shop': 0.5811066577525026,
  'bar': 0.0,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.6640808928172665,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 0.0,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 0.0,
  'doityourself': 0.0,
  'hostel': 0.0,
  'bakery': 0.0,
  'butcher': 0.0,
  'tourist_info': 0.0,
  'supermarket': 0.5168657614978143,
  'public_building': 0.0,
  'playground': 0.0,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 0.5292394220493921,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.0,
  'park': 0.6879299285118049,
  'car_wash': 0.0,
  'fountain': 0.0,
  'dentist': 0.0,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.0,
  'doctors': 0.0,
  'courthouse': 0.0,
  'hairdresser': 0.2864168401195404,
  'police': 1.574857708475501,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 0.0,
  'town_hall': 0.0,
  'greengrocer': 0.0,
  'pub': 0.2961041075226721,
  'pitch': 0.0,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.0,
  'guesthouse': 1.215835765833833,
  'stadium': 0.0,
  'kindergarten': 0.679593058995514},
 'E01014706': {'cafe': 0.428729672797263,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.0,
  'restaurant': 0.0,
  'hospital': 0.0,
  'travel_agent': 0.0,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.0,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 0.7757632387643489,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 0.0,
  'pharmacy': 1.4079048097099174,
  'car_dealership': 0.0,
  'furniture_shop': 0.0,
  'water_works': 0.0,
  'beverages': 0.0,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.9885919843307706,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 0.0,
  'nightclub': 0.0,
  'beauty_shop': 0.0,
  'bar': 0.0,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.0,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 0.0,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 0.0,
  'doityourself': 0.0,
  'hostel': 0.0,
  'bakery': 0.0,
  'butcher': 0.0,
  'tourist_info': 0.0,
  'supermarket': 0.0,
  'public_building': 0.0,
  'playground': 0.0,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 1.3230985551234804,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.3996953208994055,
  'park': 0.0,
  'car_wash': 0.0,
  'fountain': 0.0,
  'dentist': 0.0,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.9885919843307706,
  'doctors': 0.0,
  'courthouse': 0.0,
  'hairdresser': 0.5728336802390808,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 1.058227912472165,
  'bicycle_shop': 0.0,
  'town_hall': 0.0,
  'greengrocer': 0.0,
  'pub': 0.0,
  'pitch': 0.0,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.0,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.679593058995514},
 'E01014642': {'cafe': 0.0,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.0,
  'restaurant': 0.0,
  'hospital': 0.0,
  'travel_agent': 0.0,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.0,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 0.517175492509566,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 0.0,
  'pharmacy': 0.0,
  'car_dealership': 0.0,
  'furniture_shop': 0.0,
  'water_works': 0.0,
  'beverages': 0.0,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.0,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 0.0,
  'nightclub': 0.0,
  'beauty_shop': 0.0,
  'bar': 0.0,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.0,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 0.0,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.9575577505908017,
  'sports_centre': 0.0,
  'doityourself': 0.0,
  'hostel': 0.0,
  'bakery': 0.0,
  'butcher': 0.0,
  'tourist_info': 0.0,
  'supermarket': 0.0,
  'public_building': 0.0,
  'playground': 0.0,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 0.5292394220493921,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.19984766044970276,
  'park': 0.34396496425590245,
  'car_wash': 0.0,
  'fountain': 0.0,
  'dentist': 0.0,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.0,
  'doctors': 0.0,
  'courthouse': 0.0,
  'hairdresser': 0.5728336802390808,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 0.0,
  'town_hall': 0.0,
  'greengrocer': 0.0,
  'pub': 0.0,
  'pitch': 0.0,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.0,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.0},
 'E01033366': {'cafe': 0.428729672797263,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.5686973997706826,
  'restaurant': 0.0,
  'hospital': 0.0,
  'travel_agent': 0.0,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.0,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 0.258587746254783,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 0.0,
  'pharmacy': 0.0,
  'car_dealership': 0.0,
  'furniture_shop': 0.0,
  'water_works': 0.0,
  'beverages': 0.0,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.0,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 0.0,
  'nightclub': 0.0,
  'beauty_shop': 0.0,
  'bar': 0.0,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.0,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 0.0,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 0.0,
  'doityourself': 0.0,
  'hostel': 0.0,
  'bakery': 0.0,
  'butcher': 0.0,
  'tourist_info': 0.0,
  'supermarket': 0.0,
  'public_building': 0.0,
  'playground': 0.6888175741944543,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 0.0,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.0,
  'park': 0.5159474463838537,
  'car_wash': 0.0,
  'fountain': 0.0,
  'dentist': 0.0,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.9885919843307706,
  'doctors': 0.0,
  'courthouse': 0.0,
  'hairdresser': 0.0,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 0.0,
  'town_hall': 0.0,
  'greengrocer': 0.0,
  'pub': 0.0,
  'pitch': 0.2615932563945082,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.0,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.0},
 'E01014553': {'cafe': 3.858567055175367,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.5686973997706826,
  'restaurant': 3.4337577594282562,
  'hospital': 0.0,
  'travel_agent': 0.0,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 1.4199557484897578,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.8401721518729477,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 0.517175492509566,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 2.379013654222968,
  'gift_shop': 1.141202147536929,
  'pharmacy': 0.7039524048549587,
  'car_dealership': 0.0,
  'furniture_shop': 7.772879229502235,
  'water_works': 0.0,
  'beverages': 0.0,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 2.2378515056515536,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 1.9771839686615411,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 0.0,
  'nightclub': 0.0,
  'beauty_shop': 1.7433199732575078,
  'bar': 2.5552620732682882,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.6640808928172665,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 0.0,
  'toilet': 1.2738277128115199,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 0.7765030720035705,
  'doityourself': 0.7864872929101714,
  'hostel': 0.0,
  'bakery': 0.0,
  'butcher': 0.0,
  'tourist_info': 0.0,
  'supermarket': 1.0337315229956285,
  'public_building': 0.0,
  'playground': 0.0,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 0.5292394220493921,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.9575577505908017,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 1.2738277128115199,
  'nan': 0.0,
  'school': 0.19984766044970276,
  'park': 0.0,
  'car_wash': 0.0,
  'fountain': 0.0,
  'dentist': 0.0,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.9885919843307706,
  'doctors': 0.8288911414632587,
  'courthouse': 0.0,
  'hairdresser': 0.5728336802390808,
  'police': 1.574857708475501,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 1.058227912472165,
  'town_hall': 0.0,
  'greengrocer': 1.1189257528257768,
  'pub': 0.8883123225680163,
  'pitch': 0.2615932563945082,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.8401721518729477,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 1.359186117991028},
 'E01014632': {'cafe': 0.0,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.5686973997706826,
  'restaurant': 0.0,
  'hospital': 1.189506827111484,
  'travel_agent': 0.0,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.0,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 0.258587746254783,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 0.0,
  'pharmacy': 0.7039524048549587,
  'car_dealership': 0.0,
  'furniture_shop': 0.0,
  'water_works': 0.0,
  'beverages': 0.0,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.0,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 0.0,
  'nightclub': 0.0,
  'beauty_shop': 0.0,
  'bar': 0.0,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.0,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 0.0,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 0.7765030720035705,
  'doityourself': 0.7864872929101714,
  'hostel': 0.0,
  'bakery': 0.0,
  'butcher': 0.0,
  'tourist_info': 0.0,
  'supermarket': 0.5168657614978143,
  'public_building': 0.0,
  'playground': 0.34440878709722716,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 0.5292394220493921,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.9575577505908017,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.19984766044970276,
  'park': 0.0,
  'car_wash': 0.0,
  'fountain': 0.0,
  'dentist': 0.7297596684612442,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.0,
  'doctors': 0.8288911414632587,
  'courthouse': 0.0,
  'hairdresser': 0.8592505203586212,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 0.0,
  'town_hall': 0.0,
  'greengrocer': 0.0,
  'pub': 0.0,
  'pitch': 1.0463730255780328,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.0,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.0},
 'E01014644': {'cafe': 0.428729672797263,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.5686973997706826,
  'restaurant': 0.0,
  'hospital': 0.0,
  'travel_agent': 0.0,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.0,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 0.517175492509566,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 0.0,
  'pharmacy': 0.0,
  'car_dealership': 0.0,
  'furniture_shop': 0.0,
  'water_works': 0.0,
  'beverages': 0.0,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.0,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 1.058227912472165,
  'nightclub': 0.0,
  'beauty_shop': 1.1622133155050052,
  'bar': 0.0,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.0,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 0.0,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 0.0,
  'doityourself': 0.0,
  'hostel': 0.0,
  'bakery': 0.0,
  'butcher': 0.0,
  'tourist_info': 0.0,
  'supermarket': 0.0,
  'public_building': 0.0,
  'playground': 0.34440878709722716,
  'golf_course': 1.3407745024421331,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 0.26461971102469606,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.19984766044970276,
  'park': 1.0318948927677074,
  'car_wash': 0.0,
  'fountain': 0.0,
  'dentist': 0.7297596684612442,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.9885919843307706,
  'doctors': 0.0,
  'courthouse': 0.0,
  'hairdresser': 0.2864168401195404,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 0.0,
  'town_hall': 0.0,
  'greengrocer': 0.0,
  'pub': 0.0,
  'pitch': 0.5231865127890164,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.0,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.0},
 'E01014733': {'cafe': 0.0,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.0,
  'restaurant': 0.0,
  'hospital': 0.0,
  'travel_agent': 0.0,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.0,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 0.258587746254783,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 0.0,
  'pharmacy': 0.0,
  'car_dealership': 0.0,
  'furniture_shop': 0.0,
  'water_works': 0.0,
  'beverages': 0.0,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.0,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 0.0,
  'nightclub': 0.0,
  'beauty_shop': 0.0,
  'bar': 0.0,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.0,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 0.0,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 0.0,
  'doityourself': 0.7864872929101714,
  'hostel': 0.0,
  'bakery': 0.0,
  'butcher': 0.0,
  'tourist_info': 0.0,
  'supermarket': 0.0,
  'public_building': 0.0,
  'playground': 0.34440878709722716,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 0.26461971102469606,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.0,
  'park': 0.34396496425590245,
  'car_wash': 0.0,
  'fountain': 0.0,
  'dentist': 0.0,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.0,
  'doctors': 0.0,
  'courthouse': 0.0,
  'hairdresser': 0.0,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 0.0,
  'town_hall': 0.0,
  'greengrocer': 0.0,
  'pub': 0.5922082150453442,
  'pitch': 0.0,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.0,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.0},
 'E01014588': {'cafe': 0.0,
  'university': 1.465713239050433,
  'market_place': 0.0,
  'community_centre': 0.0,
  'restaurant': 0.4905368227754652,
  'hospital': 1.189506827111484,
  'travel_agent': 1.141202147536929,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.0,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 0.0,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 0.0,
  'pharmacy': 0.0,
  'car_dealership': 0.6491037368476137,
  'furniture_shop': 0.0,
  'water_works': 0.0,
  'beverages': 0.0,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 1.141202147536929,
  'archaeological': 0.0,
  'optician': 0.9885919843307706,
  'mobile_phone_shop': 1.141202147536929,
  'swimming_pool': 0.0,
  'nightclub': 0.0,
  'beauty_shop': 1.1622133155050052,
  'bar': 0.0,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.0,
  'department_store': 0.0,
  'jeweller': 1.2738277128115199,
  'nursing_home': 0.0,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 0.0,
  'doityourself': 0.0,
  'hostel': 0.0,
  'bakery': 0.0,
  'butcher': 0.0,
  'tourist_info': 0.0,
  'supermarket': 2.067463045991257,
  'public_building': 0.0,
  'playground': 0.34440878709722716,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 1.0584788440987842,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.3996953208994055,
  'park': 0.5159474463838537,
  'car_wash': 0.0,
  'fountain': 0.0,
  'dentist': 0.0,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 1.3407745024421331,
  'ruins': 0.0,
  'library': 0.9885919843307706,
  'doctors': 0.0,
  'courthouse': 0.0,
  'hairdresser': 0.5728336802390808,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 0.0,
  'town_hall': 0.0,
  'greengrocer': 0.0,
  'pub': 0.5922082150453442,
  'pitch': 0.2615932563945082,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.8401721518729477,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.0},
 'E01014487': {'cafe': 0.428729672797263,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.0,
  'restaurant': 0.4905368227754652,
  'hospital': 0.0,
  'travel_agent': 0.0,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.0,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 0.0,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 1.189506827111484,
  'gift_shop': 1.141202147536929,
  'pharmacy': 0.0,
  'car_dealership': 0.0,
  'furniture_shop': 0.8636532477224705,
  'water_works': 0.0,
  'beverages': 0.0,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 1.1189257528257768,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.0,
  'mobile_phone_shop': 1.141202147536929,
  'swimming_pool': 0.0,
  'nightclub': 0.0,
  'beauty_shop': 0.0,
  'bar': 0.0,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.6640808928172665,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 0.0,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 0.0,
  'doityourself': 0.0,
  'hostel': 0.0,
  'bakery': 0.0,
  'butcher': 0.0,
  'tourist_info': 0.0,
  'supermarket': 0.0,
  'public_building': 0.0,
  'playground': 0.34440878709722716,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 0.26461971102469606,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.19984766044970276,
  'park': 0.34396496425590245,
  'car_wash': 0.0,
  'fountain': 0.0,
  'dentist': 0.0,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.0,
  'doctors': 0.0,
  'courthouse': 0.0,
  'hairdresser': 0.2864168401195404,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 0.0,
  'town_hall': 0.0,
  'greengrocer': 1.1189257528257768,
  'pub': 0.0,
  'pitch': 0.2615932563945082,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.8401721518729477,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.679593058995514},
 'E01014633': {'cafe': 0.0,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.0,
  'restaurant': 0.0,
  'hospital': 1.189506827111484,
  'travel_agent': 0.0,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.0,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 1.306012396182921,
  'artwork': 0.0,
  'convenience': 0.258587746254783,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 0.0,
  'pharmacy': 0.0,
  'car_dealership': 0.6491037368476137,
  'furniture_shop': 0.0,
  'water_works': 0.0,
  'beverages': 0.0,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.0,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 0.0,
  'nightclub': 0.0,
  'beauty_shop': 0.5811066577525026,
  'bar': 0.0,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.0,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 0.0,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 0.0,
  'doityourself': 0.0,
  'hostel': 0.0,
  'bakery': 0.0,
  'butcher': 0.0,
  'tourist_info': 0.0,
  'supermarket': 0.0,
  'public_building': 0.0,
  'playground': 0.34440878709722716,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 0.0,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.19984766044970276,
  'park': 0.0,
  'car_wash': 0.0,
  'fountain': 0.0,
  'dentist': 0.0,
  'theatre': 0.0,
  'fire_station': 1.8178957571617955,
  'post_office': 0.0,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.0,
  'doctors': 0.0,
  'courthouse': 0.0,
  'hairdresser': 0.0,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 0.0,
  'town_hall': 0.0,
  'greengrocer': 0.0,
  'pub': 0.2961041075226721,
  'pitch': 0.2615932563945082,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.0,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.0},
 'E01033362': {'cafe': 1.286189018391789,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.0,
  'restaurant': 0.9810736455509304,
  'hospital': 0.0,
  'travel_agent': 0.0,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.8401721518729477,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 0.258587746254783,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 0.0,
  'pharmacy': 0.0,
  'car_dealership': 1.2982074736952274,
  'furniture_shop': 1.727306495444941,
  'water_works': 0.0,
  'beverages': 0.8517540244227628,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.0,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 0.0,
  'nightclub': 0.0,
  'beauty_shop': 1.1622133155050052,
  'bar': 0.8517540244227628,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.6640808928172665,
  'department_store': 0.0,
  'jeweller': 1.2738277128115199,
  'nursing_home': 0.0,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.9575577505908017,
  'sports_centre': 0.0,
  'doityourself': 2.359461878730514,
  'hostel': 0.0,
  'bakery': 0.0,
  'butcher': 0.0,
  'tourist_info': 0.0,
  'supermarket': 0.5168657614978143,
  'public_building': 0.0,
  'playground': 0.0,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 1.3230985551234804,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 1.2738277128115199,
  'nan': 0.0,
  'school': 0.0,
  'park': 0.17198248212795123,
  'car_wash': 0.0,
  'fountain': 0.0,
  'dentist': 0.0,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.0,
  'doctors': 0.0,
  'courthouse': 0.0,
  'hairdresser': 1.1456673604781615,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 1.058227912472165,
  'town_hall': 0.0,
  'greengrocer': 0.0,
  'pub': 0.8883123225680163,
  'pitch': 0.0,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.8401721518729477,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.0},
 'E01014722': {'cafe': 0.0,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.0,
  'restaurant': 0.0,
  'hospital': 0.0,
  'travel_agent': 0.0,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.0,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 0.0,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 0.0,
  'pharmacy': 0.0,
  'car_dealership': 0.0,
  'furniture_shop': 0.0,
  'water_works': 0.0,
  'beverages': 0.0,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.0,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 0.0,
  'nightclub': 0.0,
  'beauty_shop': 0.0,
  'bar': 0.0,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.0,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 0.0,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 0.0,
  'doityourself': 0.0,
  'hostel': 0.0,
  'bakery': 0.0,
  'butcher': 0.0,
  'tourist_info': 0.0,
  'supermarket': 0.0,
  'public_building': 0.0,
  'playground': 0.0,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 0.0,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.0,
  'park': 0.17198248212795123,
  'car_wash': 0.0,
  'fountain': 0.0,
  'dentist': 0.0,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.0,
  'doctors': 0.0,
  'courthouse': 0.0,
  'hairdresser': 0.0,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 0.0,
  'town_hall': 0.0,
  'greengrocer': 0.0,
  'pub': 0.0,
  'pitch': 0.0,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.0,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.0},
 'E01014687': {'cafe': 0.0,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.0,
  'restaurant': 0.0,
  'hospital': 0.0,
  'travel_agent': 0.0,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.0,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 1.306012396182921,
  'artwork': 0.0,
  'convenience': 0.258587746254783,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 0.0,
  'pharmacy': 0.0,
  'car_dealership': 0.6491037368476137,
  'furniture_shop': 0.0,
  'water_works': 0.0,
  'beverages': 0.0,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.0,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 0.0,
  'nightclub': 0.0,
  'beauty_shop': 0.0,
  'bar': 0.0,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.0,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 0.0,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 0.0,
  'doityourself': 0.0,
  'hostel': 0.0,
  'bakery': 0.0,
  'butcher': 0.0,
  'tourist_info': 0.0,
  'supermarket': 0.5168657614978143,
  'public_building': 0.0,
  'playground': 0.0,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 0.26461971102469606,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.19984766044970276,
  'park': 0.0,
  'car_wash': 0.0,
  'fountain': 0.0,
  'dentist': 0.0,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.0,
  'doctors': 0.8288911414632587,
  'courthouse': 0.0,
  'hairdresser': 0.0,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 0.0,
  'town_hall': 0.0,
  'greengrocer': 0.0,
  'pub': 0.0,
  'pitch': 0.5231865127890164,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.0,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.0},
 'E01014577': {'cafe': 0.428729672797263,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.0,
  'restaurant': 0.0,
  'hospital': 0.0,
  'travel_agent': 0.0,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.0,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 0.517175492509566,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 0.0,
  'pharmacy': 0.0,
  'car_dealership': 0.0,
  'furniture_shop': 0.0,
  'water_works': 0.0,
  'beverages': 0.0,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.0,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 2.11645582494433,
  'nightclub': 0.0,
  'beauty_shop': 0.0,
  'bar': 0.0,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.0,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 1.2738277128115199,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 0.0,
  'doityourself': 0.0,
  'hostel': 0.0,
  'bakery': 0.0,
  'butcher': 0.0,
  'tourist_info': 0.0,
  'supermarket': 0.0,
  'public_building': 0.0,
  'playground': 0.34440878709722716,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 0.0,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.3996953208994055,
  'park': 0.6879299285118049,
  'car_wash': 0.0,
  'fountain': 0.0,
  'dentist': 0.0,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.0,
  'doctors': 0.0,
  'courthouse': 0.0,
  'hairdresser': 0.2864168401195404,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 0.0,
  'town_hall': 0.0,
  'greengrocer': 0.0,
  'pub': 0.2961041075226721,
  'pitch': 0.5231865127890164,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.0,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.0},
 'E01014725': {'cafe': 0.0,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.0,
  'restaurant': 0.0,
  'hospital': 0.0,
  'travel_agent': 0.0,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.0,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 0.0,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 0.0,
  'pharmacy': 0.0,
  'car_dealership': 0.0,
  'furniture_shop': 0.0,
  'water_works': 0.0,
  'beverages': 0.0,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.0,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 0.0,
  'nightclub': 0.0,
  'beauty_shop': 0.0,
  'bar': 0.0,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.0,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 0.0,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 0.0,
  'doityourself': 0.0,
  'hostel': 0.0,
  'bakery': 0.0,
  'butcher': 0.0,
  'tourist_info': 0.0,
  'supermarket': 0.0,
  'public_building': 0.0,
  'playground': 0.0,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 0.0,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.0,
  'park': 0.17198248212795123,
  'car_wash': 0.0,
  'fountain': 0.0,
  'dentist': 0.0,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.0,
  'doctors': 0.0,
  'courthouse': 0.0,
  'hairdresser': 0.0,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 0.0,
  'town_hall': 0.0,
  'greengrocer': 0.0,
  'pub': 0.2961041075226721,
  'pitch': 0.0,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.0,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.0},
 'E01014575': {'cafe': 0.0,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.0,
  'restaurant': 0.0,
  'hospital': 0.0,
  'travel_agent': 0.0,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.0,
  'food_court': 0.0,
  'graveyard': 0.9885919843307706,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 0.258587746254783,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 0.0,
  'pharmacy': 0.0,
  'car_dealership': 0.0,
  'furniture_shop': 0.0,
  'water_works': 0.0,
  'beverages': 0.8517540244227628,
  'water_tower': 0.0,
  'tower': 1.720985744153739,
  'sports_shop': 0.0,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.0,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 0.0,
  'nightclub': 0.0,
  'beauty_shop': 0.0,
  'bar': 0.0,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.0,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 0.0,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 0.0,
  'doityourself': 0.0,
  'hostel': 0.0,
  'bakery': 0.0,
  'butcher': 0.0,
  'tourist_info': 0.0,
  'supermarket': 0.0,
  'public_building': 0.0,
  'playground': 0.34440878709722716,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 0.0,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.19984766044970276,
  'park': 0.17198248212795123,
  'car_wash': 0.0,
  'fountain': 0.0,
  'dentist': 0.0,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.0,
  'doctors': 0.0,
  'courthouse': 0.0,
  'hairdresser': 0.2864168401195404,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 0.0,
  'town_hall': 0.0,
  'greengrocer': 0.0,
  'pub': 0.2961041075226721,
  'pitch': 1.8311527947615573,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.0,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.679593058995514},
 'E01014692': {'cafe': 0.0,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.0,
  'restaurant': 0.0,
  'hospital': 0.0,
  'travel_agent': 0.0,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.0,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 0.258587746254783,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 0.0,
  'pharmacy': 0.0,
  'car_dealership': 0.0,
  'furniture_shop': 0.0,
  'water_works': 0.0,
  'beverages': 0.8517540244227628,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.0,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 0.0,
  'nightclub': 0.0,
  'beauty_shop': 0.5811066577525026,
  'bar': 0.0,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.0,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 0.0,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 0.0,
  'doityourself': 0.7864872929101714,
  'hostel': 0.0,
  'bakery': 0.0,
  'butcher': 0.0,
  'tourist_info': 0.0,
  'supermarket': 0.0,
  'public_building': 0.0,
  'playground': 0.34440878709722716,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 0.5292394220493921,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.19984766044970276,
  'park': 0.17198248212795123,
  'car_wash': 0.9727977171475386,
  'fountain': 0.0,
  'dentist': 0.0,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.0,
  'doctors': 0.0,
  'courthouse': 0.0,
  'hairdresser': 0.5728336802390808,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 0.0,
  'town_hall': 0.0,
  'greengrocer': 0.0,
  'pub': 0.0,
  'pitch': 0.7847797691835245,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.0,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.0},
 'E01033347': {'cafe': 0.857459345594526,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.0,
  'restaurant': 0.9810736455509304,
  'hospital': 0.0,
  'travel_agent': 0.0,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.0,
  'food_court': 0.0,
  'graveyard': 0.9885919843307706,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 0.517175492509566,
  'college': 1.215835765833833,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 0.0,
  'pharmacy': 0.0,
  'car_dealership': 0.0,
  'furniture_shop': 0.0,
  'water_works': 0.0,
  'beverages': 0.0,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.0,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 0.0,
  'nightclub': 1.465713239050433,
  'beauty_shop': 0.0,
  'bar': 2.5552620732682882,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.0,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 0.0,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 0.0,
  'doityourself': 0.0,
  'hostel': 1.9428344937700954,
  'bakery': 0.0,
  'butcher': 0.0,
  'tourist_info': 0.0,
  'supermarket': 0.0,
  'public_building': 0.0,
  'playground': 0.6888175741944543,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 3.0660472194531607,
  'observation_tower': 0.0,
  'fast_food': 0.0,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.3996953208994055,
  'park': 0.5159474463838537,
  'car_wash': 0.0,
  'fountain': 0.0,
  'dentist': 0.0,
  'theatre': 1.378563063331533,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.0,
  'doctors': 0.0,
  'courthouse': 0.0,
  'hairdresser': 0.5728336802390808,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 0.0,
  'town_hall': 0.0,
  'greengrocer': 0.0,
  'pub': 0.2961041075226721,
  'pitch': 0.0,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.0,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.0},
 'E01014645': {'cafe': 0.0,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 1.1373947995413651,
  'restaurant': 0.0,
  'hospital': 0.0,
  'travel_agent': 0.0,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.8401721518729477,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 0.0,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 0.0,
  'pharmacy': 0.0,
  'car_dealership': 0.0,
  'furniture_shop': 0.0,
  'water_works': 0.0,
  'beverages': 0.8517540244227628,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.0,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 0.0,
  'nightclub': 0.0,
  'beauty_shop': 0.0,
  'bar': 0.0,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.6640808928172665,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 2.5476554256230397,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 0.0,
  'doityourself': 0.0,
  'hostel': 0.0,
  'bakery': 0.0,
  'butcher': 0.0,
  'tourist_info': 0.0,
  'supermarket': 0.0,
  'public_building': 0.0,
  'playground': 0.0,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 0.5292394220493921,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 1.189506827111484,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.0,
  'park': 0.17198248212795123,
  'car_wash': 0.0,
  'fountain': 0.0,
  'dentist': 0.0,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.0,
  'doctors': 0.0,
  'courthouse': 0.0,
  'hairdresser': 1.1456673604781615,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 0.0,
  'town_hall': 0.0,
  'greengrocer': 0.0,
  'pub': 0.0,
  'pitch': 0.7847797691835245,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.0,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.0},
 'E01014498': {'cafe': 0.0,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.0,
  'restaurant': 0.0,
  'hospital': 0.0,
  'travel_agent': 0.0,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.0,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 2.1189257528257768,
  'car_rental': 2.612024792365842,
  'artwork': 0.0,
  'convenience': 0.258587746254783,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 1.189506827111484,
  'gift_shop': 0.0,
  'pharmacy': 0.0,
  'car_dealership': 1.947311210542841,
  'furniture_shop': 0.0,
  'water_works': 0.0,
  'beverages': 0.0,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 0.0,
  'archaeological': 3.885668987540191,
  'optician': 0.0,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 0.0,
  'nightclub': 0.0,
  'beauty_shop': 0.0,
  'bar': 0.0,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.0,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 0.0,
  'toilet': 0.0,
  'track': 1.306012396182921,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 0.0,
  'doityourself': 0.0,
  'hostel': 0.0,
  'bakery': 0.7478578905540404,
  'butcher': 0.0,
  'tourist_info': 0.0,
  'supermarket': 0.0,
  'public_building': 0.0,
  'playground': 0.34440878709722716,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 1.9428344937700954,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 0.5292394220493921,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.19984766044970276,
  'park': 0.5159474463838537,
  'car_wash': 0.0,
  'fountain': 0.0,
  'dentist': 0.0,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 1.3407745024421331,
  'ruins': 0.0,
  'library': 0.0,
  'doctors': 0.0,
  'courthouse': 0.0,
  'hairdresser': 0.0,
  'police': 1.574857708475501,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 0.0,
  'town_hall': 0.0,
  'greengrocer': 0.0,
  'pub': 0.0,
  'pitch': 1.569559538367049,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.0,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.0},
 'E01014617': {'cafe': 0.0,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.0,
  'restaurant': 0.0,
  'hospital': 0.0,
  'travel_agent': 0.0,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.0,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 0.0,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 0.0,
  'pharmacy': 0.0,
  'car_dealership': 1.2982074736952274,
  'furniture_shop': 0.0,
  'water_works': 0.0,
  'beverages': 0.0,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.0,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 1.058227912472165,
  'nightclub': 0.0,
  'beauty_shop': 0.0,
  'bar': 0.0,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 1.328161785634533,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 0.0,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 0.0,
  'doityourself': 0.7864872929101714,
  'hostel': 0.0,
  'bakery': 0.0,
  'butcher': 0.0,
  'tourist_info': 0.0,
  'supermarket': 0.0,
  'public_building': 0.0,
  'playground': 0.0,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 0.0,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.0,
  'park': 0.0,
  'car_wash': 0.0,
  'fountain': 0.0,
  'dentist': 0.0,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.0,
  'doctors': 0.0,
  'courthouse': 0.0,
  'hairdresser': 0.2864168401195404,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 0.0,
  'town_hall': 0.0,
  'greengrocer': 0.0,
  'pub': 0.0,
  'pitch': 0.7847797691835245,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.0,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.0},
 'E01014539': {'cafe': 0.428729672797263,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.0,
  'restaurant': 0.4905368227754652,
  'hospital': 0.0,
  'travel_agent': 0.0,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.0,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 0.517175492509566,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 0.0,
  'pharmacy': 0.0,
  'car_dealership': 0.0,
  'furniture_shop': 0.0,
  'water_works': 0.0,
  'beverages': 0.0,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.0,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 0.0,
  'nightclub': 0.0,
  'beauty_shop': 0.0,
  'bar': 0.0,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.0,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 0.0,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 0.7765030720035705,
  'doityourself': 0.0,
  'hostel': 0.0,
  'bakery': 0.7478578905540404,
  'butcher': 0.0,
  'tourist_info': 0.0,
  'supermarket': 0.5168657614978143,
  'public_building': 0.0,
  'playground': 0.34440878709722716,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 0.5292394220493921,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.0,
  'park': 0.17198248212795123,
  'car_wash': 0.0,
  'fountain': 0.0,
  'dentist': 0.7297596684612442,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.0,
  'doctors': 0.0,
  'courthouse': 0.0,
  'hairdresser': 0.0,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 0.0,
  'town_hall': 0.0,
  'greengrocer': 0.0,
  'pub': 1.1844164300906883,
  'pitch': 0.0,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.0,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.0},
 'E01014670': {'cafe': 0.0,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.0,
  'restaurant': 0.4905368227754652,
  'hospital': 0.0,
  'travel_agent': 0.0,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.0,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 0.258587746254783,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 0.0,
  'pharmacy': 0.0,
  'car_dealership': 0.0,
  'furniture_shop': 0.0,
  'water_works': 0.0,
  'beverages': 0.0,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.0,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 0.0,
  'nightclub': 0.0,
  'beauty_shop': 1.1622133155050052,
  'bar': 0.0,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.0,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 0.0,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 0.0,
  'doityourself': 0.0,
  'hostel': 0.0,
  'bakery': 0.0,
  'butcher': 0.0,
  'tourist_info': 0.0,
  'supermarket': 0.0,
  'public_building': 0.0,
  'playground': 0.0,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 0.26461971102469606,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.0,
  'park': 0.0,
  'car_wash': 0.0,
  'fountain': 0.0,
  'dentist': 0.7297596684612442,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.0,
  'doctors': 0.0,
  'courthouse': 0.0,
  'hairdresser': 0.2864168401195404,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 1.058227912472165,
  'bicycle_shop': 0.0,
  'town_hall': 0.0,
  'greengrocer': 0.0,
  'pub': 0.0,
  'pitch': 0.0,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.0,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.0},
 'E01014640': {'cafe': 0.0,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 1.1373947995413651,
  'restaurant': 0.0,
  'hospital': 0.0,
  'travel_agent': 0.0,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.0,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 0.0,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 0.0,
  'pharmacy': 0.0,
  'car_dealership': 0.0,
  'furniture_shop': 0.0,
  'water_works': 0.0,
  'beverages': 0.0,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.0,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 0.0,
  'nightclub': 0.0,
  'beauty_shop': 0.0,
  'bar': 0.0,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.0,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 0.0,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 0.7765030720035705,
  'doityourself': 0.0,
  'hostel': 0.0,
  'bakery': 0.0,
  'butcher': 0.0,
  'tourist_info': 0.0,
  'supermarket': 0.0,
  'public_building': 0.0,
  'playground': 0.34440878709722716,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 0.0,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.3996953208994055,
  'park': 0.0,
  'car_wash': 0.0,
  'fountain': 0.0,
  'dentist': 0.0,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.0,
  'doctors': 0.0,
  'courthouse': 0.0,
  'hairdresser': 0.0,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 0.0,
  'town_hall': 0.0,
  'greengrocer': 0.0,
  'pub': 0.0,
  'pitch': 1.307966281972541,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.0,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.679593058995514},
 'E01014679': {'cafe': 0.0,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.0,
  'restaurant': 0.0,
  'hospital': 0.0,
  'travel_agent': 0.0,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.0,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 0.0,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 0.0,
  'pharmacy': 0.0,
  'car_dealership': 0.6491037368476137,
  'furniture_shop': 0.0,
  'water_works': 0.0,
  'beverages': 0.0,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.0,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 0.0,
  'nightclub': 0.0,
  'beauty_shop': 0.0,
  'bar': 0.0,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.0,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 0.0,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 0.0,
  'doityourself': 0.0,
  'hostel': 0.0,
  'bakery': 0.0,
  'butcher': 0.0,
  'tourist_info': 0.0,
  'supermarket': 0.0,
  'public_building': 0.0,
  'playground': 0.0,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 0.26461971102469606,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.0,
  'park': 0.0,
  'car_wash': 0.0,
  'fountain': 0.0,
  'dentist': 0.0,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.0,
  'doctors': 0.0,
  'courthouse': 0.0,
  'hairdresser': 0.2864168401195404,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 0.0,
  'town_hall': 0.0,
  'greengrocer': 0.0,
  'pub': 0.2961041075226721,
  'pitch': 0.0,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.0,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.0},
 'E01014653': {'cafe': 0.857459345594526,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.5686973997706826,
  'restaurant': 0.9810736455509304,
  'hospital': 0.0,
  'travel_agent': 1.141202147536929,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.0,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 1.5515264775286979,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 0.0,
  'pharmacy': 0.0,
  'car_dealership': 0.0,
  'furniture_shop': 0.8636532477224705,
  'water_works': 0.0,
  'beverages': 0.0,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.0,
  'mobile_phone_shop': 1.141202147536929,
  'swimming_pool': 0.0,
  'nightclub': 0.0,
  'beauty_shop': 0.5811066577525026,
  'bar': 0.0,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.0,
  'department_store': 0.0,
  'jeweller': 1.2738277128115199,
  'nursing_home': 0.0,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 0.0,
  'doityourself': 0.0,
  'hostel': 0.0,
  'bakery': 0.0,
  'butcher': 2.0099648010378797,
  'tourist_info': 0.0,
  'supermarket': 0.5168657614978143,
  'public_building': 0.0,
  'playground': 1.0332263612916814,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 0.5292394220493921,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.9575577505908017,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.3996953208994055,
  'park': 0.6879299285118049,
  'car_wash': 0.0,
  'fountain': 0.0,
  'dentist': 0.0,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 1.215835765833833,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.0,
  'doctors': 0.0,
  'courthouse': 0.0,
  'hairdresser': 0.0,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 0.0,
  'town_hall': 0.0,
  'greengrocer': 0.0,
  'pub': 0.5922082150453442,
  'pitch': 0.5231865127890164,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.0,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.0},
 'E01014676': {'cafe': 0.0,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.0,
  'restaurant': 0.0,
  'hospital': 0.0,
  'travel_agent': 0.0,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.0,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 0.0,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 0.0,
  'pharmacy': 0.0,
  'car_dealership': 0.0,
  'furniture_shop': 0.0,
  'water_works': 0.0,
  'beverages': 0.0,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.0,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 0.0,
  'nightclub': 0.0,
  'beauty_shop': 0.0,
  'bar': 0.0,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.0,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 0.0,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 0.0,
  'doityourself': 0.0,
  'hostel': 0.0,
  'bakery': 0.0,
  'butcher': 0.0,
  'tourist_info': 0.0,
  'supermarket': 0.0,
  'public_building': 0.0,
  'playground': 0.0,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 0.0,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 2.419955748489758,
  'school': 0.0,
  'park': 0.0,
  'car_wash': 0.0,
  'fountain': 0.0,
  'dentist': 0.0,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.0,
  'doctors': 0.0,
  'courthouse': 0.0,
  'hairdresser': 0.0,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 0.0,
  'town_hall': 0.0,
  'greengrocer': 0.0,
  'pub': 0.0,
  'pitch': 0.0,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.0,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.0},
 'E01014601': {'cafe': 0.0,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.5686973997706826,
  'restaurant': 0.0,
  'hospital': 1.189506827111484,
  'travel_agent': 0.0,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.0,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 0.0,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 0.0,
  'pharmacy': 0.0,
  'car_dealership': 0.0,
  'furniture_shop': 0.0,
  'water_works': 0.0,
  'beverages': 0.0,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.0,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 0.0,
  'nightclub': 0.0,
  'beauty_shop': 0.0,
  'bar': 0.0,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.0,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 0.0,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 0.0,
  'doityourself': 0.0,
  'hostel': 0.0,
  'bakery': 0.0,
  'butcher': 0.0,
  'tourist_info': 0.0,
  'supermarket': 0.0,
  'public_building': 0.0,
  'playground': 0.0,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 0.0,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.19984766044970276,
  'park': 0.6879299285118049,
  'car_wash': 0.0,
  'fountain': 0.0,
  'dentist': 0.0,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.0,
  'doctors': 0.8288911414632587,
  'courthouse': 0.0,
  'hairdresser': 0.0,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 0.0,
  'town_hall': 0.0,
  'greengrocer': 0.0,
  'pub': 0.0,
  'pitch': 0.0,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.0,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.0},
 'E01014651': {'cafe': 0.0,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.5686973997706826,
  'restaurant': 0.0,
  'hospital': 0.0,
  'travel_agent': 0.0,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.0,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 0.0,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 0.0,
  'pharmacy': 0.0,
  'car_dealership': 0.0,
  'furniture_shop': 0.0,
  'water_works': 0.0,
  'beverages': 0.0,
  'water_tower': 2.1189257528257768,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.0,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 1.058227912472165,
  'nightclub': 0.0,
  'beauty_shop': 0.0,
  'bar': 0.0,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.0,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 0.0,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 0.0,
  'doityourself': 0.0,
  'hostel': 0.0,
  'bakery': 0.0,
  'butcher': 0.0,
  'tourist_info': 0.0,
  'supermarket': 0.0,
  'public_building': 0.0,
  'playground': 0.0,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 0.0,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.0,
  'park': 0.17198248212795123,
  'car_wash': 0.0,
  'fountain': 0.0,
  'dentist': 0.0,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.0,
  'doctors': 0.8288911414632587,
  'courthouse': 0.0,
  'hairdresser': 0.0,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 0.0,
  'town_hall': 0.0,
  'greengrocer': 0.0,
  'pub': 0.2961041075226721,
  'pitch': 0.0,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.0,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.679593058995514},
 'E01032518': {'cafe': 0.0,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.0,
  'restaurant': 0.0,
  'hospital': 0.0,
  'travel_agent': 0.0,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.0,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 0.258587746254783,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 0.0,
  'pharmacy': 0.0,
  'car_dealership': 0.0,
  'furniture_shop': 0.0,
  'water_works': 0.0,
  'beverages': 0.0,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.0,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 0.0,
  'nightclub': 0.0,
  'beauty_shop': 0.0,
  'bar': 0.0,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.0,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 0.0,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 0.0,
  'doityourself': 0.0,
  'hostel': 0.0,
  'bakery': 0.0,
  'butcher': 0.0,
  'tourist_info': 0.0,
  'supermarket': 0.0,
  'public_building': 0.0,
  'playground': 0.0,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 0.0,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.19984766044970276,
  'park': 0.0,
  'car_wash': 0.0,
  'fountain': 0.0,
  'dentist': 0.0,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.9885919843307706,
  'doctors': 0.0,
  'courthouse': 0.0,
  'hairdresser': 0.0,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 0.0,
  'town_hall': 0.0,
  'greengrocer': 0.0,
  'pub': 0.0,
  'pitch': 0.0,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.0,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.0},
 'E01014521': {'cafe': 0.0,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.0,
  'restaurant': 0.0,
  'hospital': 0.0,
  'travel_agent': 0.0,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.0,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 0.0,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 0.0,
  'pharmacy': 0.0,
  'car_dealership': 0.0,
  'furniture_shop': 0.0,
  'water_works': 0.0,
  'beverages': 0.0,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.0,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 0.0,
  'nightclub': 0.0,
  'beauty_shop': 0.0,
  'bar': 0.0,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.0,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 0.0,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 0.0,
  'doityourself': 0.0,
  'hostel': 0.0,
  'bakery': 0.0,
  'butcher': 0.0,
  'tourist_info': 0.0,
  'supermarket': 0.0,
  'public_building': 0.0,
  'playground': 0.0,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 0.0,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.3996953208994055,
  'park': 0.17198248212795123,
  'car_wash': 0.0,
  'fountain': 0.0,
  'dentist': 0.0,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.9885919843307706,
  'doctors': 0.0,
  'courthouse': 0.0,
  'hairdresser': 0.0,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 0.0,
  'town_hall': 0.0,
  'greengrocer': 0.0,
  'pub': 0.0,
  'pitch': 1.0463730255780328,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.0,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.0},
 'E01014664': {'cafe': 0.0,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.0,
  'restaurant': 0.0,
  'hospital': 1.189506827111484,
  'travel_agent': 0.0,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.0,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 1.306012396182921,
  'artwork': 0.0,
  'convenience': 0.0,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 0.0,
  'pharmacy': 0.0,
  'car_dealership': 0.0,
  'furniture_shop': 0.0,
  'water_works': 0.0,
  'beverages': 0.0,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.0,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 0.0,
  'nightclub': 0.0,
  'beauty_shop': 0.0,
  'bar': 0.0,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.0,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 0.0,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 0.0,
  'doityourself': 0.0,
  'hostel': 0.0,
  'bakery': 0.0,
  'butcher': 0.0,
  'tourist_info': 0.0,
  'supermarket': 1.0337315229956285,
  'public_building': 0.0,
  'playground': 0.0,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 0.0,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.19984766044970276,
  'park': 0.8599124106397561,
  'car_wash': 0.0,
  'fountain': 0.0,
  'dentist': 0.0,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.0,
  'doctors': 0.0,
  'courthouse': 0.0,
  'hairdresser': 0.0,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 0.0,
  'town_hall': 0.0,
  'greengrocer': 0.0,
  'pub': 0.0,
  'pitch': 0.5231865127890164,
  'camp_site': 2.419955748489758,
  'chemist': 0.0,
  'attraction': 1.3407745024421331,
  'clothes': 0.0,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.0},
 'E01014489': {'cafe': 2.572378036783578,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.5686973997706826,
  'restaurant': 1.9621472911018607,
  'hospital': 0.0,
  'travel_agent': 0.0,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.0,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 1.5515264775286979,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 0.0,
  'pharmacy': 0.0,
  'car_dealership': 0.0,
  'furniture_shop': 0.0,
  'water_works': 0.0,
  'beverages': 0.0,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 1.141202147536929,
  'archaeological': 0.0,
  'optician': 0.0,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 0.0,
  'nightclub': 0.0,
  'beauty_shop': 0.0,
  'bar': 0.8517540244227628,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.6640808928172665,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 0.0,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 0.0,
  'doityourself': 0.0,
  'hostel': 0.0,
  'bakery': 0.7478578905540404,
  'butcher': 1.0049824005189398,
  'tourist_info': 0.0,
  'supermarket': 0.5168657614978143,
  'public_building': 0.0,
  'playground': 0.6888175741944543,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 1.3230985551234804,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.3996953208994055,
  'park': 0.34396496425590245,
  'car_wash': 0.0,
  'fountain': 0.0,
  'dentist': 0.0,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.0,
  'doctors': 0.8288911414632587,
  'courthouse': 0.0,
  'hairdresser': 0.5728336802390808,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 0.0,
  'town_hall': 0.0,
  'greengrocer': 0.0,
  'pub': 1.4805205376133603,
  'pitch': 0.7847797691835245,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.0,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.0},
 'E01014655': {'cafe': 0.428729672797263,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.5686973997706826,
  'restaurant': 1.4716104683263955,
  'hospital': 0.0,
  'travel_agent': 2.282404295073858,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.0,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 2.58587746254783,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 0.0,
  'pharmacy': 0.7039524048549587,
  'car_dealership': 0.0,
  'furniture_shop': 0.0,
  'water_works': 0.0,
  'beverages': 0.0,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.0,
  'mobile_phone_shop': 1.141202147536929,
  'swimming_pool': 0.0,
  'nightclub': 0.0,
  'beauty_shop': 0.5811066577525026,
  'bar': 0.0,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 1.328161785634533,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 0.0,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.9575577505908017,
  'sports_centre': 0.0,
  'doityourself': 0.0,
  'hostel': 0.0,
  'bakery': 0.0,
  'butcher': 3.0149472015568195,
  'tourist_info': 0.0,
  'supermarket': 0.0,
  'public_building': 0.0,
  'playground': 0.34440878709722716,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 2.3815773992222646,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.9575577505908017,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.0,
  'park': 0.5159474463838537,
  'car_wash': 0.9727977171475386,
  'fountain': 0.0,
  'dentist': 0.7297596684612442,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.0,
  'doctors': 0.0,
  'courthouse': 0.0,
  'hairdresser': 2.291334720956323,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 1.058227912472165,
  'town_hall': 0.0,
  'greengrocer': 1.1189257528257768,
  'pub': 0.5922082150453442,
  'pitch': 0.2615932563945082,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.8401721518729477,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.0},
 'E01014589': {'cafe': 0.0,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.5686973997706826,
  'restaurant': 0.0,
  'hospital': 0.0,
  'travel_agent': 0.0,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.0,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 0.258587746254783,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 0.0,
  'pharmacy': 0.0,
  'car_dealership': 0.0,
  'furniture_shop': 0.0,
  'water_works': 0.0,
  'beverages': 0.0,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.0,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 0.0,
  'nightclub': 0.0,
  'beauty_shop': 0.0,
  'bar': 0.0,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.0,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 0.0,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 0.0,
  'doityourself': 0.0,
  'hostel': 0.0,
  'bakery': 0.0,
  'butcher': 0.0,
  'tourist_info': 0.0,
  'supermarket': 0.0,
  'public_building': 0.0,
  'playground': 0.0,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 0.5292394220493921,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.0,
  'park': 0.34396496425590245,
  'car_wash': 0.0,
  'fountain': 0.0,
  'dentist': 0.0,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.0,
  'doctors': 0.0,
  'courthouse': 0.0,
  'hairdresser': 0.0,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 0.0,
  'town_hall': 0.0,
  'greengrocer': 0.0,
  'pub': 0.2961041075226721,
  'pitch': 0.2615932563945082,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.0,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.0},
 'E01014683': {'cafe': 0.428729672797263,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.0,
  'restaurant': 0.0,
  'hospital': 0.0,
  'travel_agent': 0.0,
  'arts_centre': 0.0,
  'toy_shop': 1.378563063331533,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.8401721518729477,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 0.0,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 0.0,
  'pharmacy': 0.0,
  'car_dealership': 0.0,
  'furniture_shop': 0.0,
  'water_works': 0.0,
  'beverages': 0.0,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.0,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 0.0,
  'nightclub': 0.0,
  'beauty_shop': 0.0,
  'bar': 0.0,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.0,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 0.0,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 0.0,
  'doityourself': 0.0,
  'hostel': 0.0,
  'bakery': 0.7478578905540404,
  'butcher': 0.0,
  'tourist_info': 0.0,
  'supermarket': 0.0,
  'public_building': 0.0,
  'playground': 0.0,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 0.0,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.3996953208994055,
  'park': 0.17198248212795123,
  'car_wash': 0.0,
  'fountain': 0.0,
  'dentist': 0.0,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.0,
  'doctors': 0.0,
  'courthouse': 0.0,
  'hairdresser': 0.2864168401195404,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 0.0,
  'town_hall': 0.0,
  'greengrocer': 0.0,
  'pub': 0.2961041075226721,
  'pitch': 0.0,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.0,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.0},
 'E01014646': {'cafe': 0.428729672797263,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.5686973997706826,
  'restaurant': 0.0,
  'hospital': 0.0,
  'travel_agent': 1.141202147536929,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 1.4199557484897578,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.8401721518729477,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 0.517175492509566,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 0.0,
  'pharmacy': 0.0,
  'car_dealership': 0.0,
  'furniture_shop': 0.0,
  'water_works': 0.0,
  'beverages': 0.8517540244227628,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.9885919843307706,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 0.0,
  'nightclub': 0.0,
  'beauty_shop': 1.7433199732575078,
  'bar': 0.8517540244227628,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.0,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 0.0,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.9575577505908017,
  'sports_centre': 0.0,
  'doityourself': 0.0,
  'hostel': 0.0,
  'bakery': 0.7478578905540404,
  'butcher': 0.0,
  'tourist_info': 0.0,
  'supermarket': 0.0,
  'public_building': 0.0,
  'playground': 0.0,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 0.5292394220493921,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.19984766044970276,
  'park': 0.17198248212795123,
  'car_wash': 0.0,
  'fountain': 0.0,
  'dentist': 0.0,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.0,
  'doctors': 1.6577822829265174,
  'courthouse': 0.0,
  'hairdresser': 0.5728336802390808,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 1.058227912472165,
  'town_hall': 0.0,
  'greengrocer': 0.0,
  'pub': 0.0,
  'pitch': 0.0,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.0,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.0},
 'E01033364': {'cafe': 0.0,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.5686973997706826,
  'restaurant': 0.9810736455509304,
  'hospital': 0.0,
  'travel_agent': 0.0,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.0,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 0.517175492509566,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 0.0,
  'pharmacy': 0.0,
  'car_dealership': 1.2982074736952274,
  'furniture_shop': 0.0,
  'water_works': 0.0,
  'beverages': 0.8517540244227628,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 1.1189257528257768,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.0,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 0.0,
  'nightclub': 0.0,
  'beauty_shop': 0.0,
  'bar': 1.7035080488455256,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.0,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 0.0,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 0.0,
  'doityourself': 0.0,
  'hostel': 0.0,
  'bakery': 0.7478578905540404,
  'butcher': 0.0,
  'tourist_info': 0.0,
  'supermarket': 0.0,
  'public_building': 0.0,
  'playground': 0.34440878709722716,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 1.0584788440987842,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.19984766044970276,
  'park': 0.8599124106397561,
  'car_wash': 0.0,
  'fountain': 0.0,
  'dentist': 0.0,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.0,
  'doctors': 0.8288911414632587,
  'courthouse': 0.0,
  'hairdresser': 0.2864168401195404,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 0.0,
  'town_hall': 0.0,
  'greengrocer': 0.0,
  'pub': 0.2961041075226721,
  'pitch': 0.0,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.0,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.0},
 'E01014528': {'cafe': 0.857459345594526,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.0,
  'restaurant': 0.0,
  'hospital': 0.0,
  'travel_agent': 0.0,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.0,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 0.0,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 0.0,
  'pharmacy': 0.7039524048549587,
  'car_dealership': 0.6491037368476137,
  'furniture_shop': 0.0,
  'water_works': 1.378563063331533,
  'beverages': 0.0,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.0,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 0.0,
  'nightclub': 0.0,
  'beauty_shop': 0.0,
  'bar': 0.0,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.0,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 0.0,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 0.0,
  'doityourself': 0.0,
  'hostel': 0.0,
  'bakery': 0.0,
  'butcher': 0.0,
  'tourist_info': 0.0,
  'supermarket': 0.5168657614978143,
  'public_building': 0.0,
  'playground': 0.34440878709722716,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 0.5292394220493921,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.0,
  'park': 0.5159474463838537,
  'car_wash': 1.9455954342950772,
  'fountain': 0.0,
  'dentist': 0.0,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.0,
  'doctors': 0.8288911414632587,
  'courthouse': 0.0,
  'hairdresser': 0.0,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 0.0,
  'town_hall': 0.0,
  'greengrocer': 0.0,
  'pub': 0.2961041075226721,
  'pitch': 1.0463730255780328,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.0,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.0},
 'E01014734': {'cafe': 0.428729672797263,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.5686973997706826,
  'restaurant': 0.0,
  'hospital': 0.0,
  'travel_agent': 0.0,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.0,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 0.0,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 1.189506827111484,
  'gift_shop': 0.0,
  'pharmacy': 0.0,
  'car_dealership': 0.0,
  'furniture_shop': 0.0,
  'water_works': 0.0,
  'beverages': 0.0,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.0,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 0.0,
  'nightclub': 0.0,
  'beauty_shop': 0.0,
  'bar': 0.0,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.0,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 0.0,
  'toilet': 1.2738277128115199,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 0.0,
  'doityourself': 0.0,
  'hostel': 0.0,
  'bakery': 0.0,
  'butcher': 0.0,
  'tourist_info': 0.0,
  'supermarket': 0.0,
  'public_building': 0.0,
  'playground': 0.6888175741944543,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 0.0,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.19984766044970276,
  'park': 0.17198248212795123,
  'car_wash': 0.0,
  'fountain': 0.0,
  'dentist': 0.0,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.0,
  'doctors': 0.0,
  'courthouse': 0.0,
  'hairdresser': 0.0,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 0.0,
  'town_hall': 0.0,
  'greengrocer': 0.0,
  'pub': 0.2961041075226721,
  'pitch': 1.0463730255780328,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.0,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.0},
 'E01014665': {'cafe': 0.428729672797263,
  'university': 0.0,
  'market_place': 1.8178957571617955,
  'community_centre': 1.1373947995413651,
  'restaurant': 0.0,
  'hospital': 0.0,
  'travel_agent': 0.0,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.0,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 0.258587746254783,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 0.0,
  'pharmacy': 0.7039524048549587,
  'car_dealership': 0.0,
  'furniture_shop': 1.727306495444941,
  'water_works': 0.0,
  'beverages': 0.0,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.0,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 0.0,
  'nightclub': 0.0,
  'beauty_shop': 0.0,
  'bar': 0.0,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.0,
  'department_store': 1.8178957571617955,
  'jeweller': 0.0,
  'nursing_home': 0.0,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 0.0,
  'doityourself': 0.0,
  'hostel': 0.0,
  'bakery': 0.0,
  'butcher': 0.0,
  'tourist_info': 0.0,
  'supermarket': 1.5505972844934428,
  'public_building': 0.0,
  'playground': 0.34440878709722716,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 0.0,
  'observation_tower': 0.0,
  'fast_food': 0.5292394220493921,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.9575577505908017,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.5995429813491082,
  'park': 0.34396496425590245,
  'car_wash': 0.9727977171475386,
  'fountain': 0.0,
  'dentist': 0.0,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 0.0,
  'ruins': 0.0,
  'library': 0.0,
  'doctors': 0.8288911414632587,
  'courthouse': 0.0,
  'hairdresser': 0.5728336802390808,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 1.058227912472165,
  'bicycle_shop': 1.058227912472165,
  'town_hall': 0.0,
  'greengrocer': 0.0,
  'pub': 0.0,
  'pitch': 0.0,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 1.3407745024421331,
  'clothes': 0.0,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.0},
 'E01014526': {'cafe': 1.286189018391789,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.0,
  'restaurant': 0.0,
  'hospital': 0.0,
  'travel_agent': 0.0,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.0,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 0.0,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 0.0,
  'pharmacy': 0.0,
  'car_dealership': 1.2982074736952274,
  'furniture_shop': 0.0,
  'water_works': 1.378563063331533,
  'beverages': 0.0,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.0,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 1.058227912472165,
  'nightclub': 0.0,
  'beauty_shop': 0.0,
  'bar': 0.0,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.0,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 0.0,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 1.553006144007141,
  'doityourself': 1.5729745858203428,
  'hostel': 0.0,
  'bakery': 0.0,
  'butcher': 0.0,
  'tourist_info': 0.0,
  'supermarket': 0.0,
  'public_building': 0.0,
  'playground': 0.34440878709722716,
  'golf_course': 0.0,
  'theme_park': 0.0,
  'recycling_glass': 0.0,
  'hotel': 1.0220157398177203,
  'observation_tower': 0.0,
  'fast_food': 0.26461971102469606,
  'outdoor_shop': 0.0,
  'comms_tower': 0.0,
  'cinema': 0.0,
  'video_shop': 0.0,
  'laundry': 0.0,
  'memorial': 0.0,
  'computer_shop': 0.0,
  'bookshop': 0.0,
  'nan': 0.0,
  'school': 0.3996953208994055,
  'park': 0.17198248212795123,
  'car_wash': 0.0,
  'fountain': 0.0,
  'dentist': 0.0,
  'theatre': 0.0,
  'fire_station': 0.0,
  'post_office': 0.0,
  'museum': 0.0,
  'ruins': 1.5168657614978143,
  'library': 0.0,
  'doctors': 0.0,
  'courthouse': 0.0,
  'hairdresser': 0.0,
  'police': 0.0,
  'recycling': 0.0,
  'recycling_metal': 0.0,
  'prison': 0.0,
  'veterinary': 0.0,
  'bicycle_shop': 0.0,
  'town_hall': 0.0,
  'greengrocer': 0.0,
  'pub': 0.0,
  'pitch': 5.493458384284672,
  'camp_site': 0.0,
  'chemist': 0.0,
  'attraction': 0.0,
  'clothes': 0.0,
  'guesthouse': 0.0,
  'stadium': 0.0,
  'kindergarten': 0.679593058995514},
 'E01014499': {'cafe': 0.0,
  'university': 0.0,
  'market_place': 0.0,
  'community_centre': 0.5686973997706826,
  'restaurant': 0.0,
  'hospital': 0.0,
  'travel_agent': 0.0,
  'arts_centre': 0.0,
  'toy_shop': 0.0,
  'mall': 0.0,
  'monument': 0.0,
  'stationery': 0.0,
  'newsagent': 0.0,
  'food_court': 0.0,
  'graveyard': 0.0,
  'wastewater_plant': 0.0,
  'car_rental': 0.0,
  'artwork': 0.0,
  'convenience': 0.517175492509566,
  'college': 0.0,
  'garden_centre': 0.0,
  'shelter': 0.0,
  'gift_shop': 0.0,
  'pharmacy': 0.0,
  'car_dealership': 0.6491037368476137,
  'furniture_shop': 0.0,
  'water_works': 0.0,
  'beverages': 0.0,
  'water_tower': 0.0,
  'tower': 0.0,
  'sports_shop': 0.0,
  'bank': 0.0,
  'archaeological': 0.0,
  'optician': 0.0,
  'mobile_phone_shop': 0.0,
  'swimming_pool': 0.0,
  'nightclub': 0.0,
  'beauty_shop': 0.0,
  'bar': 0.0,
  'picnic_site': 0.0,
  'caravan_site': 0.0,
  'shoe_shop': 0.0,
  'clinic': 0.0,
  'department_store': 0.0,
  'jeweller': 0.0,
  'nursing_home': 1.2738277128115199,
  'toilet': 0.0,
  'track': 0.0,
  'castle': 0.0,
  'florist': 0.0,
  'sports_centre': 0.0,
  'doityourself': 2.359461878730514,
  'hostel': 0.0,
  'bakery': 0.0,
  'butcher': 0.0,
  'tourist_info': 0.0,
  'supermarket': 0.0,
  'public_building': 0.0,
  'playground': 0.0,
  'golf_course': 0.0,
  'them