Plain geometry editor for QGIS 3.0?Copy geometry from one layer onto attributes of another?Help with PostGIS...
Why "Having chlorophyll without photosynthesis is actually very dangerous" and "like living with a bomb"?
If human space travel is limited by the G force vulnerability, is there a way to counter G forces?
Can one be a co-translator of a book, if he does not know the language that the book is translated into?
Is it possible to create light that imparts a greater proportion of its energy as momentum rather than heat?
In a Spin are Both Wings Stalled?
How to show the equivalence between the regularized regression and their constraint formulas using KKT
Theorems that impeded progress
1960's book about a plague that kills all white people
I would say: "You are another teacher", but she is a woman and I am a man
How to model explosives?
How to say in German "enjoying home comforts"
Combinations of multiple lists
Python: return float 1.0 as int 1 but float 1.5 as float 1.5
How do conventional missiles fly?
90's TV series where a boy goes to another dimension through portal near power lines
Facing a paradox: Earnshaw's theorem in one dimension
A reference to a well-known characterization of scattered compact spaces
Why are electrically insulating heatsinks so rare? Is it just cost?
How do I write bicross product symbols in latex?
Today is the Center
Alternative to sending password over mail?
What's the difference between 'rename' and 'mv'?
Is it legal for company to use my work email to pretend I still work there?
Infinite Abelian subgroup of infinite non Abelian group example
Plain geometry editor for QGIS 3.0?
Copy geometry from one layer onto attributes of another?Help with PostGIS polygon geometry - non-closed ringsAre there Plugin Compatibility Issues between QGIS 1.6.0 and 1.7.4?Will core functions in QGIS exploit multi-threading?Valid shapely dumps WKT becomes None when used as input to QgsGeometryWhat do you use your QGIS plugins for?Making lines from points like Points2One for QGIS 3How to copy layer(s) to clipboard in QGIS 3.0?How to view layers by data source in QGIS 3?Progress reporting in QGIS 3.0QProgressDialog in QGIS 3.0 not updating
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ margin-bottom:0;
}
In QGIS 2.18, I had been using the plugin "Plain Geometry Editor" to view, copy and paste the WKT geometry of features (as a solution to this question). However, this plugin is not available for QGIS 3.0. Is there any new core functionality within 3.0 that will do the same thing? or perhaps another plugin? ("GetWKT" allows me to view and copy, but not paste, the WKT data.)
qgis-plugins geometry qgis-3 wkt
add a comment |
In QGIS 2.18, I had been using the plugin "Plain Geometry Editor" to view, copy and paste the WKT geometry of features (as a solution to this question). However, this plugin is not available for QGIS 3.0. Is there any new core functionality within 3.0 that will do the same thing? or perhaps another plugin? ("GetWKT" allows me to view and copy, but not paste, the WKT data.)
qgis-plugins geometry qgis-3 wkt
add a comment |
In QGIS 2.18, I had been using the plugin "Plain Geometry Editor" to view, copy and paste the WKT geometry of features (as a solution to this question). However, this plugin is not available for QGIS 3.0. Is there any new core functionality within 3.0 that will do the same thing? or perhaps another plugin? ("GetWKT" allows me to view and copy, but not paste, the WKT data.)
qgis-plugins geometry qgis-3 wkt
In QGIS 2.18, I had been using the plugin "Plain Geometry Editor" to view, copy and paste the WKT geometry of features (as a solution to this question). However, this plugin is not available for QGIS 3.0. Is there any new core functionality within 3.0 that will do the same thing? or perhaps another plugin? ("GetWKT" allows me to view and copy, but not paste, the WKT data.)
qgis-plugins geometry qgis-3 wkt
qgis-plugins geometry qgis-3 wkt
asked May 21 '18 at 4:02
NathanNathan
634311
634311
add a comment |
add a comment |
4 Answers
4
active
oldest
votes
In QGIS 3 you can use (like in earlier versions) the copy&paste of the objects in the attribute table. When you paste them you get the WKT and also the other attribute values. If it is not working the option is probably not set in the options (submenu datasources).
That means you have to paste it into another program an copy only the WKT from there if you don´t need more. Spreadsheet software like Calc do automatically recognize the delimiter of the copied data. Therefore you get an own column only for WKT.
But once I've copied the WKT from that other program, how would I update a feature in QGIS with that copied geometry?
– Nathan
May 22 '18 at 5:07
In the field calculator you use the function geom_from_wkt('Polygon(...)') and set the "Update existing field" to <geometry>.
– Matte
May 22 '18 at 6:44
That worked! But it's much easier than copy/paste into a separate program, using the "GetWKT" plugin that still works in 3.0. Here are the steps: 1. In the source layer, select a feature and run the GetWKT plugin. 2. Select and copy the returned WKT. 3. In the destination layer, select a feature and open Field Calculator. 4. Call the function geom_from_wkt() as explained above, using the copied WKT between the (). (Ensure that "Update only 1 selected feature" is also selected.) 5. The feature in the destination layer is updated with the new geometry.
– Nathan
May 22 '18 at 15:37
add a comment |
I suggest to try OpenJUMP while waiting for Plain Geometry Editor for QGIS 3. With OpenJUMP you can copy, paste, and edit geometries as WKT. QGIS can read and write the JUMP GML format (JML) and you can use that as a transfer format. OpenJUMP can handle all sort of geometries on one layer which is often a nice feature but for QGIS you must keep points, lines, and polygons on separate layers.
Ah yes—OpenJUMP to the rescue once again! Of course, I could also just use QGIS 2.18 with the plugin and edit my data files there, but nice to know OpenJUMP will also do it.
– Nathan
May 22 '18 at 5:09
add a comment |
There is a plugin perfect to do this in QGIS 3.
GEOMETRY PASTER.
We're looking for long answers that provide some explanation and context. Don't just give a one-line answer; explain why your answer is right, ideally with citations. Answers that don't include explanations may be removed.
4
Thank you for this first contribution; it is never too late to come with a good answer. It would be even better if you could provide some more information about the geometry paster (what it does exactly...)
– radouxju
Jan 30 at 8:29
I actually just discovered this plugin yesterday. Unfortunately, the first time I tried it I got error messages, I think having to do with the available space on the clipboard for the pasted geometry. So yes, this should be exactly what I need, if and when it is working solidly!
– Nathan
Jan 30 at 18:14
add a comment |
I just released the version for QGIS 3, it is available from the main repo
Kudos to Giovanni who did the port.
add a comment |
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
});
}
});
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%2f283544%2fplain-geometry-editor-for-qgis-3-0%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
In QGIS 3 you can use (like in earlier versions) the copy&paste of the objects in the attribute table. When you paste them you get the WKT and also the other attribute values. If it is not working the option is probably not set in the options (submenu datasources).
That means you have to paste it into another program an copy only the WKT from there if you don´t need more. Spreadsheet software like Calc do automatically recognize the delimiter of the copied data. Therefore you get an own column only for WKT.
But once I've copied the WKT from that other program, how would I update a feature in QGIS with that copied geometry?
– Nathan
May 22 '18 at 5:07
In the field calculator you use the function geom_from_wkt('Polygon(...)') and set the "Update existing field" to <geometry>.
– Matte
May 22 '18 at 6:44
That worked! But it's much easier than copy/paste into a separate program, using the "GetWKT" plugin that still works in 3.0. Here are the steps: 1. In the source layer, select a feature and run the GetWKT plugin. 2. Select and copy the returned WKT. 3. In the destination layer, select a feature and open Field Calculator. 4. Call the function geom_from_wkt() as explained above, using the copied WKT between the (). (Ensure that "Update only 1 selected feature" is also selected.) 5. The feature in the destination layer is updated with the new geometry.
– Nathan
May 22 '18 at 15:37
add a comment |
In QGIS 3 you can use (like in earlier versions) the copy&paste of the objects in the attribute table. When you paste them you get the WKT and also the other attribute values. If it is not working the option is probably not set in the options (submenu datasources).
That means you have to paste it into another program an copy only the WKT from there if you don´t need more. Spreadsheet software like Calc do automatically recognize the delimiter of the copied data. Therefore you get an own column only for WKT.
But once I've copied the WKT from that other program, how would I update a feature in QGIS with that copied geometry?
– Nathan
May 22 '18 at 5:07
In the field calculator you use the function geom_from_wkt('Polygon(...)') and set the "Update existing field" to <geometry>.
– Matte
May 22 '18 at 6:44
That worked! But it's much easier than copy/paste into a separate program, using the "GetWKT" plugin that still works in 3.0. Here are the steps: 1. In the source layer, select a feature and run the GetWKT plugin. 2. Select and copy the returned WKT. 3. In the destination layer, select a feature and open Field Calculator. 4. Call the function geom_from_wkt() as explained above, using the copied WKT between the (). (Ensure that "Update only 1 selected feature" is also selected.) 5. The feature in the destination layer is updated with the new geometry.
– Nathan
May 22 '18 at 15:37
add a comment |
In QGIS 3 you can use (like in earlier versions) the copy&paste of the objects in the attribute table. When you paste them you get the WKT and also the other attribute values. If it is not working the option is probably not set in the options (submenu datasources).
That means you have to paste it into another program an copy only the WKT from there if you don´t need more. Spreadsheet software like Calc do automatically recognize the delimiter of the copied data. Therefore you get an own column only for WKT.
In QGIS 3 you can use (like in earlier versions) the copy&paste of the objects in the attribute table. When you paste them you get the WKT and also the other attribute values. If it is not working the option is probably not set in the options (submenu datasources).
That means you have to paste it into another program an copy only the WKT from there if you don´t need more. Spreadsheet software like Calc do automatically recognize the delimiter of the copied data. Therefore you get an own column only for WKT.
answered May 21 '18 at 6:04
MatteMatte
5,450716
5,450716
But once I've copied the WKT from that other program, how would I update a feature in QGIS with that copied geometry?
– Nathan
May 22 '18 at 5:07
In the field calculator you use the function geom_from_wkt('Polygon(...)') and set the "Update existing field" to <geometry>.
– Matte
May 22 '18 at 6:44
That worked! But it's much easier than copy/paste into a separate program, using the "GetWKT" plugin that still works in 3.0. Here are the steps: 1. In the source layer, select a feature and run the GetWKT plugin. 2. Select and copy the returned WKT. 3. In the destination layer, select a feature and open Field Calculator. 4. Call the function geom_from_wkt() as explained above, using the copied WKT between the (). (Ensure that "Update only 1 selected feature" is also selected.) 5. The feature in the destination layer is updated with the new geometry.
– Nathan
May 22 '18 at 15:37
add a comment |
But once I've copied the WKT from that other program, how would I update a feature in QGIS with that copied geometry?
– Nathan
May 22 '18 at 5:07
In the field calculator you use the function geom_from_wkt('Polygon(...)') and set the "Update existing field" to <geometry>.
– Matte
May 22 '18 at 6:44
That worked! But it's much easier than copy/paste into a separate program, using the "GetWKT" plugin that still works in 3.0. Here are the steps: 1. In the source layer, select a feature and run the GetWKT plugin. 2. Select and copy the returned WKT. 3. In the destination layer, select a feature and open Field Calculator. 4. Call the function geom_from_wkt() as explained above, using the copied WKT between the (). (Ensure that "Update only 1 selected feature" is also selected.) 5. The feature in the destination layer is updated with the new geometry.
– Nathan
May 22 '18 at 15:37
But once I've copied the WKT from that other program, how would I update a feature in QGIS with that copied geometry?
– Nathan
May 22 '18 at 5:07
But once I've copied the WKT from that other program, how would I update a feature in QGIS with that copied geometry?
– Nathan
May 22 '18 at 5:07
In the field calculator you use the function geom_from_wkt('Polygon(...)') and set the "Update existing field" to <geometry>.
– Matte
May 22 '18 at 6:44
In the field calculator you use the function geom_from_wkt('Polygon(...)') and set the "Update existing field" to <geometry>.
– Matte
May 22 '18 at 6:44
That worked! But it's much easier than copy/paste into a separate program, using the "GetWKT" plugin that still works in 3.0. Here are the steps: 1. In the source layer, select a feature and run the GetWKT plugin. 2. Select and copy the returned WKT. 3. In the destination layer, select a feature and open Field Calculator. 4. Call the function geom_from_wkt() as explained above, using the copied WKT between the (). (Ensure that "Update only 1 selected feature" is also selected.) 5. The feature in the destination layer is updated with the new geometry.
– Nathan
May 22 '18 at 15:37
That worked! But it's much easier than copy/paste into a separate program, using the "GetWKT" plugin that still works in 3.0. Here are the steps: 1. In the source layer, select a feature and run the GetWKT plugin. 2. Select and copy the returned WKT. 3. In the destination layer, select a feature and open Field Calculator. 4. Call the function geom_from_wkt() as explained above, using the copied WKT between the (). (Ensure that "Update only 1 selected feature" is also selected.) 5. The feature in the destination layer is updated with the new geometry.
– Nathan
May 22 '18 at 15:37
add a comment |
I suggest to try OpenJUMP while waiting for Plain Geometry Editor for QGIS 3. With OpenJUMP you can copy, paste, and edit geometries as WKT. QGIS can read and write the JUMP GML format (JML) and you can use that as a transfer format. OpenJUMP can handle all sort of geometries on one layer which is often a nice feature but for QGIS you must keep points, lines, and polygons on separate layers.
Ah yes—OpenJUMP to the rescue once again! Of course, I could also just use QGIS 2.18 with the plugin and edit my data files there, but nice to know OpenJUMP will also do it.
– Nathan
May 22 '18 at 5:09
add a comment |
I suggest to try OpenJUMP while waiting for Plain Geometry Editor for QGIS 3. With OpenJUMP you can copy, paste, and edit geometries as WKT. QGIS can read and write the JUMP GML format (JML) and you can use that as a transfer format. OpenJUMP can handle all sort of geometries on one layer which is often a nice feature but for QGIS you must keep points, lines, and polygons on separate layers.
Ah yes—OpenJUMP to the rescue once again! Of course, I could also just use QGIS 2.18 with the plugin and edit my data files there, but nice to know OpenJUMP will also do it.
– Nathan
May 22 '18 at 5:09
add a comment |
I suggest to try OpenJUMP while waiting for Plain Geometry Editor for QGIS 3. With OpenJUMP you can copy, paste, and edit geometries as WKT. QGIS can read and write the JUMP GML format (JML) and you can use that as a transfer format. OpenJUMP can handle all sort of geometries on one layer which is often a nice feature but for QGIS you must keep points, lines, and polygons on separate layers.
I suggest to try OpenJUMP while waiting for Plain Geometry Editor for QGIS 3. With OpenJUMP you can copy, paste, and edit geometries as WKT. QGIS can read and write the JUMP GML format (JML) and you can use that as a transfer format. OpenJUMP can handle all sort of geometries on one layer which is often a nice feature but for QGIS you must keep points, lines, and polygons on separate layers.
answered May 21 '18 at 8:00
user30184user30184
30k23057
30k23057
Ah yes—OpenJUMP to the rescue once again! Of course, I could also just use QGIS 2.18 with the plugin and edit my data files there, but nice to know OpenJUMP will also do it.
– Nathan
May 22 '18 at 5:09
add a comment |
Ah yes—OpenJUMP to the rescue once again! Of course, I could also just use QGIS 2.18 with the plugin and edit my data files there, but nice to know OpenJUMP will also do it.
– Nathan
May 22 '18 at 5:09
Ah yes—OpenJUMP to the rescue once again! Of course, I could also just use QGIS 2.18 with the plugin and edit my data files there, but nice to know OpenJUMP will also do it.
– Nathan
May 22 '18 at 5:09
Ah yes—OpenJUMP to the rescue once again! Of course, I could also just use QGIS 2.18 with the plugin and edit my data files there, but nice to know OpenJUMP will also do it.
– Nathan
May 22 '18 at 5:09
add a comment |
There is a plugin perfect to do this in QGIS 3.
GEOMETRY PASTER.
We're looking for long answers that provide some explanation and context. Don't just give a one-line answer; explain why your answer is right, ideally with citations. Answers that don't include explanations may be removed.
4
Thank you for this first contribution; it is never too late to come with a good answer. It would be even better if you could provide some more information about the geometry paster (what it does exactly...)
– radouxju
Jan 30 at 8:29
I actually just discovered this plugin yesterday. Unfortunately, the first time I tried it I got error messages, I think having to do with the available space on the clipboard for the pasted geometry. So yes, this should be exactly what I need, if and when it is working solidly!
– Nathan
Jan 30 at 18:14
add a comment |
There is a plugin perfect to do this in QGIS 3.
GEOMETRY PASTER.
We're looking for long answers that provide some explanation and context. Don't just give a one-line answer; explain why your answer is right, ideally with citations. Answers that don't include explanations may be removed.
4
Thank you for this first contribution; it is never too late to come with a good answer. It would be even better if you could provide some more information about the geometry paster (what it does exactly...)
– radouxju
Jan 30 at 8:29
I actually just discovered this plugin yesterday. Unfortunately, the first time I tried it I got error messages, I think having to do with the available space on the clipboard for the pasted geometry. So yes, this should be exactly what I need, if and when it is working solidly!
– Nathan
Jan 30 at 18:14
add a comment |
There is a plugin perfect to do this in QGIS 3.
GEOMETRY PASTER.
There is a plugin perfect to do this in QGIS 3.
GEOMETRY PASTER.
edited Jan 30 at 11:37
PolyGeo♦
53.9k1781245
53.9k1781245
answered Jan 30 at 8:16
Cristian GuillenCristian Guillen
271
271
We're looking for long answers that provide some explanation and context. Don't just give a one-line answer; explain why your answer is right, ideally with citations. Answers that don't include explanations may be removed.
We're looking for long answers that provide some explanation and context. Don't just give a one-line answer; explain why your answer is right, ideally with citations. Answers that don't include explanations may be removed.
4
Thank you for this first contribution; it is never too late to come with a good answer. It would be even better if you could provide some more information about the geometry paster (what it does exactly...)
– radouxju
Jan 30 at 8:29
I actually just discovered this plugin yesterday. Unfortunately, the first time I tried it I got error messages, I think having to do with the available space on the clipboard for the pasted geometry. So yes, this should be exactly what I need, if and when it is working solidly!
– Nathan
Jan 30 at 18:14
add a comment |
4
Thank you for this first contribution; it is never too late to come with a good answer. It would be even better if you could provide some more information about the geometry paster (what it does exactly...)
– radouxju
Jan 30 at 8:29
I actually just discovered this plugin yesterday. Unfortunately, the first time I tried it I got error messages, I think having to do with the available space on the clipboard for the pasted geometry. So yes, this should be exactly what I need, if and when it is working solidly!
– Nathan
Jan 30 at 18:14
4
4
Thank you for this first contribution; it is never too late to come with a good answer. It would be even better if you could provide some more information about the geometry paster (what it does exactly...)
– radouxju
Jan 30 at 8:29
Thank you for this first contribution; it is never too late to come with a good answer. It would be even better if you could provide some more information about the geometry paster (what it does exactly...)
– radouxju
Jan 30 at 8:29
I actually just discovered this plugin yesterday. Unfortunately, the first time I tried it I got error messages, I think having to do with the available space on the clipboard for the pasted geometry. So yes, this should be exactly what I need, if and when it is working solidly!
– Nathan
Jan 30 at 18:14
I actually just discovered this plugin yesterday. Unfortunately, the first time I tried it I got error messages, I think having to do with the available space on the clipboard for the pasted geometry. So yes, this should be exactly what I need, if and when it is working solidly!
– Nathan
Jan 30 at 18:14
add a comment |
I just released the version for QGIS 3, it is available from the main repo
Kudos to Giovanni who did the port.
add a comment |
I just released the version for QGIS 3, it is available from the main repo
Kudos to Giovanni who did the port.
add a comment |
I just released the version for QGIS 3, it is available from the main repo
Kudos to Giovanni who did the port.
I just released the version for QGIS 3, it is available from the main repo
Kudos to Giovanni who did the port.
answered 33 secs ago
Denis RouzaudDenis Rouzaud
66446
66446
add a comment |
add a comment |
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%2f283544%2fplain-geometry-editor-for-qgis-3-0%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