Skip to content

Commit f1518e4

Browse files
committed
edit column name to lowercase for print statements
1 parent 43c1598 commit f1518e4

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

samples/02_power_users_developers/openstreetmap_exploration.ipynb

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -752,10 +752,10 @@
752752
" pr_e = enrich(pr_df, gis=gis)\n",
753753
" display(pr_e.head())\n",
754754
" \n",
755-
" print(f'DC Population: {dc_e.TOTPOP.sum()}')\n",
756-
" print(f'DC Density: {int(round(dc_e.TOTPOP.sum() / (dc_df.spatial.area / 1000000)))} per Square Kilometer')\n",
757-
" print(f'Paris Population: {pr_e.TOTPOP.sum()}')\n",
758-
" print(f'Paris Density: {int(round(pr_e.TOTPOP.sum() / (pr_dis.area / 1000000)))} per Square Kilometer')\n",
755+
" print(f'DC Population: {dc_e.totpop.sum()}')\n",
756+
" print(f'DC Density: {int(round(dc_e.totpop.sum() / (dc_df.spatial.area / 1000000)))} per Square Kilometer')\n",
757+
" print(f'Paris Population: {pr_e.totpop.sum()}')\n",
758+
" print(f'Paris Density: {int(round(pr_e.totpop.sum() / (pr_dis.area / 1000000)))} per Square Kilometer')\n",
759759
" \n",
760760
"except RuntimeError:\n",
761761
" print('Your GIS Connection Does Not Support Geoenrichment')"
@@ -1297,7 +1297,7 @@
12971297
"name": "python",
12981298
"nbconvert_exporter": "python",
12991299
"pygments_lexer": "ipython3",
1300-
"version": "3.7.16"
1300+
"version": "3.9.16"
13011301
},
13021302
"toc": {
13031303
"base_numbering": 1,

0 commit comments

Comments
 (0)