Fetch Spanish demographic census data given a geographical location in each row.
fetch_demographics_es(lat: number, lon: number ) -> ( Dem_Extranjeros_pct: number, Dem_Casados_pct: number, Dem_Edad: number, Dem_Nivel_Estudios: number, Dem_Vivienda_m2: number, Dem_Personas_Hogar: number, Dem_Location_Idx: number )
Using geographical coordinates provided by latitude and longitude columns, enriches the input dataset with a subset of the 2011 Spanish census. See below for the seven features to be added by the step.
Inputs
A numeric column containing latitude coordinates of the places of interest.
A numeric column containing longitude coordinates of the places of interest.
Outputs
A numeric column containing the percentage of immigrants registered in the area.
A numeric column containing the percentage of married people in the area.
A numeric column containing the average age in the area.
A numeric column containing the average level of education.
A numeric column containing the average size of households in square meters.
A numeric column containing the average number of household members.
A numeric column containing an index in the range 1-9 summarizing the overall quality of the location; lower values being better.
Parameters
This step doesn’t expect any configuration.
Was this page helpful?