We can make this file beautiful and searchable if this error is corrected: It looks like row 6 should actually have 20 columns, instead of 19 in line 5.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name vorname titel partei fraktion gewaehlt wo_gewaehlt bereits_im_agh jahre_im_agh geschlecht geburtsdatum geburtsort bundesland land plz_wohnort bezirk_wohnort beruf berufsgruppe twitter facebook | |
Albers Wolfgang Dr. Die Linke DIE LINKE Direkt Lichtenberg 2 seit 2006 10 M 02.08.50 Essen Nordrhein-Westfalen 14109 Steglitz-Zehlendorf Chirurg Ärzte 1541534840 | |
Altuǧ Turgut Dr. Grüne Grüne Direkt Friedrichshain-Kreuzberg 3 seit 2011 5 M 04.05.65 Tarsus Türkei 12047 Neukölln Agrarwissenschaftler Sonstige DrTurgutAltug 172390746157638 | |
Auricht Jeannette AfD AfD Landesliste seit 2016 0 W 01.01.70 Berlin Berlin 12623 Treptow-Köpenick kaufmännische Angestellte kaufmännische Berufe (Ausbildung) jeannette.auricht | |
Bachmann Hanno AfD AfD Landesliste seit 2016 0 M 01.01.67 München Bayern 10437 Pankow Volljurist, juristischer Ausbilder Juristen hanno.bachmann | |
Bangert Sabine Grüne Grüne Landesliste seit 2011 5 W 07.04.55 Reutlingen Baden-Württemberg 12359 Neukölln Jornalistin Journalisten/Publizisten SabineBange |
We can make this file beautiful and searchable if this error is corrected: It looks like row 6 should actually have 24 columns, instead of 10 in line 5.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
id partei partei_davor fraktion name vorname titel gewaehlt wo_gewaehlt bereits_im_agh bereits_im_senat geschlecht geburtsdatum geburtsort bundesland land plz_wohnort bezirk_wohnort beruf berufsgruppe web twitter mail facebook | |
1 Die Linke DIE LINKE Albers Wolfgang Dr. Direkt Lichtenberg 2 seit 2006 M 02.08.50 Essen Nordrhein-Westfalen 14109 Steglitz-Zehlendorf Chirurg Ärzte albers@linksfraktion-berlin.de | |
2 Grüne Grüne Altuǧ Turgut Dr. Direkt Friedrichshain-Kreuzberg 3 seit 2011 M 04.05.65 Tarsus Türkei 12047 Neukölln Agrarwissenschaftler Sonstige www.turgut-altug.de DrTurgutAltug turgut.altug@gruene-fratkion-berlin.de 172390746157638 | |
3 AfD AfD Auricht Jeannette Landesliste neu W 01.01.70 Berlin Berlin 12623 Treptow-Köpenick kaufmännische Angestellte kaufmännische Berufe (Ausbildung) jeannette.auricht | |
4 AfD Die Freiheit AfD Bachmann Hanno Landesliste neu M 01.01.67 München Bayern 10437 Pankow Volljurist, juristischer Ausbilder Juristen | |
5 Grüne Grüne Bangert Sabine Landesliste seit 2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// tables with germany shape and the cities we are using in our application | |
var germany = ee.FeatureCollection('ft:1KDrYXBDlAx1fhcfmWRx7u_qqN2O_gwBNInjnGmnZ') | |
var cities = ee.FeatureCollection('ft:1w4PgU3okfzwKFEIpH32oPMlOtei6hUWa9tkXv5Rt'); | |
// landsat properties we need to create our image collection over different years | |
// we use a feature collection here, because we can easily filter it | |
var landsats = ee.FeatureCollection([ | |
ee.Feature(null, { collection: ee.ImageCollection('LANDSAT/LT5_L1T_TOA'), nir: 'B4', red: 'B3', from: 1984, to: 1992 }), | |
ee.Feature(null, { collection: ee.ImageCollection('LANDSAT/LT4_L1T_TOA'), nir: 'B4', red: 'B3', from: 1992, to: 1994 }), | |
ee.Feature(null, { collection: ee.ImageCollection('LANDSAT/LT5_L1T_TOA'), nir: 'B4', red: 'B3', from: 1994, to: 1999 }), |