POST
|
Edit- There's another thread (https://community.esri.com/thread/257602-export-layout-to-pdf-that-includes-tif-logo-fails-in-pro-26 which indicates that having a tiff image included in a layout will cause the export to fail. This is what was causing mine, removing the tiff file solved it or using the 'Print' button worked too.
... View more
07-30-2020
05:44 PM
|
2
|
1
|
6306
|
POST
|
Yes, I can confirm that having tiff files present in a layout causes the Share/Export to PDF workflow to fail. As a work around, using the 'Print' option and setting the 'printer' to Adobe PDF exports successfully.
... View more
07-30-2020
05:12 PM
|
1
|
2
|
2954
|
POST
|
For what it's worth, I am getting the same issues however: Exporting a layout newly created within Pro 2.6 using Share>Export layout (either from ribbon or catalog view) does work Exporting a imported layout using either ribbon or catalog view does NOT work. These layout files (.pagx) have been created in previous versions of pro, but have been re-saved from their master project using 2.6 Exporting a map, associated with the imported layout above does work Exporting anything using 'Print' does work. So, I suspect it's something to do with both the Export function and issues within projects created in previous versions of pro, even if they have subsequently been opened and saved in v2.6.
... View more
07-30-2020
05:04 PM
|
1
|
0
|
6306
|
IDEA
|
There is a method in arcpy to import a layout into a ArcPro document (aprx.importDocument('path to pagx'). This imports it into the project but does not show the layout by default so a user may not know that the layout had been added (i.e. it requires use of the Catalog view in the UI to navigate to that layout and then view it/open it). There are also other project items which it would be useful to have arcpy control over their visibility status in the main stage (i.e. maps, scenes) Please add a property on maps, layouts, scenes etc to control their visibility. i.e. aprx = arcpy.mp.ArcGISProject("Current") aprx.importDocument("path to pagx file") layout = aprx.listLayouts('pagx layout I just imported")[0] layout.visible = True # This will show the layout in the main stage layout.visible = False # This will remove the layout from the main stage, but still keep it in the project.
... View more
03-16-2020
07:53 PM
|
3
|
10
|
3960
|
POST
|
I've just updated a script from ArcGIS Desktop for use in ArcPro and am getting differences in results. Using arcpy.PointGeometry([pointObject]).buffer([distance]) in ArcGIS Desktop gives a buffered circle with vertices spaced around 50 meters apart (~ 380 vertices in total) Using the same code and inputs in ArcGIS Pro gives a buffered circle with vertices spaced around 500m apart (around 35 vertices in total) which gives unexpected results since the script relies on a precise comparison of geometry. Doing a quick test and hard coding a distance (i.e. 1000.0001) still results in the same 35 vertices. Setting the buffer distance to 100000.001 still results in the same 35 vertices?! Can anyone/ESRI let me know what has changed which would cause this? Why are the number of vertices so low and/or not increase with the relative scale of the circle? Note: Environment settings are the same between arcmap and pro.
... View more
12-23-2019
02:47 PM
|
0
|
0
|
323
|
POST
|
There is a method (importDocument('path to pagx') to import a layout into a document. This imports it into the project but does not show the layout by default so a user may not know that the layout had been added (i.e. it requires use of the Catalog view in the UI to navigate to that layout and then view it). Is there any method available to make a layout visible? Having access to this function would allow scripts to both open a layout (if not currently open in the main stage) and focus on a layout (if open as one of many tabs within the main stage). i.e. aprx = arcpy.mp.ArcGISProject("Current") aprx.importDocument("path to pagx file") layout = aprx.listLayouts('pagx layout I just imported")[0] layout.visible = True
... View more
12-22-2019
01:38 PM
|
0
|
1
|
784
|
POST
|
I'm also needing to do this. What's needed is a method to make a copy of a existing layout/ 'save as' is required to make the most of automated map production. For example, I have a tool which takes an input layout in a project and updates it (i.e. the extent, layout text elements etc). This is considered the 'parent' map. There may be multiple 'children' of that 'parent' and I want the second tool to save a copy of the 'parent' layout (including any information that has been added in the first tool), then manipulate it and save it/add it to the current project. So, something like a for layout in aprx.listLayouts("Layout Parent")[0]:
layout.saveAs('pathtoChild1.pagx', "Updated Layout name")
... View more
10-29-2019
08:50 PM
|
0
|
0
|
1286
|
POST
|
I have a similar question, but related to simple text formatting. For example, the Dynamic text item for a map center, when given the unit value 'mgrs' and round of 0 returns '60HXD' (i.e. the UTM zone and grid square) as its smallest value. I want to take that value and just display, for example, the first 3 characters (i.e. 60H) or the last 2 (i.e. XD). It doesn't appear that you can assign the value of a dynamic string and then modify it?
... View more
10-22-2019
02:18 PM
|
0
|
0
|
650
|
POST
|
Hi all, I'm creating a series of maps covering areas around the Pacific islands, using ArcPro 2.3.0, and am having problems with the Lat/Long graticule/grid wrapping around the 180 ° line. When I insert a grid it only seems to run from -180° to +180° making mapping quite difficult as many countries straddle or are near to the 180° line. With the coordinate systems there's a tick box to wrap the map around the 180° line is there a simple way or a tried and true method to do the same thing with grids/graticules? I'm hoping someone has experienced this. thanks in advance for your help.
... View more
05-20-2019
01:48 PM
|
0
|
1
|
853
|
POST
|
I believe this is a bug. I'm using Pro 2.2.0 and exporting a map (not layout) to a TIFF,JPEG, BMP, PDF etc results in a square output even though the display/screen is landscape; the extent is zoomed and centered rather than simply being clipped to either the X or Y extent; brightness/contrast/gamma of raster layers isn't maintained and is set to default values. So....lots is wrong there and it's pretty basic functionality.
... View more
01-21-2019
12:50 PM
|
0
|
0
|
3959
|
POST
|
I think this is a bug- Exporting a map (not a layout) does not honour the current view extents. Most people use landscape sized screens but all exports are square. Not only that but NONE of the extents are based off the screen view (i.e. it doesn't even create a square image based off the smallest or largest screen extent).
... View more
01-21-2019
12:37 PM
|
0
|
1
|
2123
|
IDEA
|
When working with complex 3D symbology (i.e. multipatch 3D models), ArcPro attempts to render that model/symbol at all times which makes it very time consuming/almost impossible to scale/move/rotate. Each click results in a very large delay for complex models (in my case, over a minute for the screen to become responsive again after each manipulation or select). It would be good if there was an option to only show the bounding box of the symbol when modifying multipatch features (with each side of the model coloured according to axes/normals to allow easy orientation) so that the models position can be manipulated quickly in a 3D environment.
... View more
11-06-2018
01:30 PM
|
3
|
0
|
672
|
POST
|
We are using Drone2Map to do rapid site survey where we are less interested in the absolute geo accuracy of the model and more interested in the features/dimensions of the objects we are modelling and/or tying the model into existing medium resolution terrain data. We are running into an issue where the Scene Layer Package exported from Drone2Map does not allow any adjustment of height when loaded in ArcGIS Pro and so the model is sitting under the terrain (or conceivably, too far above it)- The options under the "Elevation" area of the layer in Pro are set to 'Features are at an Absolute height' with no ability to change to the other options (i.e. adding a cartographic offset or changing to 'Features are: Relative to the ground). While I understand that for 'survey' you'd want to keep the information at its surveyed height, but our need for timeliness somewhat overrides our need for absolute accuracy- We don't have the time or ability to add surveyed GCPs and, even if we did, we may still need to adjust the XYZ position of the model for visualization purposes. How can we ensure that the Elevation properties are adjustable in the Scene layer package?
... View more
11-04-2018
02:45 PM
|
0
|
0
|
564
|
POST
|
We run an on-premise Portal with its own terrain service and our environment is not connected to the internet. Our terrain service shows fine in the Portals scene viewer/as a terrain source in Pro etc but doesn't show in Drone2Map 3D view? Adding the same terrain service through the 'Add Data' button just adds it as a 2D layer (i.e. pixel heights shown as greyscale values)
... View more
11-04-2018
02:15 PM
|
0
|
0
|
493
|
POST
|
Or if you need it sooner you can build the app using WAB Dev outside of Portal and point to a newer version of the JS API.
... View more
11-01-2018
12:52 PM
|
0
|
0
|
1347
|
Title | Kudos | Posted |
---|---|---|
1 | 06-30-2023 03:26 AM | |
1 | 01-13-2016 12:17 PM | |
1 | 07-30-2020 05:04 PM | |
1 | 09-14-2020 04:46 PM | |
3 | 12-03-2020 01:32 PM |
Online Status |
Offline
|
Date Last Visited |
09-23-2024
03:09 AM
|