Skip to content

Commit c41df9a

Browse files
committed
remove conflict markings from file
1 parent 999d7e8 commit c41df9a

File tree

1 file changed

+0
-67
lines changed

1 file changed

+0
-67
lines changed

guide/05-working-with-the-spatially-enabled-dataframe/spatially-enabled-dataframe-advanced-topics.ipynb

Lines changed: 0 additions & 67 deletions
Original file line numberDiff line numberDiff line change
@@ -879,11 +879,7 @@
879879
"outputs": [],
880880
"source": [
881881
"midx.center = [39, -98]\n",
882-
<<<<<<< HEAD
883882
"midx.basemap.basemap = 'gray-vector'"
884-
=======
885-
"midx.basemap = \"gray-vector\""
886-
>>>>>>> 6a0310e271c7e1d07fa30792df4a672d93260288
887883
]
888884
},
889885
{
@@ -972,26 +968,13 @@
972968
" miny = child.center[1] - height_factor\n",
973969
" maxx = child.center[0] + width_factor\n",
974970
" maxy = child.center[1] + height_factor\n",
975-
<<<<<<< HEAD
976971
" child_geom = Geometry({\n",
977972
" 'rings':[[[minx,miny], [minx, maxy], [maxx, maxy], [maxx, miny], [minx, miny]]],\n",
978973
" 'spatialReference': sp_ref})\n",
979974
" #child_extent = Polygon(child_geom)\n",
980975
" \n",
981976
" sym = SimpleFillSymbolEsriSFS(**sym)\n",
982977
" midx.content.draw(shape = child_geom, symbol = sym)\n",
983-
=======
984-
" child_geom = Geometry(\n",
985-
" {\n",
986-
" \"rings\": [\n",
987-
" [[minx, miny], [minx, maxy], [maxx, maxy], [maxx, miny], [minx, miny]]\n",
988-
" ],\n",
989-
" \"spatialReference\": sp_ref,\n",
990-
" }\n",
991-
" )\n",
992-
" # child_extent = Polygon(child_geom)\n",
993-
" midx.draw(shape=child_geom, symbol=sym)\n",
994-
>>>>>>> 6a0310e271c7e1d07fa30792df4a672d93260288
995978
" time.sleep(2)"
996979
]
997980
},
@@ -1527,7 +1510,6 @@
15271510
"metadata": {},
15281511
"outputs": [],
15291512
"source": [
1530-
<<<<<<< HEAD
15311513
"sym_poly = SimpleFillSymbolEsriSFS(**{\n",
15321514
" \"type\": \"esriSFS\",\n",
15331515
" \"style\": \"esriSFSSolid\",\n",
@@ -1541,22 +1523,6 @@
15411523
"\n",
15421524
"# draw the dataframe extent with AOI\n",
15431525
"m1.content.draw(shape = df_geoextent_geom, symbol = sym_poly)"
1544-
=======
1545-
"sym_poly = {\n",
1546-
" \"type\": \"esriSFS\",\n",
1547-
" \"style\": \"esriSFSSolid\",\n",
1548-
" \"color\": [0, 0, 0, 0], # hollow, no fill\n",
1549-
" \"outline\": {\n",
1550-
" \"type\": \"esriSLS\",\n",
1551-
" \"style\": \"esriSLSSolid\",\n",
1552-
" \"color\": [255, 0, 0, 255], # red border\n",
1553-
" \"width\": 3,\n",
1554-
" },\n",
1555-
"}\n",
1556-
"\n",
1557-
"# draw the dataframe extent with AOI\n",
1558-
"m1.draw(shape=df_geoextent_geom, symbol=sym_poly)"
1559-
>>>>>>> 6a0310e271c7e1d07fa30792df4a672d93260288
15601526
]
15611527
},
15621528
{
@@ -1594,7 +1560,6 @@
15941560
" {\"rings\": area_of_interest_ring, \"spatialReference\": sp_ref}\n",
15951561
")\n",
15961562
"\n",
1597-
<<<<<<< HEAD
15981563
"sym_poly_aoi = SimpleFillSymbolEsriSFS(**{\n",
15991564
" \"type\": \"esriSFS\",\n",
16001565
" \"style\": \"esriSFSSolid\",\n",
@@ -1607,21 +1572,6 @@
16071572
"})\n",
16081573
"\n",
16091574
"m1.content.draw(shape = area_of_interest_geom, symbol = sym_poly_aoi)"
1610-
=======
1611-
"sym_poly_aoi = {\n",
1612-
" \"type\": \"esriSFS\",\n",
1613-
" \"style\": \"esriSFSSolid\",\n",
1614-
" \"color\": [0, 0, 0, 0], # hollow, no fill\n",
1615-
" \"outline\": {\n",
1616-
" \"type\": \"esriSLS\",\n",
1617-
" \"style\": \"esriSLSSolid\",\n",
1618-
" \"color\": [0, 255, 0, 255], # green border\n",
1619-
" \"width\": 3,\n",
1620-
" },\n",
1621-
"}\n",
1622-
"\n",
1623-
"m1.draw(shape=area_of_interest_geom, symbol=sym_poly_aoi)"
1624-
>>>>>>> 6a0310e271c7e1d07fa30792df4a672d93260288
16251575
]
16261576
},
16271577
{
@@ -1929,11 +1879,7 @@
19291879
"metadata": {},
19301880
"outputs": [],
19311881
"source": [
1932-
<<<<<<< HEAD
19331882
"m2.content.draw(shape = area_of_interest_geom, symbol = sym_poly_aoi)"
1934-
=======
1935-
"m2.draw(shape=area_of_interest_geom, symbol=sym_poly_aoi)"
1936-
>>>>>>> 6a0310e271c7e1d07fa30792df4a672d93260288
19371883
]
19381884
},
19391885
{
@@ -1952,7 +1898,6 @@
19521898
" \"angle\": 0,\n",
19531899
" \"xoffset\": 0,\n",
19541900
" \"yoffset\": 0,\n",
1955-
<<<<<<< HEAD
19561901
" \"outline\": {\n",
19571902
" \"color\": [255,140,0,255],\n",
19581903
" \"width\": 1}\n",
@@ -1961,14 +1906,6 @@
19611906
"# draw the AOI that intersects\n",
19621907
"for pt_index in index_of_features:\n",
19631908
" m2.content.draw(shape = df.iloc[pt_index]['SHAPE'], symbol = pt_sym) "
1964-
=======
1965-
" \"outline\": {\"color\": [255, 140, 0, 255], \"width\": 1},\n",
1966-
"}\n",
1967-
"\n",
1968-
"# draw the AOI that intersects\n",
1969-
"for pt_index in index_of_features:\n",
1970-
" m2.draw(shape=df.iloc[pt_index][\"SHAPE\"], symbol=pt_sym)"
1971-
>>>>>>> 6a0310e271c7e1d07fa30792df4a672d93260288
19721909
]
19731910
},
19741911
{
@@ -4227,11 +4164,7 @@
42274164
"source": [
42284165
"# draw the spatial join results on Wyoming state\n",
42294166
"for idx, row in sdf2.iterrows():\n",
4230-
<<<<<<< HEAD
42314167
" m3.content.draw(row['SHAPE'], symbol=pt_sym)"
4232-
=======
4233-
" m3.draw(row[\"SHAPE\"], symbol=pt_sym)"
4234-
>>>>>>> 6a0310e271c7e1d07fa30792df4a672d93260288
42354168
]
42364169
},
42374170
{

0 commit comments

Comments
 (0)