Questions tagged [copy]
An imitation or reproduction of an original.
174 questions
2 votes
0 answers
73 views
Copying and pasting selected features from multiple layers in QGIS
I used very useful small plugin for QGIS3 (by @YoannQuenachdeQuivillic). How can I copy selected objects from multiple QGIS layers (of different geometries) at once? And then insert them into the ...
5 votes
1 answer
114 views
Copying attribute form with constraints in QGIS
I have an attribute form set up with "Value Relation" and some "look-up" tables. I wish to copy the setup into another workspace without having to do anything but copying the ...
3 votes
1 answer
230 views
Copying tables from PostGIS schema without geometries with OGR
I'm trying to copy a PostGIS schema named test with all its tables to a GeoPackage. There are 6 tables with geometries and one table without geometries in the schema: This copies all tables into a ...
0 votes
1 answer
425 views
How to make uneditable layers editable in ArcGIS Pro [closed]
I am new to ArcGIS Pro and GIS in general. I am trying to copy data from a map layer onto other layers. However, the desired destination layers are not editable, so I am unable to copy data onto them. ...
2 votes
1 answer
102 views
Unable to rename copied geodatabase [closed]
I have an existing script that copies a geodatabase to another location and renames it. It uses arcpy and os libraries to do it. copy_from = r"C:\test.gdb" copy_to = r"D:\test.gdb" ...
1 vote
1 answer
872 views
Cannot copy and paste into a layer
I am having a very frustrating problem in ArcMap. (This is all within the one enterprise geodatabase.) I am trying to copy and paste a feature from one layer to another (similar layers). I have been ...
5 votes
1 answer
259 views
Cloning the map layer using PyQGIS
I want to clone my generated memory layer and apply different filters and symbology. The clone is visible in the layer tree, but doesn't show up in the canvas. What am I doing wrong? uri = f'point?crs=...
0 votes
0 answers
136 views
Paste layer and paste style not available in QGIS
Lately I've been encountering a problem with QGIS 3.28. After copying a layer in the table of contents and right clicking on empty space, I do not have the option to paste the layer. Similarly, ...
11 votes
1 answer
1k views
Copying & pasting multiple values from one feature to other features in the same layer in QGIS
I have added some features to my layer and want to copy-paste certain values from certain columns to the newly added features. Have a look at the image. The values of the feature at the bottom should ...
3 votes
1 answer
241 views
Activating two layers at the same time with PyQGIS
I want to copy-paste values from one feature in a layer to another feature in another layer, for this, I like to have both layers activated to be able to select features from both layers. Just as an ...
1 vote
0 answers
164 views
Paste features to new location in ArcGIS Pro
In ArcGIS Pro, when you paste an element from the clipboard, it will automatically appear at the same coordinates as the originally copied element. Is there a way to paste a feature at the coordinates ...
5 votes
1 answer
192 views
QgsCoordinateTransform causes crash in processing script
I want to perform a QgsCoordinateTransform on a QgsGeometry object and do some operations on this afterwards. I am doing this in a processing script and am getting the original QgsGeometry object from ...
0 votes
1 answer
314 views
Arcpy.CopyFeatures_management creates empty feature class
I am trying to iteratively copy selection layers to new feature classes. My script successfully creates the new feature classes, but they are empty. Can anyone point out what I'm doing wrong? arcpy....
7 votes
2 answers
759 views
Copying layer styles using PyQGIS
The following two commands copy and paste layer styles of manually selected layers. Manually as in clicking on the layers you want to copy from and to. iface.actionCopyLayerStyle().trigger() iface....
1 vote
1 answer
127 views
How to auto populate fields when copy/pasting objects QGIS (3.22.9)
I have a point layer with 3 columns (all strings) with values looking like this: name; C_No; F_No 123_SF_24; 123; 24 The values of the last two columns are supposed to be derived from different ...