Skip to main content

computational geometry - Administrative Divisions bordering a geographic region (e.g. an ocean)


Update 3


I've worked out a solution that is bearable for a small number of subregions in the neighbour and added it as an answer. I'm going to make a post for optimisation help.





Update 2


For a second attempt I have tried a geometric computation approach using RegionIntersection and the GeoBoundingBox of the entities.


geoBorderingEntities2[region_, entities_List?VectorQ] :=
Module[{intersections, positions},
intersections =
With[{borderPoly = region["Polygon"] /. {GeoPosition :> Identity}},
ParallelMap[
RegionIntersection[
borderPoly,
Rectangle @@ (GeoBoundingBox[#] /. {GeoPosition :>

Identity})] &,
entities, 1]
];
positions =
Position[intersections, x_ /; ! (Head@x === EmptyRegion), {1},
Heads -> False];
Extract[entities, positions]]

This also takes some time to execute because of the complexity of the polygons that make up the geo-borders. I'm also not too keen on this approach as there are conditions where an entity's bounding box will intersect but it will not be on the boarder due to the shape of either entities.


bordering = geoBorderingEntities2[ny, adminDivs];

GeoGraphics[{
{EdgeForm[Black], Yellow, Sequence @@ (Polygon[#] & /@ adminDivs)},
{Red, ny["Polygon"]},
{EdgeForm[Black], Black,
Tooltip[Polygon[#], #["Name"]] & /@ bordering}},
GeoBackground -> None]

enter image description here


In any case, there are also some items that border that are not selected by this method. Still, it takes too long. I have another idea I'm considering.


Any other ideas out there?





Update 1


I have attempted this (very inefficiently) by trying to match the points of the polygon of the region to those of the subdivision regions with little success.


geoBorderingEntities[region_, entities_List?VectorQ] :=
Module[{pointMatches, positions},
pointMatches = ParallelMap[IntersectingQ[
Partition[
Flatten@(region["Polygon"] /. {GeoPosition :> Identity,
Polygon :> Identity, EntityValue :> Identity}), 2],
Partition[

Flatten@(#["Polygon"] /. {GeoPosition :> Identity,
Polygon :> Identity, EntityValue :> Identity}), 2]
] &, entities, 1];
positions = Position[pointMatches, True];
Extract[entities, positions]
]

The replacements are needed as the region functions to not play nice with geographic polygons yet (as at version 10.2). In any case this does not work well.


ny = AdministrativeDivisionData[{"NewYork", "UnitedStates"}];
pa = AdministrativeDivisionData[{"Pennsylvania", "UnitedStates"}];

adminDivs =
EntityValue[
Entity["AdministrativeDivision",
{EntityProperty["AdministrativeDivision", "ParentRegion"] -> pa}],
"Entities"];

From the counties for Pennsylvania only 2 result in a match with this method.


bordering = geoBorderingEntities[ny, adminDivs]
(* {Entity["AdministrativeDivision", {"PikeCounty", "Pennsylvania", "UnitedStates"}],
Entity["AdministrativeDivision", {"WayneCounty", "Pennsylvania", "UnitedStates"}]} *)


Clearly I should have more matches.


GeoGraphics[
{{EdgeForm[Black], Yellow, Sequence @@ (Polygon[#] & /@ adminDivs)},
{Red, ny["Polygon"]},
{EdgeForm[Black], Black, Polygon[#] & /@ bordering}},
GeoBackground -> None]

enter image description here


However, in hindsight, it was a stretch to think that points would be shared along bordering geo-entities. They should have lines that touch, though.



I am considering RegionUnion with the entity polygons but am still thinking how I would check that the union has formed a connected region. I might consider a Piecewise parametric equation of the polynomials and if there is a real solution to there intersection. Seems a bit of overkill, though.


Ideas?




Original Post


I would like to get the counties (e.g. second level administrative divisions) that border the Gulf of Mexico. OceanData has the "BorderingCountries" properties that gives the country list.


OceanData["GulfMexico"]["BorderingCountries"]

I'm not certain how to use OceanData and CountryData (or AdministrativeDivisionData) to get to the administrative divisions that border the ocean.


I'd appreciate a nudge in the correct direction. Ideally, I'm looking for (or to create) a method that will work in general for any ocean and counties (i.e. administration division 2) of any country. Also, any higher administrative division to lower neighbouring administrative divisions (e.g. all the Pennsylvania counties bordering New York state).


Ideas?




Answer



I have developed a solution that is bearable. It takes about one second to evaluate each neighbouring subregion in cases that I have tested that have about 60 subregions. This is still far too slow but is the best I have come up with to date.


geoBorderingEntities[region_, entities_List?VectorQ, 
geoPadding_?QuantityQ] :=
Module[{borderBox, borderPoly, boxIntersections, intersections,
positions, borderPoints},
borderBox =
Rectangle @@ (GeoBoundingBox[region,
geoPadding] /. {GeoPosition :> Identity});
borderPoly = region["Polygon"] /. {GeoPosition :> Identity};

boxIntersections =
ParallelMap[
RegionIntersection[
borderBox,
Rectangle @@ (GeoBoundingBox[#,
geoPadding] /. {GeoPosition :> Identity})] &,
entities, 1];
(* Faster to split them *)
intersections = ParallelMap[
Function[{index},

With[{boxToPoly =
Evaluate@
RegionIntersection[boxIntersections[[index]], borderPoly]},
If[Head[boxToPoly] === EmptyRegion,
boxToPoly,
RegionIntersection[
boxToPoly, (entities[[index]][
"Polygon"] /. {GeoPosition :> Identity})]
]
]

],
Range[Length@entities], {1}];
positions =
Position[intersections, x_ /; ! (Head@x === EmptyRegion), {1},
Heads -> False];
Extract[entities, positions]]

geoPadding is used to slightly inflate the GeoBoundingBox for neighbouring subregions border on vertical or horizontal line.


ny = AdministrativeDivisionData[{"NewYork", "UnitedStates"}];
pa = AdministrativeDivisionData[{"Pennsylvania", "UnitedStates"}];

adminDivsPa =
EntityValue[
Entity["AdministrativeDivision", {EntityProperty[
"AdministrativeDivision", "ParentRegion"] -> pa}], "Entities"];

borderingNyPa = geoBorderingEntities[ny, adminDivsPa, Quantity[1, "Kilometers"]];

GeoGraphics[{
{EdgeForm[Black], Yellow, Sequence @@ (Polygon[#] & /@ adminDivsPa)},
{Red, ny["Polygon"]},

{EdgeForm[Black], Black, Tooltip[Polygon[#], #["Name"]] & /@ borderingNyPa }},
GeoBackground -> None]

enter image description here


I think I will make a post asking for help to optimise it.




wv = AdministrativeDivisionData[{"WestVirginia", "UnitedStates"}];
oh = AdministrativeDivisionData[{"Ohio", "UnitedStates"}];
adminDivsOh =
EntityValue[

Entity["AdministrativeDivision", {EntityProperty[
"AdministrativeDivision", "ParentRegion"] -> oh}], "Entities"];

borderingWvOh =
geoBorderingEntities[wv, adminDivsOh, Quantity[1, "Kilometers"]];

GeoGraphics[{{EdgeForm[Black], Yellow,
Sequence @@ (Polygon[#] & /@ adminDivsOh)}, {Red,
wv["Polygon"]}, {EdgeForm[Black], Black,
Tooltip[Polygon[#], #["Name"]] & /@ borderingWvOh}},

GeoBackground -> None]

enter image description here


Comments

Popular posts from this blog

plotting - How to draw lines between specified dots on ListPlot?

I would like to create a plot where I have unconnected dots and some connected. So far, I have figured out how to draw the dots. My code is the following: ListPlot[{{1, 1}, {2, 2}, {3, 3}, {4, 4}, {1, 4}, {2, 5}, {3, 6}, {4, 7}, {1, 7}, {2, 8}, {3, 9}, {4, 10}, {1, 10}, {2, 11}, {3, 12}, {4,13}, {2.5, 7}}, Ticks -> {{1, 2, 3, 4}, None}, AxesStyle -> Thin, TicksStyle -> Directive[Black, Bold, 12], Mesh -> Full] I have thought using ListLinePlot command, but I don't know how to specify to the command to draw only selected lines between the dots. Do have any suggestions/hints on how to do that? Thank you. Answer One possibility would be to use Epilog with Line : ListPlot[ {{1, 1}, {2, 2}, {3, 3}, {4, 4}, {1, 4}, {2, 5}, {3, 6}, {4, 7}, {1, 7}, {2, 8}, {3, 9}, {4, 10}, {1, 10}, {2, 11}, {3, 12}, {4, 13}, {2.5, 7}}, Ticks -> {{1, 2, 3, 4}, None}, AxesStyle -> Thin, TicksStyle -> Directive[Black, Bold, 12], Mesh -> Full, Epilog -> { Line[ ...

dynamic - How can I make a clickable ArrayPlot that returns input?

I would like to create a dynamic ArrayPlot so that the rectangles, when clicked, provide the input. Can I use ArrayPlot for this? Or is there something else I should have to use? Answer ArrayPlot is much more than just a simple array like Grid : it represents a ranged 2D dataset, and its visualization can be finetuned by options like DataReversed and DataRange . These features make it quite complicated to reproduce the same layout and order with Grid . Here I offer AnnotatedArrayPlot which comes in handy when your dataset is more than just a flat 2D array. The dynamic interface allows highlighting individual cells and possibly interacting with them. AnnotatedArrayPlot works the same way as ArrayPlot and accepts the same options plus Enabled , HighlightCoordinates , HighlightStyle and HighlightElementFunction . data = {{Missing["HasSomeMoreData"], GrayLevel[ 1], {RGBColor[0, 1, 1], RGBColor[0, 0, 1], GrayLevel[1]}, RGBColor[0, 1, 0]}, {GrayLevel[0], GrayLevel...

Is there a way to do conditional matrix loop using 'continue'

I have the following: n = 3; m = 5; ww = RandomReal[{0, 0.1}, {n, n}]; uu = RandomReal[{0, 1}, {m, n}]; pp = RandomReal[{0, 1}, {n, n}]; ss = RandomInteger[{0, 5}, {m, n}]; Grid[{{"ww", "uu", "pp", "ss"}, {ww // TableForm, uu // TableForm, pp // TableForm, ss // TableForm}}, Spacings -> {5, 2}, Dividers -> All] where I would like to look at every element of matrix ss and produce a matrix tt , with zeroes at the locations in ss which have zeroes, and in all other positions do the following: tt = (-1/Subscript[ww, m]) Log[(1 - uu)/(Subscript[pp, m - 1])], where Subscript[ww, m] is the value at index of ww matrix and where Subscript[pp, m - 1] is the value at index-1 of pp matrix. So for example if the first value ever read from matrix ss happens to be 2, then value taken from matrix ww would be from the row 2, but from pp would be from row 1. Also how to tell difference between a 0 as a valid value from within the matrix elemen...