forked from qgis/QGIS-Documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
substitutions.txt
1352 lines (1351 loc) · 53.4 KB
/
substitutions.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Substitutions below are sorted and should be in lowerCamelCase
# NOTE that for inline images (like button and menu icons inline in text) you HAVE TO make a substitution
.. |24To8Bits| image:: /static/common/24-to-8-bits.png
:width: 1.5em
.. |25dSymbol| image:: /static/common/renderer25dSymbol.png
:width: 1.5em
.. |336| replace:: ``NEW in 3.36``
.. |338| replace:: ``NEW in 3.38``
.. |340| replace:: ``NEW in 3.40``
.. |3d| image:: /static/common/3d.png
:width: 1.5em
.. |3dNavigation| image:: /static/common/mAction3DNavigation.png
:width: 1.3em
.. |8To24Bits| image:: /static/common/8-to-24-bits.png
:width: 1.5em
.. |CURRENT| replace:: 3.34
.. |QG| replace:: QGIS
.. |action| image:: /static/common/action.png
:width: 2em
.. |actionRun| image:: /static/common/mAction.png
:width: 1.5em
.. |actionText| image:: /static/common/mActionText.png
:width: 1.5em
.. |add| image:: /static/common/mActionAdd.png
:width: 1.5em
.. |add3DMap| image:: /static/common/mActionAdd3DMap.png
:width: 1.5em
.. |addAfsLayer| image:: /static/common/mActionAddAfsLayer.png
:width: 1.5em
.. |addAllToOverview| image:: /static/common/mActionAddAllToOverview.png
:width: 1.5em
.. |addArrow| image:: /static/common/mActionAddArrow.png
:width: 1.5em
.. |addBasicCircle| image:: /static/common/mActionAddBasicCircle.png
:width: 1.5em
.. |addBasicRectangle| image:: /static/common/mActionAddBasicRectangle.png
:width: 1.5em
.. |addBasicShape| image:: /static/common/mActionAddBasicShape.png
:width: 1.5em
.. |addBasicTriangle| image:: /static/common/mActionAddBasicTriangle.png
:width: 1.5em
.. |addDelimitedTextLayer| image:: /static/common/mActionAddDelimitedTextLayer.png
:width: 1.5em
.. |addExpression| image:: /static/common/mActionAddExpression.png
:width: 1.5em
.. |addGCPPoint| image:: /static/common/mActionAddGCPPoint.png
:width: 1.5em
.. |addGeometryAttributes| image:: /static/common/mAlgorithmAddGeometryAttributes.png
:width: 1.5em
.. |addGpsLayer| image:: /static/common/mActionAddGpsLayer.png
:width: 1.5em
.. |addGrid| image:: /static/common/add_grid.png
:width: 1.5em
.. |addGroup| image:: /static/common/mActionAddGroup.png
:width: 1.5em
.. |addHanaLayer| image:: /static/common/mActionAddHanaLayer.png
:width: 1.5em
.. |addHtml| image:: /static/common/mActionAddHtml.png
:width: 1.5em
.. |addImage| image:: /static/common/mActionAddImage.png
:width: 1.5em
.. |addLayer| image:: /static/common/mActionAddLayer.png
:width: 1.5em
.. |addLegend| image:: /static/common/mActionAddLegend.png
:width: 1.5em
.. |addManualTable| image:: /static/common/mActionAddManualTable.png
:width: 1.5em
.. |addMap| image:: /static/common/mActionAddMap.png
:width: 1.5em
.. |addMarker| image:: /static/common/mActionAddMarker.png
:width: 1.5em
.. |addMeshLayer| image:: /static/common/mActionAddMeshLayer.png
:width: 1.5em
.. |addMssqlLayer| image:: /static/common/mActionAddMssqlLayer.png
:width: 1.5em
.. |addNodesShape| image:: /static/common/mActionAddNodesShape.png
:width: 1.5em
.. |addOgrLayer| image:: /static/common/mActionAddOgrLayer.png
:width: 1.5em
.. |addOracleLayer| image:: /static/common/mActionAddOracleLayer.png
:width: 1.5em
.. |addPart| image:: /static/common/mActionAddPart.png
:width: 1.5em
.. |addPointCloudLayer| image:: /static/common/mActionAddPointCloudLayer.png
:width: 1.5em
.. |addPolygon| image:: /static/common/mActionAddPolygon.png
:width: 1.5em
.. |addPolyline| image:: /static/common/mActionAddPolyline.png
:width: 1.5em
.. |addPostgisLayer| image:: /static/common/mActionAddPostgisLayer.png
:width: 1.5em
.. |addRasterLayer| image:: /static/common/mActionAddRasterLayer.png
:width: 1.5em
.. |addRing| image:: /static/common/mActionAddRing.png
:width: 2em
.. |addSpatiaLiteLayer| image:: /static/common/mActionAddSpatiaLiteLayer.png
:width: 1.5em
.. |addTable| image:: /static/common/mActionAddTable.png
:width: 1.5em
.. |addTiledSceneLayer| image:: /static/common/mActionAddTiledSceneLayer.png
:width: 1.5em
.. |addToProject| image:: /static/common/mAddToProject.png
:width: 1.5em
.. |addTrackPoint| image:: /static/common/mActionAddTrackPoint.png
:width: 1.5em
.. |addVectorTileLayer| image:: /static/common/mActionAddVectorTileLayer.png
:width: 1.5em
.. |addVirtualLayer| image:: /static/common/mActionAddVirtualLayer.png
:width: 1.5em
.. |addWcsLayer| image:: /static/common/mActionAddWcsLayer.png
:width: 1.5em
.. |addWfsLayer| image:: /static/common/mActionAddWfsLayer.png
:width: 1.5em
.. |addWmsLayer| image:: /static/common/mActionAddWmsLayer.png
:width: 1.5em
.. |addXyzLayer| image:: /static/common/mActionAddXyzLayer.png
:width: 1.5em
.. |afs| image:: /static/common/mIconAfs.png
:width: 1.5em
.. |alignBottom| image:: /static/common/mActionAlignBottom.png
:width: 1.5em
.. |alignHCenter| image:: /static/common/mActionAlignHCenter.png
:width: 1.5em
.. |alignLeft| image:: /static/common/mActionAlignLeft.png
:width: 1.5em
.. |alignRight| image:: /static/common/mActionAlignRight.png
:width: 1.5em
.. |alignTop| image:: /static/common/mActionAlignTop.png
:width: 1.5em
.. |alignVCenter| image:: /static/common/mActionAlignVCenter.png
:width: 1.5em
.. |allEdits| image:: /static/common/mActionAllEdits.png
:width: 1.5em
.. |allowIntersections| image:: /static/common/mActionAllowIntersections.png
:width: 1.5em
.. |annotationLayer| image:: /static/common/mIconAnnotationLayer.png
:width: 1.5em
.. |arrowDown| image:: /static/common/mActionArrowDown.png
:width: 1.5em
.. |arrowLeft| image:: /static/common/mActionArrowLeft.png
:width: 1.2em
.. |arrowRight| image:: /static/common/mActionArrowRight.png
:width: 1.2em
.. |arrowUp| image:: /static/common/mActionArrowUp.png
:width: 1.5em
.. |atlas| image:: /static/common/mIconAtlas.png
:width: 1.5em
.. |atlasFirst| image:: /static/common/mActionAtlasFirst.png
:width: 1.5em
.. |atlasLast| image:: /static/common/mActionAtlasLast.png
:width: 1.5em
.. |atlasNext| image:: /static/common/mActionAtlasNext.png
:width: 1.5em
.. |atlasPrev| image:: /static/common/mActionAtlasPrev.png
:width: 1.5em
.. |atlasSettings| image:: /static/common/mActionAtlasSettings.png
:width: 1.5em
.. |autoPlacementSettings| image:: /static/common/mIconAutoPlacementSettings.png
:width: 1.5em
.. |auxiliaryStorage| image:: /static/common/mIconAuxiliaryStorage.png
:width: 1.5em
.. |avoidIntersectionsCurrentLayer| image:: /static/common/mActionAvoidIntersectionsCurrentLayer.png
:width: 1.5em
.. |avoidIntersectionsLayers| image:: /static/common/mActionAvoidIntersectionsLayers.png
:width: 1.5em
.. |basicStatistics| image:: /static/common/mAlgorithmBasicStatistics.png
:width: 1.5em
.. |browserCollapse| image:: /static/common/browser_collapse.png
:width: 1.5em
.. |browserExpand| image:: /static/common/browser_expand.png
:width: 1.5em
.. |buffer| image:: /static/common/mAlgorithmBuffer.png
:width: 1.5em
.. |cad| image:: /static/common/cad.png
:width: 1.5em
.. |cadConstruction| image:: /static/common/cad_construction.png
:width: 1.5em
.. |cadParallel| image:: /static/common/cad_parallel.png
:width: 1.5em
.. |cadPerpendicular| image:: /static/common/cad_perpendicular.png
:width: 1.5em
.. |calculateField| image:: /static/common/mActionCalculateField.png
:width: 1.5em
.. |camera| image:: /static/common/mIconCamera.png
:width: 1.5em
.. |cancelEdits| image:: /static/common/mActionCancelEdits.png
:width: 1.5em
.. |captureBoundary| image:: /static/common/mActionCaptureBoundary.png
:width: 1.5em
.. |captureCentroid| image:: /static/common/mActionCaptureCentroid.png
:width: 1.5em
.. |captureCurveFromFeature| image:: /static/common/mActionCaptureCurveFromFeature.png
:width: 1.5em
.. |captureLine| image:: /static/common/mActionCaptureLine.png
:width: 1.5em
.. |capturePoint| image:: /static/common/mActionCapturePoint.png
:width: 1.5em
.. |capturePolygon| image:: /static/common/mActionCapturePolygon.png
:width: 1.5em
.. |categorizedSymbol| image:: /static/common/rendererCategorizedSymbol.png
:width: 1.5em
.. |centroids| image:: /static/common/mAlgorithmCentroids.png
:width: 1.5em
.. |changeLabelProperties| image:: /static/common/mActionChangeLabelProperties.png
:width: 1.5em
.. |checkGeometry| image:: /static/common/mAlgorithmCheckGeometry.png
:width: 1.5em
.. |checkbox| image:: /static/common/checkbox.png
:width: 1.3em
.. |circle2Points| image:: /static/common/mActionCircle2Points.png
:width: 1.5em
.. |circle2TangentsPoint| image:: /static/common/mActionCircle2TangentsPoint.png
:width: 1.5em
.. |circle3Points| image:: /static/common/mActionCircle3Points.png
:width: 1.5em
.. |circle3Tangents| image:: /static/common/mActionCircle3Tangents.png
:width: 1.5em
.. |circleCenterPoint| image:: /static/common/mActionCircleCenterPoint.png
:width: 1.5em
.. |circularStringCurvePoint| image:: /static/common/mActionCircularStringCurvePoint.png
:width: 1.5em
.. |circularStringRadius| image:: /static/common/mActionCircularStringRadius.png
:width: 1.5em
.. |clearConsole| image:: /static/common/iconClearConsole.png
:width: 1.5em
.. |clearItem| image:: /static/common/mIconClearItem.png
:width: 1.5em
.. |clearText| image:: /static/common/mIconClearText.png
:width: 1.5em
.. |clip| image:: /static/common/mAlgorithmClip.png
:width: 1.5em
.. |codeEditor| image:: /static/common/mIconCodeEditor.png
:width: 1.5em
.. |collapseTree| image:: /static/common/mActionCollapseTree.png
:width: 1.5em
.. |collect| image:: /static/common/mAlgorithmCollect.png
:width: 1.5em
.. |color| image:: /static/common/color.png
.. |colorBox| image:: /static/common/mIconColorBox.png
:width: 1.5em
.. |colorPicker| image:: /static/common/mIconColorPicker.png
:width: 1.5em
.. |colorSwatches| image:: /static/common/mIconColorSwatches.png
:width: 1.5em
.. |colorWheel| image:: /static/common/mIconColorWheel.png
:width: 1.5em
.. |conditionalFormatting| image:: /static/common/mActionConditionalFormatting.png
:width: 1.5em
.. |contextHelp| image:: /static/common/mActionContextHelp.png
:width: 1.5em
.. |contour| image:: /static/common/contour.png
:width: 1.5em
.. |convexHull| image:: /static/common/mAlgorithmConvexHull.png
:width: 1.5em
.. |copyProfileSettings| image:: /static/common/mActionCopyProfileSettings.png
:width: 1.5em
.. |copySelected| image:: /static/common/mActionCopySelected.png
:width: 1.5em
.. |copyrightLabel| image:: /static/common/copyright_label.png
:width: 1.5em
.. |createAnnotationLayer| image:: /static/common/mActionCreateAnnotationLayer.png
:width: 1.5em
.. |createGrid| image:: /static/common/mAlgorithmCreateGrid.png
:width: 1.5em
.. |createMemory| image:: /static/common/mActionCreateMemory.png
:width: 1.5em
.. |crs| image:: /static/common/CRS.png
:width: 1.5em
.. |customProjection| image:: /static/common/mActionCustomProjection.png
:width: 1.5em
.. |dataDefine| image:: /static/common/mIconDataDefine.png
:width: 1.5em
.. |dataDefineError| image:: /static/common/mIconDataDefineError.png
:width: 1.5em
.. |dataDefineExpressionError| image:: /static/common/mIconDataDefineExpressionError.png
:width: 1.5em
.. |dataDefineExpressionOn| image:: /static/common/mIconDataDefineExpressionOn.png
:width: 1.5em
.. |dataDefineOn| image:: /static/common/mIconDataDefineOn.png
:width: 1.5em
.. |dataSourceManager| image:: /static/common/mActionDataSourceManager.png
:width: 1.5em
.. |dbManager| image:: /static/common/dbmanager.png
:width: 1.5em
.. |dbSchema| image:: /static/common/mIconDbSchema.png
:width: 1.5em
.. |degrees| unicode:: 0x00B0
:ltrim:
.. |delaunay| image:: /static/common/mAlgorithmDelaunay.png
:width: 1.5em
.. |deleteAttribute| image:: /static/common/mActionDeleteAttribute.png
:width: 1.5em
.. |deleteGCPPoint| image:: /static/common/mActionDeleteGCPPoint.png
:width: 1.5em
.. |deletePart| image:: /static/common/mActionDeletePart.png
:width: 2em
.. |deleteRing| image:: /static/common/mActionDeleteRing.png
:width: 2em
.. |deleteSelected| image:: /static/common/mActionDeleteSelected.png
:width: 1.5em
.. |deleteSelectedFeatures| image:: /static/common/mActionDeleteSelectedFeatures.png
:width: 1.5em
.. |delta| image:: /static/common/delta.png
:width: 1.5em
.. |dependencies| image:: /static/common/dependencies.png
:width: 1.5em
.. |deselectActiveLayer| image:: /static/common/mActionDeselectActiveLayer.png
:width: 1.5em
.. |deselectAll| image:: /static/common/mActionDeselectAll.png
:width: 1.5em
.. |diagram| image:: /static/common/diagram.png
:width: 2em
.. |diagramNone| image:: /static/common/diagramNone.png
:width: 1.5em
.. |difference| image:: /static/common/mAlgorithmDifference.png
:width: 1.5em
.. |digitizeShape| image:: /static/common/mActionDigitizeShape.png
:width: 1.5em
.. |digitizeWithCurve| image:: /static/common/mActionDigitizeWithCurve.png
:width: 1.5em
.. |digitizeWithSegment| image:: /static/common/mActionDigitizeWithSegment.png
:width: 1.5em
.. |digitizing| image:: /static/common/digitizing.png
:width: 1.5em
.. |display| image:: /static/common/display.png
:width: 1.5em
.. |dissolve| image:: /static/common/mAlgorithmDissolve.png
:width: 1.5em
.. |distanceMatrix| image:: /static/common/mAlgorithmDistanceMatrix.png
:width: 1.5em
.. |distributeBottom| image:: /static/common/mActionDistributeBottom.png
:width: 1.5em
.. |distributeHCenter| image:: /static/common/mActionDistributeHCenter.png
:width: 1.5em
.. |distributeHSpace| image:: /static/common/mActionDistributeHSpace.png
:width: 1.5em
.. |distributeLeft| image:: /static/common/mActionDistributeLeft.png
:width: 1.5em
.. |distributeRight| image:: /static/common/mActionDistributeRight.png
:width: 1.5em
.. |distributeTop| image:: /static/common/mActionDistributeTop.png
:width: 1.5em
.. |distributeVCenter| image:: /static/common/mActionDistributeVCenter.png
:width: 1.5em
.. |distributeVSpace| image:: /static/common/mActionDistributeVSpace.png
:width: 1.5em
.. |dock| image:: /static/common/dock.png
:width: 1.5em
.. |doubleSpinBox| image:: /static/common/doublespinbox.png
:width: 1.5em
.. |duplicateFeature| image:: /static/common/mActionDuplicateFeature.png
:width: 1.5em
.. |duplicateLayer| image:: /static/common/mActionDuplicateLayer.png
:width: 1.5em
.. |duplicateLayout| image:: /static/common/mActionDuplicateLayout.png
:width: 1.5em
.. |editCopy| image:: /static/common/mActionEditCopy.png
:width: 1.5em
.. |editCut| image:: /static/common/mActionEditCut.png
:width: 1.5em
.. |editHelpContent| image:: /static/common/mActionEditHelpContent.png
:width: 1.5em
.. |editMetadata| image:: /static/common/editmetadata.png
:width: 1.2em
.. |editNodesShape| image:: /static/common/mActionEditNodesShape.png
:width: 1.5em
.. |editPaste| image:: /static/common/mActionEditPaste.png
:width: 1.5em
.. |editTable| image:: /static/common/mActionEditTable.png
:width: 1.5em
.. |editableEdits| image:: /static/common/mIconEditableEdits.png
:width: 1em
.. |elevationProfile| image:: /static/common/mActionElevationProfile.png
:width: 1.5em
.. |elevationscale| image:: /static/common/elevationscale.png
:width: 1.5em
.. |ellipseCenter2Points| image:: /static/common/mActionEllipseCenter2Points.png
:width: 1.5em
.. |ellipseCenterPoint| image:: /static/common/mActionEllipseCenterPoint.png
:width: 1.5em
.. |ellipseExtent| image:: /static/common/mActionEllipseExtent.png
:width: 1.5em
.. |ellipseFoci| image:: /static/common/mActionEllipseFoci.png
:width: 1.5em
.. |expandNewTree| image:: /static/common/mActionExpandNewTree.png
:width: 1.5em
.. |expandTree| image:: /static/common/mActionExpandTree.png
:width: 1.5em
.. |exportGeometry| image:: /static/common/export_geometry.png
:width: 1.5em
.. |expression| image:: /static/common/mIconExpression.png
:width: 1.5em
.. |expressionFilter| image:: /static/common/mIconExpressionFilter.png
:width: 1.5em
.. |expressionSelect| image:: /static/common/mIconExpressionSelect.png
:width: 1.5em
.. |extents| image:: /static/common/extents.png
:width: 1.5em
.. |extractLayerExtent| image:: /static/common/mAlgorithmExtractLayerExtent.png
:width: 1.5em
.. |extractVertices| image:: /static/common/mAlgorithmExtractVertices.png
:width: 1.5em
.. |favourites| image:: /static/common/mIconFavourites.png
:width: 1.5em
.. |fieldFloat| image:: /static/common/mIconFieldFloat.png
:width: 1.5em
.. |fieldInteger| image:: /static/common/mIconFieldInteger.png
:width: 1.5em
.. |fieldText| image:: /static/common/mIconFieldText.png
:width: 1.5em
.. |fileExit| image:: /static/common/mActionFileExit.png
.. |fileNew| image:: /static/common/mActionFileNew.png
:width: 1.5em
.. |fileOpen| image:: /static/common/mActionFileOpen.png
:width: 1.5em
.. |filePrint| image:: /static/common/mActionFilePrint.png
:width: 1.5em
.. |fileSave| image:: /static/common/mActionFileSave.png
:width: 1.5em
.. |fileSaveAs| image:: /static/common/mActionFileSaveAs.png
:width: 1.5em
.. |fillRing| image:: /static/common/mActionFillRing.png
:width: 1.5em
.. |filterMap| image:: /static/common/mActionFilterMap.png
:width: 1.5em
.. |filterTableFields| image:: /static/common/mActionFilterTableFields.png
:width: 1.5em
.. |floater| image:: /static/common/floater.png
:width: 1.5em
.. |folder| image:: /static/common/mActionFolder.png
:width: 1.5em
.. |formAnnotation| image:: /static/common/mActionFormAnnotation.png
:width: 1.5em
.. |formSelect| image:: /static/common/mIconFormSelect.png
:width: 1.5em
.. |formView| image:: /static/common/mActionFormView.png
:width: 1.2em
.. |fromSelectedFeature| image:: /static/common/mActionFromSelectedFeature.png
:width: 1em
.. |fullHistogramStretch| image:: /static/common/mActionFullHistogramStretch.png
:width: 1.5em
.. |gdal| image:: /static/common/gdal.png
:width: 1.5em
.. |gdalDem| image:: /static/common/gdal_dem.png
:width: 1.5em
.. |gdalScript| image:: /static/common/mActionGDALScript.png
:width: 1.5em
.. |general| image:: /static/common/general.png
:width: 1.5em
.. |gentleLogo| image:: img/gentlelogo.png
:width: 3em
.. |geoPackage| image:: /static/common/mGeoPackage.png
:width: 1.5em
.. |geographic| image:: /static/common/geographic.png
.. |geometryChecker| image:: /static/common/geometrychecker.png
:width: 1.5em
.. |geoprocessing| image:: /static/common/geoprocessing.png
:width: 1.5em
.. |georefRun| image:: /static/common/mGeorefRun.png
:width: 1.5em
.. |githubBluePlus| image:: /static/common/githubBluePlus.png
:width: 1.5em
.. |githubBranch| image:: /static/common/githubBranch.png
:width: 8em
.. |githubCantMerge| image:: /static/common/githubCantMerge.png
:width: 12em
.. |githubEditPencil| image:: /static/common/githubEditPencil.png
:width: 2em
.. |githubFilesChanged| image:: /static/common/githubFilesChanged.png
:width: 8em
.. |githubFork| image:: /static/common/githubFork.png
:width: 4em
.. |githubSuggestions| image:: /static/common/githubSuggestions.png
:width: 1.5em
.. |gps| image:: /static/common/mIconGps.png
:width: 1.5em
.. |gpsConnect| image:: /static/common/mIconGpsConnect.png
:width: 1.5em
.. |gpsDestinationLayer| image:: /static/common/mIconGpsDestinationLayer.png
:width: 1.5em
.. |gpsDisconnect| image:: /static/common/mIconGpsDisconnect.png
:width: 1.5em
.. |gpsTrackBarChart| image:: /static/common/gpstrack_barchart.png
:width: 1.5em
.. |graduatedSymbol| image:: /static/common/rendererGraduatedSymbol.png
:width: 1.5em
.. |grassCloseMapset| image:: /static/common/grass_close_mapset.png
:width: 1.5em
.. |grassLogo| image:: /static/common/grasslogo.png
:width: 1.5em
.. |grassMapsetOpen| image:: /static/common/grass_mapset_open.png
:width: 1.5em
.. |grassNewMapset| image:: /static/common/grass_new_mapset.png
:width: 1.5em
.. |grassOpenMapset| image:: /static/common/grass_open_mapset.png
:width: 1.5em
.. |grassRegion| image:: /static/common/grass_region.png
:width: 1.5em
.. |grassTools| image:: /static/common/grass_tools.png
:width: 1.5em
.. |grid| image:: /static/common/grid.png
:width: 1.5em
.. |groupItems| image:: /static/common/mActionGroupItems.png
:width: 1.5em
.. |hSlider| image:: /static/common/hslider.png
:width: 1.5em
.. |hamburgerMenu| image:: /static/common/mIconHamburgerMenu.png
:width: 1.5em
.. |hana| image:: /static/common/mIconHana.png
:width: 1.5em
.. |handleStoreFilterExpressionChecked| image:: /static/common/mActionHandleStoreFilterExpressionChecked.png
:width: 1.5em
.. |handleStoreFilterExpressionUnchecked| image:: /static/common/mActionHandleStoreFilterExpressionUnchecked.png
:width: 1.5em
.. |heatmap| image:: /static/common/heatmap.png
:width: 1.5em
.. |heatmapSymbol| image:: /static/common/rendererHeatmapSymbol.png
:width: 1.5em
.. |helpContents| image:: /static/common/mActionHelpContents.png
:width: 1.5em
.. |helpSponsors| image:: /static/common/mActionHelpSponsors.png
:width: 1.5em
.. |hideAllLayers| image:: /static/common/mActionHideAllLayers.png
:width: 1.5em
.. |hideDeselectedLayers| image:: /static/common/mActionHideDeselectedLayers.png
:width: 1.5em
.. |hideSelectedLayers| image:: /static/common/mActionHideSelectedLayers.png
:width: 1.5em
.. |highlightFeature| image:: /static/common/mActionHighlightFeature.png
:width: 1.5em
.. |histogram| image:: /static/common/histogram.png
:width: 1.5em
.. |history| image:: /static/common/mActionHistory.png
:width: 1.5em
.. |htmlAnnotation| image:: /static/common/mActionHtmlAnnotation.png
:width: 1.5em
.. |iconView| image:: /static/common/mActionIconView.png
:width: 1.5em
.. |identify| image:: /static/common/mActionIdentify.png
:width: 1.5em
.. |identifyByFreehand| image:: /static/common/mActionIdentifyByFreehand.png
:width: 1.5em
.. |identifyByMouseOver| image:: /static/common/mActionIdentifyByMouseOver.png
:width: 1.5em
.. |identifyByPolygon| image:: /static/common/mActionIdentifyByPolygon.png
:width: 1.5em
.. |identifyByRadius| image:: /static/common/mActionIdentifyByRadius.png
:width: 1.5em
.. |identifyByRectangle| image:: /static/common/mActionIdentifyByRectangle.png
:width: 1.5em
.. |import| image:: /static/common/mIconImport.png
:width: 1.5em
.. |importGPX| image:: /static/common/import_gpx.png
:width: 1.5em
.. |inOverview| image:: /static/common/mActionInOverview.png
:width: 1.5em
.. |indicatorBadLayer| image:: /static/common/mIndicatorBadLayer.png
:width: 1.5em
.. |indicatorEmbedded| image:: /static/common/mIndicatorEmbedded.png
:width: 1.5em
.. |indicatorFilter| image:: /static/common/mIndicatorFilter.png
:width: 1.5em
.. |indicatorLayerError| image:: /static/common/mIndicatorLayerError.png
:width: 1.5em
.. |indicatorLowAccuracy| image:: /static/common/mIndicatorLowAccuracy.png
:width: 1.5em
.. |indicatorMemory| image:: /static/common/mIndicatorMemory.png
:width: 1.5em
.. |indicatorNoCRS| image:: /static/common/mIndicatorNoCRS.png
:width: 1.5em
.. |indicatorNonRemovable| image:: /static/common/mIndicatorNonRemovable.png
:width: 1.5em
.. |indicatorNotes| image:: /static/common/mIndicatorNotes.png
:width: 1.5em
.. |indicatorOffline| image:: /static/common/mIndicatorOffline.png
:width: 1.5em
.. |indicatorTemporal| image:: /static/common/mIndicatorTemporal.png
:width: 1.5em
.. |inputText| image:: /static/common/inputtext.png
.. |installPluginFromZip| image:: /static/common/mActionInstallPluginFromZip.png
:width: 1.5em
.. |interfaceCustomization| image:: /static/common/mActionInterfaceCustomization.png
:width: 1.5em
.. |intersect| image:: /static/common/mAlgorithmIntersect.png
:width: 1.5em
.. |invertSelection| image:: /static/common/mActionInvertSelection.png
:width: 1.5em
.. |invertedSymbol| image:: /static/common/rendererInvertedSymbol.png
:width: 1.5em
.. |iterate| image:: /static/common/mIconIterate.png
:width: 1.5em
.. |join| image:: /static/common/join.png
:width: 2em
.. |joinHasNotUpsertOnEdit| image:: /static/common/mIconJoinHasNotUpsertOnEdit.png
:width: 1.5em
.. |joinNotEditable| image:: /static/common/mIconJoinNotEditable.png
:width: 1.5em
.. |joinedLayerNotEditable| image:: /static/common/mIconJoinedLayerNotEditable.png
:width: 1.5em
.. |kde| image:: /static/common/kde.png
:width: 1.5em
.. |keyboardShortcuts| image:: /static/common/mActionKeyboardShortcuts.png
:width: 1.5em
.. |label| image:: /static/common/mActionLabel.png
:width: 1.5em
.. |labelAnchorCenter| image:: /static/common/mActionLabelAnchorCenter.png
:width: 1.5em
.. |labelAnchorCustom| image:: /static/common/mActionLabelAnchorCustom.png
:width: 1.5em
.. |labelAnchorEnd| image:: /static/common/mActionLabelAnchorEnd.png
:width: 1.5em
.. |labelAnchorStart| image:: /static/common/mActionLabelAnchorStart.png
:width: 1.5em
.. |labelbackground| image:: /static/common/labelbackground.png
:width: 1.5em
.. |labelbuffer| image:: /static/common/labelbuffer.png
:width: 1.5em
.. |labelcallout| image:: /static/common/labelcallout.png
:width: 1.5em
.. |labelformatting| image:: /static/common/labelformatting.png
:width: 1.5em
.. |labelingNone| image:: /static/common/labelingNone.png
:width: 1.5em
.. |labelingObstacle| image:: /static/common/labelingObstacle.png
:width: 1.5em
.. |labelingRuleBased| image:: /static/common/labelingRuleBased.png
:width: 1.5em
.. |labelingSingle| image:: /static/common/labelingSingle.png
:width: 1.5em
.. |labelmask| image:: /static/common/labelmask.png
:width: 1.5em
.. |labelplacement| image:: /static/common/labelplacement.png
:width: 1.5em
.. |labelshadow| image:: /static/common/labelshadow.png
:width: 1.5em
.. |largeLandUseArea| replace:: Bontebok National Park
.. |layoutItem3DMap| image:: /static/common/mLayoutItem3DMap.png
:width: 1.5em
.. |layoutManager| image:: /static/common/mActionLayoutManager.png
:width: 1.5em
.. |layerTree| image:: /static/common/mIconLayerTree.png
:width: 1.5em
.. |legend| image:: /static/common/legend.png
:width: 1.2em
.. |lerato| image:: img/lerato_nsibande.png
.. |lineIntersections| image:: /static/common/mAlgorithmLineIntersections.png
:width: 1.5em
.. |lineLayer| image:: /static/common/mIconLineLayer.png
:width: 1.5em
.. |lineToPolygon| image:: /static/common/mAlgorithmLineToPolygon.png
:width: 1.5em
.. |linguist_done_next| image:: img/linguist_done_next.png
:width: 2em
.. |linguist_next| image:: img/linguist_next.png
:width: 2em
.. |linguist_next_todo| image:: img/linguist_next_todo.png
:width: 2em
.. |linguist_previous| image:: img/linguist_previous.png
:width: 2em
.. |linguist_previous_todo| image:: img/linguist_previous_todo.png
:width: 2em
.. |link| image:: /static/common/mActionLink.png
:width: 1.5em
.. |linkGeorefToQGis| image:: /static/common/mActionLinkGeorefToQGis.png
:width: 2.5em
.. |linkQGisToGeoref| image:: /static/common/mActionLinkQGisToGeoref.png
:width: 2.5em
.. |loadGCPpoints| image:: /static/common/mActionLoadGCPpoints.png
:width: 1.5em
.. |localCRS| replace:: ``WGS 84 / UTM 34S``
.. |localHistogramStretch| image:: /static/common/mActionLocalHistogramStretch.png
:width: 1.5em
.. |lockItems| image:: /static/common/mActionLockItems.png
:width: 1.5em
.. |lockRepeating| image:: /static/common/lock_repeating.png
:width: 1.5em
.. |locked| image:: /static/common/locked.png
:width: 1.5em
.. |lockedGray| image:: /static/common/lockedGray.png
:width: 1.2em
.. |logo| image:: /static/common/logo.png
:width: 1.5em
.. |lowerItems| image:: /static/common/mActionLowerItems.png
:width: 1.5em
.. |majorUrbanName| replace:: Swellendam
.. |makepermanent| image:: /static/common/mIndicatorMemory.png
:width: 1.5em
.. |mapIdentification| image:: /static/common/mActionMapIdentification.png
:width: 1.5em
.. |mapTips| image:: /static/common/mActionMapTips.png
:width: 1.5em
.. |marcelle| image:: img/marcelle_sutton.png
.. |meanCoordinates| image:: /static/common/mAlgorithmMeanCoordinates.png
:width: 1.5em
.. |measure| image:: /static/common/mActionMeasure.png
:width: 1.5em
.. |measureAngle| image:: /static/common/mActionMeasureAngle.png
:width: 1.5em
.. |measureArea| image:: /static/common/mActionMeasureArea.png
:width: 1.5em
.. |measureBearing| image:: /static/common/mActionMeasureBearing.png
:width: 1.5em
.. |menu| image:: /static/common/menu.png
:width: 1.5em
.. |equalCount| image:: /static/common/mClassificationEqualCount.png
:width: 1.5em
.. |merge| image:: /static/common/merge.png
:width: 1.5em
.. |mergeFeatureAttributes| image:: /static/common/mActionMergeFeatureAttributes.png
:width: 1.5em
.. |mergeFeatures| image:: /static/common/mActionMergeFeatures.png
:width: 1.5em
.. |mergeLayers| image:: /static/common/mAlgorithmMergeLayers.png
:width: 1.5em
.. |mergedFeatures| image:: /static/common/rendererMergedFeatures.png
:width: 1.5em
.. |meshDigitizing| image:: /static/common/mActionMeshDigitizing.png
:width: 1.5em
.. |meshEditForceByVectorLines| image:: /static/common/mActionMeshEditForceByVectorLines.png
:width: 1.5em
.. |meshReindex| image:: /static/common/mActionMeshReindex.png
:width: 1.5em
.. |meshSelectExpression| image:: /static/common/mActionMeshSelectExpression.png
:width: 1.5em
.. |meshSelectPolygon| image:: /static/common/mActionMeshSelectPolygon.png
:width: 1.5em
.. |meshTransformByExpression| image:: /static/common/mActionMeshTransformByExpression.png
:width: 1.5em
.. |meshaveraging| image:: /static/common/meshaveraging.png
:width: 1.5em
.. |meshcontours| image:: /static/common/meshcontours.png
:width: 1.5em
.. |meshcontoursoff| image:: /static/common/meshcontoursoff.png
:width: 1.5em
.. |meshframe| image:: /static/common/meshframe.png
:width: 1.5em
.. |meshvectors| image:: /static/common/meshvectors.png
:width: 1.5em
.. |meshvectorsoff| image:: /static/common/meshvectorsoff.png
:width: 1.5em
.. |messageLog| image:: /static/common/mMessageLog.png
:width: 1.5em
.. |metadata| image:: /static/common/metadata.png
:width: 1.5em
.. |metasearch| image:: /static/common/MetaSearch.png
:width: 1.5em
.. |modelOutput| image:: /static/common/mIconModelOutput.png
:width: 1.5em
.. |moveFeature| image:: /static/common/mActionMoveFeature.png
:width: 1.5em
.. |moveFeatureCopy| image:: /static/common/mActionMoveFeatureCopy.png
:width: 1.5em
.. |moveFeatureCopyLine| image:: /static/common/mActionMoveFeatureCopyLine.png
:width: 1.5em
.. |moveFeatureCopyPoint| image:: /static/common/mActionMoveFeatureCopyPoint.png
:width: 1.5em
.. |moveFeatureLine| image:: /static/common/mActionMoveFeatureLine.png
:width: 1.5em
.. |moveFeaturePoint| image:: /static/common/mActionMoveFeaturePoint.png
:width: 1.5em
.. |moveGCPPoint| image:: /static/common/mActionMoveGCPPoint.png
:width: 1.5em
.. |moveItemContent| image:: /static/common/mActionMoveItemContent.png
:width: 1.5em
.. |moveItemsToBottom| image:: /static/common/mActionMoveItemsToBottom.png
:width: 1.5em
.. |moveItemsToTop| image:: /static/common/mActionMoveItemsToTop.png
:width: 1.5em
.. |moveLabel| image:: /static/common/mActionMoveLabel.png
:width: 1.5em
.. |mssql| image:: /static/common/mIconMssql.png
:width: 1.5em
.. |multiEdit| image:: /static/common/mActionMultiEdit.png
:width: 1.5em
.. |multiEditChangedValues| image:: /static/common/multieditChangedValues.png
:width: 1.5em
.. |multiEditMixedValues| image:: /static/common/multieditMixedValues.png
:width: 1.5em
.. |multiEditSameValues| image:: /static/common/multieditSameValues.png
:width: 1.5em
.. |multiToSingle| image:: /static/common/mAlgorithmMultiToSingle.png
:width: 1.5em
.. |multibandColor| image:: /static/common/multibandColor.png
:width: 1.5em
.. |nearblack| image:: /static/common/nearblack.png
:width: 1.5em
.. |nearestNeighbour| image:: /static/common/mAlgorithmNearestNeighbour.png
:width: 1.5em
.. |networkAndProxy| image:: /static/common/network_and_proxy.png
:width: 1.5em
.. |new3DMap| image:: /static/common/mActionNew3DMap.png
:width: 1.5em
.. |newAttribute| image:: /static/common/mActionNewAttribute.png
:width: 1.5em
.. |newBookmark| image:: /static/common/mActionNewBookmark.png
:width: 1.5em
.. |newElevationProfile| image:: /static/common/mActionNewElevationProfile.png
:width: 1.5em
.. |newGeoPackageLayer| image:: /static/common/mActionNewGeoPackageLayer.png
:width: 1.5em
.. |newGpx| image:: /static/common/mActionNewGpx.png
:width: 1.5em
.. |newLayout| image:: /static/common/mActionNewLayout.png
:width: 1.5em
.. |newMap| image:: /static/common/mActionNewMap.png
:width: 1.5em
.. |newMeshLayer| image:: /static/common/mActionNewMeshLayer.png
:width: 1.5em
.. |newPage| image:: /static/common/mActionNewPage.png
:width: 1.5em
.. |newReport| image:: /static/common/mActionNewReport.png
:width: 1.5em
.. |newSpatiaLiteLayer| image:: /static/common/mActionNewSpatiaLiteLayer.png
:width: 1.5em
.. |newTableRow| image:: /static/common/mActionNewTableRow.png
:width: 1.5em
.. |newVectorLayer| image:: /static/common/mActionNewVectorLayer.png
:width: 1.5em
.. |newVirtualLayer| image:: /static/common/mActionNewVirtualLayer.png
:width: 1.5em
.. |nix| image:: /static/common/nix.png
:width: 1em
.. |northArrow| image:: /static/common/north_arrow.png
:width: 1.5em
.. |nullSymbol| image:: /static/common/rendererNullSymbol.png
:width: 1.5em
.. |offlineEditingCopy| image:: /static/common/offline_editing_copy.png
:width: 1.5em
.. |offlineEditingSync| image:: /static/common/offline_editing_sync.png
:width: 1.5em
.. |offsetCurve| image:: /static/common/mActionOffsetCurve.png
:width: 1.5em
.. |offsetPointSymbols| image:: /static/common/mActionOffsetPointSymbols.png
:width: 1.5em
.. |openTable| image:: /static/common/mActionOpenTable.png
:width: 1.5em
.. |openTableEdited| image:: /static/common/mActionOpenTableEdited.png
:width: 1.5em
.. |openTableInvalid| image:: /static/common/mActionOpenTableInvalid.png
:width: 1.5em
.. |openTableSelected| image:: /static/common/mActionOpenTableSelected.png
:width: 1.5em
.. |openTableVisible| image:: /static/common/mActionOpenTableVisible.png
:width: 1.5em
.. |options| image:: /static/common/mActionOptions.png
:width: 1em
.. |oracle| image:: /static/common/mIconOracle.png
:width: 1.5em
.. |osx| image:: /static/common/osx.png
:width: 1em
.. |otb| image:: /static/common/otb.png
:width: 1.5em
.. |otto| image:: img/otto_dassau.png
.. |overlay| image:: /static/common/overlay.png
:width: 1.5em
.. |paintEffects| image:: /static/common/mIconPaintEffects.png
:width: 1.5em
.. |paletted| image:: /static/common/paletted.png
:width: 1.5em
.. |pan| image:: /static/common/mActionPan.png
:width: 1.5em
.. |panTo| image:: /static/common/mActionPanTo.png
:width: 1.5em
.. |panToSelected| image:: /static/common/mActionPanToSelected.png
:width: 1.5em
.. |pencil| image:: /static/common/pencil.png
:width: 1.5em
.. |piechart| image:: /static/common/pie-chart.png
:width: 1.5em
.. |pinLabels| image:: /static/common/mActionPinLabels.png
:width: 1.5em
.. |play| image:: /static/common/mActionPlay.png
:width: 1.5em
.. |plugin| image:: /static/common/plugin.png
:width: 1.5em
.. |plugin-new| image:: /static/common/plugin-new.png
:width: 1.5em
.. |plugin-upgrade| image:: /static/common/plugin-upgrade.png
:width: 1.5em
.. |pluginIncompatible| image:: /static/common/plugin-incompatible.png
:width: 1.5em
.. |pluginInstalled| image:: /static/common/plugin-installed.png
:width: 1.5em
.. |pluginNew| image:: /static/common/pluginNew.png
:width: 1.5em
.. |pluginUpgrade| image:: /static/common/pluginUpgrade.png
:width: 1.5em
.. |pointCloudExtent| image:: /static/common/pointCloudExtent.png
:width: 1.5em
.. |pointCloudLayer| image:: /static/common/mIconPointCloudLayer.png
:width: 1.5em
.. |pointClusterSymbol| image:: /static/common/rendererPointClusterSymbol.png
:width: 1.5em
.. |pointDisplacementSymbol| image:: /static/common/rendererPointDisplacementSymbol.png
:width: 1.5em
.. |pointLayer| image:: /static/common/mIconPointLayer.png
:width: 1.5em
.. |polygonLayer| image:: /static/common/mIconPolygonLayer.png
:width: 1.5em
.. |polygonToLine| image:: /static/common/mAlgorithmPolygonToLine.png
:width: 1.5em
.. |polygonize| image:: /static/common/polygonize.png
:width: 1.5em
.. |postgis| image:: /static/common/mIconPostgis.png
:width: 1.5em
.. |processSelected| image:: /static/common/mActionProcessSelected.png
:width: 1.5em
.. |processingAlgorithm| image:: /static/common/processingAlgorithm.png
:width: 1.5em
.. |processingHistory| image:: /static/common/history.png
:width: 1.5em
.. |processingModel| image:: /static/common/processingModel.png
:width: 1.5em
.. |processingResult| image:: /static/common/processingResult.png
:width: 1.5em
.. |projectProperties| image:: /static/common/mActionProjectProperties.png
:width: 1.5em
.. |projectionAdd| image:: /static/common/projection-add.png
:width: 1.5em
.. |projectionDisabled| image:: /static/common/mIconProjectionDisabled.png
:width: 1.5em
.. |projectionEnabled| image:: /static/common/mIconProjectionEnabled.png
:width: 1.5em
.. |projectionExport| image:: /static/common/projection-export.png
:width: 1.5em
.. |properties| image:: /static/common/mIconProperties.png
:width: 1.3em
.. |providerGdal| image:: /static/common/providerGdal.png
:width: 1.5em
.. |proximity| image:: /static/common/proximity.png
:width: 1.5em
.. |pyramids| image:: /static/common/pyramids.png
:width: 1.5em
.. |pythonFile| image:: /static/common/mIconPythonFile.png
:width: 1.5em
.. |qgisHomePage| image:: /static/common/mActionQgisHomePage.png
:width: 1.5em
.. |qgsProjectFile| image:: /static/common/mIconQgsProjectFile.png
:width: 1.5em
.. |radioButtonOff| image:: /static/common/radiobuttonoff.png
:width: 1.5em
.. |radioButtonOn| image:: /static/common/radiobuttonon.png
:width: 1.5em
.. |raiseItems| image:: /static/common/mActionRaiseItems.png
:width: 1.5em
.. |randomPointsInPolygons| image:: /static/common/mAlgorithmRandomPointsInPolygons.png
:width: 1.5em
.. |randomPointsOnLines| image:: /static/common/mAlgorithmRandomPointsOnLines.png
:width: 1.5em
.. |randomPointsWithinExtent| image:: /static/common/mAlgorithmRandomPointsWithinExtent.png
:width: 1.5em
.. |randomPointsWithinPolygon| image:: /static/common/mAlgorithmRandomPointsWithinPolygon.png
:width: 1.5em
.. |raster| image:: /static/common/mIconRaster.png
:width: 1.5em
.. |rasterClip| image:: /static/common/raster-clip.png
:width: 1.5em
.. |rasterGroup| image:: /static/common/mIconRasterGroup.png
:width: 1.5em
.. |rasterHistogram| image:: /static/common/rasterHistogram.png
:width: 1.5em
.. |rasterInfo| image:: /static/common/raster-info.png
:width: 1.5em
.. |rasterLayer| image:: /static/common/mIconRasterLayer.png
:width: 1.5em
.. |rasterLink| image:: /static/common/mIconRasterLink.png
:width: 1.5em
.. |rasterOverview| image:: /static/common/raster-overview.png
:width: 1.5em
.. |rasterize| image:: /static/common/rasterize.png
:width: 1.5em
.. |recenter| image:: /static/common/mActionRecenter.png
:width: 1.5em
.. |record| image:: /static/common/mActionRecord.png
:width: 1.5em
.. |rectangle3PointsDistance| image:: /static/common/mActionRectangle3PointsDistance.png
:width: 1.5em
.. |rectangle3PointsProjected| image:: /static/common/mActionRectangle3PointsProjected.png
:width: 1.5em
.. |rectangleCenter| image:: /static/common/mActionRectangleCenter.png
:width: 1.5em
.. |rectangleExtent| image:: /static/common/mActionRectangleExtent.png
:width: 1.5em
.. |redo| image:: /static/common/mActionRedo.png
:width: 1.5em
.. |refresh| image:: /static/common/mActionRefresh.png
:width: 1.5em
.. |regularPoints| image:: /static/common/mAlgorithmRegularPoints.png
:width: 1.5em
.. |regularPolygon2Points| image:: /static/common/mActionRegularPolygon2Points.png
:width: 1.5em
.. |regularPolygonCenterCorner| image:: /static/common/mActionRegularPolygonCenterCorner.png
:width: 1.5em
.. |regularPolygonCenterPoint| image:: /static/common/mActionRegularPolygonCenterPoint.png
:width: 1.5em
.. |relations| image:: /static/common/relations.png
:width: 1.5em
.. |remove| image:: /static/common/mActionRemove.png
:width: 1.5em