|
POST
|
You can check the current list of publicly listed bugs here. https://support.esri.com/en/Search-Results#search?q=map%20metadata%20arcgis%20pro&content-type=Bugs If you think it is a bug, then you can file a case with Tech Support, or if you think there is a need for clarification in the help documentation, you can report it on the help page for the page you are using.
... View more
07-06-2020
04:36 PM
|
0
|
3
|
4004
|
|
POST
|
Metadata—Metadata module | Documentation import arcpy
aprx = arcpy.mp.ArcGISProject("CURRENT")
current_map = aprx.activeMap
map_metadata = current_map.metadata
print(map_metadata.title)
print(map_metadata.description) whether python window or otherwise, the example gets the map specified whether it is an active map or from a list of maps called "Map" In your case, may be you need current_map = aprx.listMaps("Map")[0] map_metadata = current_map.metadata print (str(map_metadata.isReadOnly))
... View more
07-06-2020
03:57 PM
|
0
|
5
|
4004
|
|
POST
|
Bookmarks—ArcGIS Pro | Documentation you can import them In the window that appears, browse to and select the bookmark file to import. You can also import bookmark files (.dat file extension) from ArcGIS Desktop. and you can export them to .bkmx Manage bookmarks—ArcGIS Pro | Documentation So apparently not.... but why not compare the format of *.dat and *.bkmx This is a *.bkmx.... I don't have ArcMap. I did a big SNIP in the middle {
"type" : "CIMBookmarkDocument",
"version" : "2.6.0",
"build" : 24776,
"spatialReference" : {
"wkid" : 2146,
"latestWkid" : 2951
},
"bookmarks" : [
{
"type" : "CIMBookmark",
"name" : "test",
"thumbnailImagePath" : "Qk02bAAAAAA
... HUGE SNIP ...
////////////////Pz8",
"camera" : {
"type" : "CIMViewCamera",
"pitch" : -90,
"scale" : 289.19531752143416,
"x" : 300018.13851199951,
"y" : 5000017.5265992843,
"z" : 97.054644200095083,
"viewportHeight" : 64.273787866714486,
"viewportWidth" : 77.97022599545484
},
"location" : {
"xmin" : 299979.153399001807,
"ymin" : 4999985.38970535062,
"xmax" : 300057.123624997213,
"ymax" : 5000049.6634932179,
"spatialReference" : {
"wkid" : 2146,
"latestWkid" : 2951
}
},
"timeRelation" : "esriTimeRelationOverlaps",
"description" : "<DIV STYLE=\"text-align:Left;font-size:12pt\"><P><SPAN>test bookmark</SPAN></P></DIV>"
}
]
}
... View more
07-06-2020
09:12 AM
|
0
|
0
|
4942
|
|
POST
|
I would have added this to your workflow if you are having naming of table and field issues Remove the table from the table of contents, if it was added. Delete the table from the gdb in catalog. Refresh the gdb in catalog. Save project
... View more
07-06-2020
09:02 AM
|
1
|
1
|
3059
|
|
POST
|
docking targets Introducing ArcGIS Pro—ArcGIS Pro | Documentation Drag the Catalog pane by its title bar over the map view. As you drag the pane—represented by a blue shadow—docking targets appear in the center of the map view and at the edges of the application window. Each target represents an area where the pane can be positioned.
... View more
07-06-2020
03:20 AM
|
4
|
1
|
1084
|
|
POST
|
There is no limit. But since you are a student, it would be prudent to notify the person in your organization that you need to do so in case you have issues
... View more
07-06-2020
03:12 AM
|
0
|
0
|
1023
|
|
POST
|
field names contained spaces they would be replaced by underscores if the csv field name was a reserved word, it would also be changed and duplicate field names are not allowed two tables of the same name wouldn't be permitted in a gdb those are the only basic rules I can remember offhand
... View more
07-05-2020
01:15 PM
|
0
|
0
|
3059
|
|
POST
|
when you say you changed the data types of the fields manually, you have to ensure that the whole column contains data of that type. Any value which differs from the data type will change the whole field. Also, can you identify what was different in the two tables so people don't have to scroll up and down looking for differences
... View more
07-04-2020
06:03 AM
|
0
|
2
|
3059
|
|
POST
|
Quite a bit ArcGIS Pro Python reference—ArcGIS Pro | Documentation Modelbuilder might be a better first approach if you use tools from arctoolbox ModelBuilder quick tour—ArcGIS Pro | Documentation
... View more
07-04-2020
04:09 AM
|
1
|
0
|
5310
|
|
POST
|
I will add, one of my big reasons too, is that I do screen grabs of the wizard showing how all the parameters are set for each tool, so I don't have to rely on a verbal description as to whether a parameter is input, output or derived and if I use 'value list' 's, what the defaults are and your thumbnails.I can then produce a pdf for a toolset.
... View more
07-04-2020
03:56 AM
|
2
|
0
|
10280
|
|
POST
|
Leave it on if you want anything to happen behind the scenes whether you are logged in or logged out
... View more
07-04-2020
12:24 AM
|
5
|
1
|
1552
|
|
POST
|
Leandra Gordon I just usually "zip" the toolbox and a "scripts" folder together, the others just need to unzip it where they want it. The key is to make the scripts "relative" to the toolbox. It is one of the options in the custom toolbox wizard. ie inside the zip MyToolbox.tbx ....Scripts folder .... A.py scripts associated with tools in the toolbox or used as imports .... B.py .... etc
... View more
07-04-2020
12:21 AM
|
1
|
0
|
10280
|
|
POST
|
Not sure, but I think shortly after it was discovered. I don't remember it being an issue for a few years
... View more
07-03-2020
06:04 PM
|
0
|
7
|
3119
|
|
POST
|
just going to state the obvious... you leave the computer on... don't you?
... View more
07-03-2020
04:07 PM
|
4
|
3
|
1552
|
|
POST
|
Is there a chance the map was in https://en.wikipedia.org/wiki/Web_Mercator_projection#:~:text=4%20References-,Properties,in%20Web%2Dbased%20mapping%20programs.&text=While%20the%20Web%20Mercator%27s%20formulas,the%20WGS%2084%20ellipsoidal%20datum. and you had the coordinates showing decimal degrees rather than the image's projected coordinate system? Mercator—Properties of maps | Documentation
... View more
07-03-2020
02:09 PM
|
0
|
0
|
2974
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | yesterday | |
| 1 | 02-26-2026 01:52 PM | |
| 1 | Thursday | |
| 1 | Wednesday | |
| 1 | 2 weeks ago |