Generate list of neighboring polygons QGIS Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?Creating Spatial Index for Geopackage using QGIS?Trying to Install on MAC OS Lion and getting Python error messageClean way to install gdaltools plugin for QGIS on OSXWhen I save a project to a folder, I get this error messageSaga:processing resample extent in python editor QGISAttributeError: 'module' object has no attribute 'classFactory'QGIS2Leaf fails with AttributeError: 'QgsMarkerLineSymbolLayerV2' object has no attribute 'penStyle'QGIS 2.18 for mac: Processing NameError: global name 'QgsWKBTypes' is not definedImportError in Metasearch pluginInstalling Location Lab plugin in QGIS on Mac OSX?Voronoi polygons tool not working in QGIS
Compressing georeferenced images
Withdrew £2800, but only £2000 shows as withdrawn on online banking; what are my obligations?
Why is "Captain Marvel" translated as male in Portugal?
Check which numbers satisfy the condition [A*B*C = A! + B! + C!]
If Jon Snow became King of the Seven Kingdoms what would his regnal number be?
Does surprise arrest existing movement?
What are the pros and cons of Aerospike nosecones?
Why is there no army of Iron-Mans in the MCU?
How does a biquinary adder work?
Is there a concise way to say "all of the X, one of each"?
List numbering with letters
Why is black pepper both grey and black?
What is the longest distance a 13th-level monk can jump while attacking on the same turn?
Can inflation occur in a positive-sum game currency system such as the Stack Exchange reputation system?
If a contract sometimes uses the wrong name, is it still valid?
Marking the functions of a sentence: 'She may like it'
Bonus calculation: Am I making a mountain out of a molehill?
Models of set theory where not every set can be linearly ordered
List *all* the tuples!
Is there a service that would inform me whenever a new direct route is scheduled from a given airport?
Can a drone be seen on TCAS?
Precipitating silver(I) salts from the solution of barium(II) cyanate and iodide
Antler Helmet: Can it work?
How to bypass password on Windows XP account?
Generate list of neighboring polygons QGIS
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)
Announcing the arrival of Valued Associate #679: Cesar Manara
Unicorn Meta Zoo #1: Why another podcast?Creating Spatial Index for Geopackage using QGIS?Trying to Install on MAC OS Lion and getting Python error messageClean way to install gdaltools plugin for QGIS on OSXWhen I save a project to a folder, I get this error messageSaga:processing resample extent in python editor QGISAttributeError: 'module' object has no attribute 'classFactory'QGIS2Leaf fails with AttributeError: 'QgsMarkerLineSymbolLayerV2' object has no attribute 'penStyle'QGIS 2.18 for mac: Processing NameError: global name 'QgsWKBTypes' is not definedImportError in Metasearch pluginInstalling Location Lab plugin in QGIS on Mac OSX?Voronoi polygons tool not working in QGIS
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I am looking for a way to create a list of polygons that each polygon touches. I am a complete novice at QGIS and I have no idea where to even start. I am using a map of voting precincts in Utah that looks like this:

I want to generate a list that shows the precinct name (the attribute is called PrecinctID). Preferably, the output list would be in the form of a CSV file. How would I accomplish this?
Edit: When following the instructions provided by PieterB, I get an empty error window. The Python error log reads:
Traceback (most recent call last):
File "/Applications/QGIS3.app/Contents/MacOS/../Resources/python/plugins/db_manager/db_plugins/gpkg/data_model.py", line 63, in run
self.model = GPKGSqlResultModel(self.db, self.sql, None)
File "/Applications/QGIS3.app/Contents/MacOS/../Resources/python/plugins/db_manager/db_plugins/data_model.py", line 195, in __init__
c = self.db._execute(None, sql)
File "/Applications/QGIS3.app/Contents/MacOS/../Resources/python/plugins/db_manager/db_plugins/gpkg/connector.py", line 147, in _execute
self.connection = spatialite_connect(str(self.dbname))
File "/Applications/QGIS3.app/Contents/MacOS/../Resources/python/qgis/utils.py", line 595, in spatialite_connect
con.enable_load_extension(True)
AttributeError: 'sqlite3.Connection' object has no attribute 'enable_load_extension'
qgis
New contributor
Ben A. is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
add a comment |
I am looking for a way to create a list of polygons that each polygon touches. I am a complete novice at QGIS and I have no idea where to even start. I am using a map of voting precincts in Utah that looks like this:

I want to generate a list that shows the precinct name (the attribute is called PrecinctID). Preferably, the output list would be in the form of a CSV file. How would I accomplish this?
Edit: When following the instructions provided by PieterB, I get an empty error window. The Python error log reads:
Traceback (most recent call last):
File "/Applications/QGIS3.app/Contents/MacOS/../Resources/python/plugins/db_manager/db_plugins/gpkg/data_model.py", line 63, in run
self.model = GPKGSqlResultModel(self.db, self.sql, None)
File "/Applications/QGIS3.app/Contents/MacOS/../Resources/python/plugins/db_manager/db_plugins/data_model.py", line 195, in __init__
c = self.db._execute(None, sql)
File "/Applications/QGIS3.app/Contents/MacOS/../Resources/python/plugins/db_manager/db_plugins/gpkg/connector.py", line 147, in _execute
self.connection = spatialite_connect(str(self.dbname))
File "/Applications/QGIS3.app/Contents/MacOS/../Resources/python/qgis/utils.py", line 595, in spatialite_connect
con.enable_load_extension(True)
AttributeError: 'sqlite3.Connection' object has no attribute 'enable_load_extension'
qgis
New contributor
Ben A. is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
2
Like this? > qgistutorials.com/en/docs/find_neighbor_polygons.html
– Mapperz♦
Apr 9 at 3:22
add a comment |
I am looking for a way to create a list of polygons that each polygon touches. I am a complete novice at QGIS and I have no idea where to even start. I am using a map of voting precincts in Utah that looks like this:

I want to generate a list that shows the precinct name (the attribute is called PrecinctID). Preferably, the output list would be in the form of a CSV file. How would I accomplish this?
Edit: When following the instructions provided by PieterB, I get an empty error window. The Python error log reads:
Traceback (most recent call last):
File "/Applications/QGIS3.app/Contents/MacOS/../Resources/python/plugins/db_manager/db_plugins/gpkg/data_model.py", line 63, in run
self.model = GPKGSqlResultModel(self.db, self.sql, None)
File "/Applications/QGIS3.app/Contents/MacOS/../Resources/python/plugins/db_manager/db_plugins/data_model.py", line 195, in __init__
c = self.db._execute(None, sql)
File "/Applications/QGIS3.app/Contents/MacOS/../Resources/python/plugins/db_manager/db_plugins/gpkg/connector.py", line 147, in _execute
self.connection = spatialite_connect(str(self.dbname))
File "/Applications/QGIS3.app/Contents/MacOS/../Resources/python/qgis/utils.py", line 595, in spatialite_connect
con.enable_load_extension(True)
AttributeError: 'sqlite3.Connection' object has no attribute 'enable_load_extension'
qgis
New contributor
Ben A. is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
I am looking for a way to create a list of polygons that each polygon touches. I am a complete novice at QGIS and I have no idea where to even start. I am using a map of voting precincts in Utah that looks like this:

I want to generate a list that shows the precinct name (the attribute is called PrecinctID). Preferably, the output list would be in the form of a CSV file. How would I accomplish this?
Edit: When following the instructions provided by PieterB, I get an empty error window. The Python error log reads:
Traceback (most recent call last):
File "/Applications/QGIS3.app/Contents/MacOS/../Resources/python/plugins/db_manager/db_plugins/gpkg/data_model.py", line 63, in run
self.model = GPKGSqlResultModel(self.db, self.sql, None)
File "/Applications/QGIS3.app/Contents/MacOS/../Resources/python/plugins/db_manager/db_plugins/data_model.py", line 195, in __init__
c = self.db._execute(None, sql)
File "/Applications/QGIS3.app/Contents/MacOS/../Resources/python/plugins/db_manager/db_plugins/gpkg/connector.py", line 147, in _execute
self.connection = spatialite_connect(str(self.dbname))
File "/Applications/QGIS3.app/Contents/MacOS/../Resources/python/qgis/utils.py", line 595, in spatialite_connect
con.enable_load_extension(True)
AttributeError: 'sqlite3.Connection' object has no attribute 'enable_load_extension'
qgis
qgis
New contributor
Ben A. is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Ben A. is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
edited Apr 9 at 17:03
Ben A.
New contributor
Ben A. is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
asked Apr 9 at 1:46
Ben A.Ben A.
235
235
New contributor
Ben A. is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
New contributor
Ben A. is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
Ben A. is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
2
Like this? > qgistutorials.com/en/docs/find_neighbor_polygons.html
– Mapperz♦
Apr 9 at 3:22
add a comment |
2
Like this? > qgistutorials.com/en/docs/find_neighbor_polygons.html
– Mapperz♦
Apr 9 at 3:22
2
2
Like this? > qgistutorials.com/en/docs/find_neighbor_polygons.html
– Mapperz♦
Apr 9 at 3:22
Like this? > qgistutorials.com/en/docs/find_neighbor_polygons.html
– Mapperz♦
Apr 9 at 3:22
add a comment |
1 Answer
1
active
oldest
votes
You can do this in QGIS with SQL.
Go to Database > DB-manager > Virtual Layers > Project Layers
Open the SQL-window and add following code. Change 'layername' twice to the appropriate layername:
select a."PrecinctID", group_concat(b."PrecinctID") as neighbours
from layername a, layername b
where touches(a.geometry, b.geometry)
group by a."PrecinctID"
- Check 'load as a new layer'
- Uncheck 'Geometry column'
- Give a layer name
- click load
Now you get a table which you can save (right-click > save as) as a .csv
It will take a while before the results are computed. Depending on how your features are stored, it can go faster when you put them in a database (eg. geopackage) and set an index on the geometry and PrecinctID.
Importing your data into geopackage:
- right click your layer and choose Export > Save features as
- choose Geopackage
- give your file and layer a name

As everything goes fine, the layer will be loaded in QGIS.
After that, open DB-manager and connect to your geopackage (right clik on 'geopackage' > New connection)
Now you have to make some indexes:
- a spatial index like explained here: https://gis.stackexchange.com/a/265574/7849
an index on PrecinctID: in DB-manager select you layer and go to Table > Edit Table.

Open the tab 'Index' and click on 'Add index', select PrecinctID in the dropdownlist.

In geopackage the geometry is called 'geom'. So you have to adapt the code a little bit:
select a."PrecinctID", group_concat(b."PrecinctID") as neighbours
from layername a, layername b
where touches(a.geom, b.geom)
group by a."PrecinctID"

2
really a good one
– Taras
Apr 9 at 11:15
When I use this, I get the following error:Query preparation error on SELECT "group_concat(b."PrecinctID")" FROM _tview LIMIT 1: near "")"": syntax error
– Ben A.
Apr 9 at 14:02
@BenA. I forgot an alias. I edited my answer.
– PieterB
Apr 9 at 14:57
1
Let us continue this discussion in chat.
– Ben A.
Apr 9 at 17:19
1
Comments are not for extended discussion; this conversation has been moved to chat.
– Mapperz♦
Apr 10 at 2:50
|
show 19 more comments
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "79"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Ben A. is a new contributor. Be nice, and check out our Code of Conduct.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f318187%2fgenerate-list-of-neighboring-polygons-qgis%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You can do this in QGIS with SQL.
Go to Database > DB-manager > Virtual Layers > Project Layers
Open the SQL-window and add following code. Change 'layername' twice to the appropriate layername:
select a."PrecinctID", group_concat(b."PrecinctID") as neighbours
from layername a, layername b
where touches(a.geometry, b.geometry)
group by a."PrecinctID"
- Check 'load as a new layer'
- Uncheck 'Geometry column'
- Give a layer name
- click load
Now you get a table which you can save (right-click > save as) as a .csv
It will take a while before the results are computed. Depending on how your features are stored, it can go faster when you put them in a database (eg. geopackage) and set an index on the geometry and PrecinctID.
Importing your data into geopackage:
- right click your layer and choose Export > Save features as
- choose Geopackage
- give your file and layer a name

As everything goes fine, the layer will be loaded in QGIS.
After that, open DB-manager and connect to your geopackage (right clik on 'geopackage' > New connection)
Now you have to make some indexes:
- a spatial index like explained here: https://gis.stackexchange.com/a/265574/7849
an index on PrecinctID: in DB-manager select you layer and go to Table > Edit Table.

Open the tab 'Index' and click on 'Add index', select PrecinctID in the dropdownlist.

In geopackage the geometry is called 'geom'. So you have to adapt the code a little bit:
select a."PrecinctID", group_concat(b."PrecinctID") as neighbours
from layername a, layername b
where touches(a.geom, b.geom)
group by a."PrecinctID"

2
really a good one
– Taras
Apr 9 at 11:15
When I use this, I get the following error:Query preparation error on SELECT "group_concat(b."PrecinctID")" FROM _tview LIMIT 1: near "")"": syntax error
– Ben A.
Apr 9 at 14:02
@BenA. I forgot an alias. I edited my answer.
– PieterB
Apr 9 at 14:57
1
Let us continue this discussion in chat.
– Ben A.
Apr 9 at 17:19
1
Comments are not for extended discussion; this conversation has been moved to chat.
– Mapperz♦
Apr 10 at 2:50
|
show 19 more comments
You can do this in QGIS with SQL.
Go to Database > DB-manager > Virtual Layers > Project Layers
Open the SQL-window and add following code. Change 'layername' twice to the appropriate layername:
select a."PrecinctID", group_concat(b."PrecinctID") as neighbours
from layername a, layername b
where touches(a.geometry, b.geometry)
group by a."PrecinctID"
- Check 'load as a new layer'
- Uncheck 'Geometry column'
- Give a layer name
- click load
Now you get a table which you can save (right-click > save as) as a .csv
It will take a while before the results are computed. Depending on how your features are stored, it can go faster when you put them in a database (eg. geopackage) and set an index on the geometry and PrecinctID.
Importing your data into geopackage:
- right click your layer and choose Export > Save features as
- choose Geopackage
- give your file and layer a name

As everything goes fine, the layer will be loaded in QGIS.
After that, open DB-manager and connect to your geopackage (right clik on 'geopackage' > New connection)
Now you have to make some indexes:
- a spatial index like explained here: https://gis.stackexchange.com/a/265574/7849
an index on PrecinctID: in DB-manager select you layer and go to Table > Edit Table.

Open the tab 'Index' and click on 'Add index', select PrecinctID in the dropdownlist.

In geopackage the geometry is called 'geom'. So you have to adapt the code a little bit:
select a."PrecinctID", group_concat(b."PrecinctID") as neighbours
from layername a, layername b
where touches(a.geom, b.geom)
group by a."PrecinctID"

2
really a good one
– Taras
Apr 9 at 11:15
When I use this, I get the following error:Query preparation error on SELECT "group_concat(b."PrecinctID")" FROM _tview LIMIT 1: near "")"": syntax error
– Ben A.
Apr 9 at 14:02
@BenA. I forgot an alias. I edited my answer.
– PieterB
Apr 9 at 14:57
1
Let us continue this discussion in chat.
– Ben A.
Apr 9 at 17:19
1
Comments are not for extended discussion; this conversation has been moved to chat.
– Mapperz♦
Apr 10 at 2:50
|
show 19 more comments
You can do this in QGIS with SQL.
Go to Database > DB-manager > Virtual Layers > Project Layers
Open the SQL-window and add following code. Change 'layername' twice to the appropriate layername:
select a."PrecinctID", group_concat(b."PrecinctID") as neighbours
from layername a, layername b
where touches(a.geometry, b.geometry)
group by a."PrecinctID"
- Check 'load as a new layer'
- Uncheck 'Geometry column'
- Give a layer name
- click load
Now you get a table which you can save (right-click > save as) as a .csv
It will take a while before the results are computed. Depending on how your features are stored, it can go faster when you put them in a database (eg. geopackage) and set an index on the geometry and PrecinctID.
Importing your data into geopackage:
- right click your layer and choose Export > Save features as
- choose Geopackage
- give your file and layer a name

As everything goes fine, the layer will be loaded in QGIS.
After that, open DB-manager and connect to your geopackage (right clik on 'geopackage' > New connection)
Now you have to make some indexes:
- a spatial index like explained here: https://gis.stackexchange.com/a/265574/7849
an index on PrecinctID: in DB-manager select you layer and go to Table > Edit Table.

Open the tab 'Index' and click on 'Add index', select PrecinctID in the dropdownlist.

In geopackage the geometry is called 'geom'. So you have to adapt the code a little bit:
select a."PrecinctID", group_concat(b."PrecinctID") as neighbours
from layername a, layername b
where touches(a.geom, b.geom)
group by a."PrecinctID"

You can do this in QGIS with SQL.
Go to Database > DB-manager > Virtual Layers > Project Layers
Open the SQL-window and add following code. Change 'layername' twice to the appropriate layername:
select a."PrecinctID", group_concat(b."PrecinctID") as neighbours
from layername a, layername b
where touches(a.geometry, b.geometry)
group by a."PrecinctID"
- Check 'load as a new layer'
- Uncheck 'Geometry column'
- Give a layer name
- click load
Now you get a table which you can save (right-click > save as) as a .csv
It will take a while before the results are computed. Depending on how your features are stored, it can go faster when you put them in a database (eg. geopackage) and set an index on the geometry and PrecinctID.
Importing your data into geopackage:
- right click your layer and choose Export > Save features as
- choose Geopackage
- give your file and layer a name

As everything goes fine, the layer will be loaded in QGIS.
After that, open DB-manager and connect to your geopackage (right clik on 'geopackage' > New connection)
Now you have to make some indexes:
- a spatial index like explained here: https://gis.stackexchange.com/a/265574/7849
an index on PrecinctID: in DB-manager select you layer and go to Table > Edit Table.

Open the tab 'Index' and click on 'Add index', select PrecinctID in the dropdownlist.

In geopackage the geometry is called 'geom'. So you have to adapt the code a little bit:
select a."PrecinctID", group_concat(b."PrecinctID") as neighbours
from layername a, layername b
where touches(a.geom, b.geom)
group by a."PrecinctID"

edited Apr 10 at 14:43
answered Apr 9 at 7:57
PieterBPieterB
3,0301128
3,0301128
2
really a good one
– Taras
Apr 9 at 11:15
When I use this, I get the following error:Query preparation error on SELECT "group_concat(b."PrecinctID")" FROM _tview LIMIT 1: near "")"": syntax error
– Ben A.
Apr 9 at 14:02
@BenA. I forgot an alias. I edited my answer.
– PieterB
Apr 9 at 14:57
1
Let us continue this discussion in chat.
– Ben A.
Apr 9 at 17:19
1
Comments are not for extended discussion; this conversation has been moved to chat.
– Mapperz♦
Apr 10 at 2:50
|
show 19 more comments
2
really a good one
– Taras
Apr 9 at 11:15
When I use this, I get the following error:Query preparation error on SELECT "group_concat(b."PrecinctID")" FROM _tview LIMIT 1: near "")"": syntax error
– Ben A.
Apr 9 at 14:02
@BenA. I forgot an alias. I edited my answer.
– PieterB
Apr 9 at 14:57
1
Let us continue this discussion in chat.
– Ben A.
Apr 9 at 17:19
1
Comments are not for extended discussion; this conversation has been moved to chat.
– Mapperz♦
Apr 10 at 2:50
2
2
really a good one
– Taras
Apr 9 at 11:15
really a good one
– Taras
Apr 9 at 11:15
When I use this, I get the following error:
Query preparation error on SELECT "group_concat(b."PrecinctID")" FROM _tview LIMIT 1: near "")"": syntax error– Ben A.
Apr 9 at 14:02
When I use this, I get the following error:
Query preparation error on SELECT "group_concat(b."PrecinctID")" FROM _tview LIMIT 1: near "")"": syntax error– Ben A.
Apr 9 at 14:02
@BenA. I forgot an alias. I edited my answer.
– PieterB
Apr 9 at 14:57
@BenA. I forgot an alias. I edited my answer.
– PieterB
Apr 9 at 14:57
1
1
Let us continue this discussion in chat.
– Ben A.
Apr 9 at 17:19
Let us continue this discussion in chat.
– Ben A.
Apr 9 at 17:19
1
1
Comments are not for extended discussion; this conversation has been moved to chat.
– Mapperz♦
Apr 10 at 2:50
Comments are not for extended discussion; this conversation has been moved to chat.
– Mapperz♦
Apr 10 at 2:50
|
show 19 more comments
Ben A. is a new contributor. Be nice, and check out our Code of Conduct.
Ben A. is a new contributor. Be nice, and check out our Code of Conduct.
Ben A. is a new contributor. Be nice, and check out our Code of Conduct.
Ben A. is a new contributor. Be nice, and check out our Code of Conduct.
Thanks for contributing an answer to Geographic Information Systems Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f318187%2fgenerate-list-of-neighboring-polygons-qgis%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
2
Like this? > qgistutorials.com/en/docs/find_neighbor_polygons.html
– Mapperz♦
Apr 9 at 3:22