QGIS 3 : how to set the QGIS 3 to “show the feature count” all time when a layer is loaded? 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?QGIS 3 startup script is not executedRemove all default values on multiple feature classesHow to create a QgsFeature with default attributes?PostGIS table shows twice in QGIS Browser panelQGIS - Add layer that is Editable and with Add Polygon Feature selectedWhy does a single feature's label not show?Project CRS not being respected by QGISHow to make a database query layer editable in QGISHow to set a default attribute value based on the feature being createdHow to get features of another point layer when geomequals ? (Using Default Values in Attributes Form Qgis 3.2.1)Is it possible to default an output directory for R Scripts in QGIS 3.4.4?
Is there a concise way to say "all of the X, one of each"?
Did Kevin spill real chili?
Can Pao de Queijo, and similar foods, be kosher for Passover?
How much radiation do nuclear physics experiments expose researchers to nowadays?
Why did the IBM 650 use bi-quinary?
What LEGO pieces have "real-world" functionality?
Is 1 ppb equal to 1 μg/kg?
What are the pros and cons of Aerospike nosecones?
What is the longest distance a 13th-level monk can jump while attacking on the same turn?
Java 8 stream max() function argument type Comparator vs Comparable
Gastric acid as a weapon
Right-skewed distribution with mean equals to mode?
Why is "Consequences inflicted." not a sentence?
Bonus calculation: Am I making a mountain out of a molehill?
How to assign captions for two tables in LaTeX?
Does surprise arrest existing movement?
Is there a documented rationale why the House Ways and Means chairman can demand tax info?
What happens to sewage if there is no river near by?
How to recreate this effect in Photoshop?
When -s is used with third person singular. What's its use in this context?
Do you forfeit tax refunds/credits if you aren't required to and don't file by April 15?
Do I really need recursive chmod to restrict access to a folder?
If Jon Snow became King of the Seven Kingdoms what would his regnal number be?
Does the Giant Rocktopus have a Swim Speed?
QGIS 3 : how to set the QGIS 3 to “show the feature count” all time when a layer is loaded?
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?QGIS 3 startup script is not executedRemove all default values on multiple feature classesHow to create a QgsFeature with default attributes?PostGIS table shows twice in QGIS Browser panelQGIS - Add layer that is Editable and with Add Polygon Feature selectedWhy does a single feature's label not show?Project CRS not being respected by QGISHow to make a database query layer editable in QGISHow to set a default attribute value based on the feature being createdHow to get features of another point layer when geomequals ? (Using Default Values in Attributes Form Qgis 3.2.1)Is it possible to default an output directory for R Scripts in QGIS 3.4.4?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I know that i can right click the layer and check the "show feature" option but is it possible to show enable this function by default when any layer is loaded ?
I know that we can set the project. I am looking for option to show it all time. a plugin for it will do.
qgis-3 default-value
add a comment |
I know that i can right click the layer and check the "show feature" option but is it possible to show enable this function by default when any layer is loaded ?
I know that we can set the project. I am looking for option to show it all time. a plugin for it will do.
qgis-3 default-value
add a comment |
I know that i can right click the layer and check the "show feature" option but is it possible to show enable this function by default when any layer is loaded ?
I know that we can set the project. I am looking for option to show it all time. a plugin for it will do.
qgis-3 default-value
I know that i can right click the layer and check the "show feature" option but is it possible to show enable this function by default when any layer is loaded ?
I know that we can set the project. I am looking for option to show it all time. a plugin for it will do.
qgis-3 default-value
qgis-3 default-value
asked Apr 9 at 4:31
Abhijit GujarAbhijit Gujar
1,2001332
1,2001332
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You can use the following code in the Python Console, script or plugin which sets the featureCount
setting to be enabled for any loaded vector layer:
def showFeatureCount(layers):
layer = layers[0]
if layer.type() == QgsMapLayer.VectorLayer:
root = QgsProject.instance().layerTreeRoot()
myLayerNode = root.findLayer(layer.id())
myLayerNode.setCustomProperty("showFeatureCount", True)
QgsProject.instance().legendLayersAdded.connect(showFeatureCount)
Edit:
If you want this to work from startup, you can use a startup script (or a plugin) and use the code shown above in addition to importing the following modules:
from qgis.core import QgsMapLayer, QgsProject
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%2f318190%2fqgis-3-how-to-set-the-qgis-3-to-show-the-feature-count-all-time-when-a-layer%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 use the following code in the Python Console, script or plugin which sets the featureCount
setting to be enabled for any loaded vector layer:
def showFeatureCount(layers):
layer = layers[0]
if layer.type() == QgsMapLayer.VectorLayer:
root = QgsProject.instance().layerTreeRoot()
myLayerNode = root.findLayer(layer.id())
myLayerNode.setCustomProperty("showFeatureCount", True)
QgsProject.instance().legendLayersAdded.connect(showFeatureCount)
Edit:
If you want this to work from startup, you can use a startup script (or a plugin) and use the code shown above in addition to importing the following modules:
from qgis.core import QgsMapLayer, QgsProject
add a comment |
You can use the following code in the Python Console, script or plugin which sets the featureCount
setting to be enabled for any loaded vector layer:
def showFeatureCount(layers):
layer = layers[0]
if layer.type() == QgsMapLayer.VectorLayer:
root = QgsProject.instance().layerTreeRoot()
myLayerNode = root.findLayer(layer.id())
myLayerNode.setCustomProperty("showFeatureCount", True)
QgsProject.instance().legendLayersAdded.connect(showFeatureCount)
Edit:
If you want this to work from startup, you can use a startup script (or a plugin) and use the code shown above in addition to importing the following modules:
from qgis.core import QgsMapLayer, QgsProject
add a comment |
You can use the following code in the Python Console, script or plugin which sets the featureCount
setting to be enabled for any loaded vector layer:
def showFeatureCount(layers):
layer = layers[0]
if layer.type() == QgsMapLayer.VectorLayer:
root = QgsProject.instance().layerTreeRoot()
myLayerNode = root.findLayer(layer.id())
myLayerNode.setCustomProperty("showFeatureCount", True)
QgsProject.instance().legendLayersAdded.connect(showFeatureCount)
Edit:
If you want this to work from startup, you can use a startup script (or a plugin) and use the code shown above in addition to importing the following modules:
from qgis.core import QgsMapLayer, QgsProject
You can use the following code in the Python Console, script or plugin which sets the featureCount
setting to be enabled for any loaded vector layer:
def showFeatureCount(layers):
layer = layers[0]
if layer.type() == QgsMapLayer.VectorLayer:
root = QgsProject.instance().layerTreeRoot()
myLayerNode = root.findLayer(layer.id())
myLayerNode.setCustomProperty("showFeatureCount", True)
QgsProject.instance().legendLayersAdded.connect(showFeatureCount)
Edit:
If you want this to work from startup, you can use a startup script (or a plugin) and use the code shown above in addition to importing the following modules:
from qgis.core import QgsMapLayer, QgsProject
edited Apr 11 at 11:07
answered Apr 9 at 10:36
JosephJoseph
58.9k7102207
58.9k7102207
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%2f318190%2fqgis-3-how-to-set-the-qgis-3-to-show-the-feature-count-all-time-when-a-layer%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