Hi,
in the file Import_childcare_nursery.R under the heading # Download SOKA data there is a search for "gezinsopvang voor kinderen" and for "groepsovang voor kinderen". But the sociale kaart also has a category for "kleuteropvang". This should be added to this query.
The API swagger documentation isn't available so I don't know the specific name of the category "Kleuteropvang".
Download SOKA data -----------------------------------------------------------
df_tmp <- NA
url <- "https://www.desocialekaart.be/api/health-offers?rubrics=10.07.03.%20Gezinsopvang%20voor%20kinderen"
df_tmp <- getPagesAndContent(query_url = url)
gezinsopvang <- transformTable(df = df_tmp)
gezinsopvang$type<- "Gezinsopvang voor kinderen"
df_tmp <- NA
url <- "https://www.desocialekaart.be/api/health-offers?rubrics=10.07.02.%20Groepsopvang%20voor%20kinderen"
df_tmp <- getPagesAndContent(query_url = url)
groepsopvang <- transformTable(df = df_tmp)
groepsopvang$type<- "Groepsopvang voor kinderen"
Hi,
in the file Import_childcare_nursery.R under the heading # Download SOKA data there is a search for "gezinsopvang voor kinderen" and for "groepsovang voor kinderen". But the sociale kaart also has a category for "kleuteropvang". This should be added to this query.
The API swagger documentation isn't available so I don't know the specific name of the category "Kleuteropvang".
Download SOKA data -----------------------------------------------------------
df_tmp <- NA
url <- "https://www.desocialekaart.be/api/health-offers?rubrics=10.07.03.%20Gezinsopvang%20voor%20kinderen"
df_tmp <- getPagesAndContent(query_url = url)
gezinsopvang <- transformTable(df = df_tmp)
gezinsopvang$type<- "Gezinsopvang voor kinderen"
df_tmp <- NA
url <- "https://www.desocialekaart.be/api/health-offers?rubrics=10.07.02.%20Groepsopvang%20voor%20kinderen"
df_tmp <- getPagesAndContent(query_url = url)
groepsopvang <- transformTable(df = df_tmp)
groepsopvang$type<- "Groepsopvang voor kinderen"