|
POST
|
Suggest you give an upvote and use case to ArcGIS Pro Help should start showing version numbers (e.g. 1.0-2.1.2) . ESRI is under the impression that you upgraded to 2.2 the day it was released, and will continue to upgrade to the latest version 3-4 times per year with every SP and version change (https://community.esri.com/thread/217032-what-happened-to-the-online-21x-help?sr=inbox ).
... View more
07-11-2018
07:11 AM
|
1
|
0
|
1239
|
|
POST
|
I tried to repro this in 2.2: I moved 5 points all on top of each other, selected them, Right Click Only Select This, Modify, Move, and it only moved 1 out of the 5 points. Additionally, if I just click on the point, it only moves the "top" one. I would try upgrading to 2.2....
... View more
07-10-2018
05:54 AM
|
3
|
4
|
6473
|
|
POST
|
Just that one service? Are you able to publish it again, but with a different service name, and same error? If yes to both, the problem is with your data. Need more details on your set up, where the data is, versions, DB flavor, etc..also, it appears you're not using https. Not sure how you're set up, but not using https causes a lot of quirky mysteries in Arc GIS Server.
... View more
07-06-2018
08:13 AM
|
2
|
1
|
3225
|
|
POST
|
set logging to debug and try again. Also, how is the data being referenced? From an SDE, PTL Hosted Data Store, non-federated server data store, FGDB on a network share? I'm thinking you have a permission problem somewhere.
... View more
07-06-2018
08:09 AM
|
0
|
3
|
2842
|
|
POST
|
07-06-2018
08:02 AM
|
0
|
0
|
2098
|
|
POST
|
Doesn't happen in the attribute editor window, where you have a real clock to set the time
... View more
07-06-2018
07:57 AM
|
0
|
2
|
2098
|
|
POST
|
No, because with temporal data, you're not creating "keyframes" and "positioning cameras". The bits and pieces that would be considered the "animation" are just the raster (or feature) that changes with time, and in Arc, the Export Movie tool just exports the data frame sequentially and then stitches them together. Never was impressed with that tool, so I prefer to use the python method which allows me to export to a higher quality JPEG then use my favorite Adobe software, or anything really, to stitch them into a movie. Neither workflow appears to be available in Pro.
... View more
07-06-2018
07:50 AM
|
0
|
2
|
2393
|
|
POST
|
This case finally closed, there were a lot of issues found but ultimately the issue causing the problem was a configuration error (Configure your portal to use a reverse proxy server—Portal for ArcGIS (10.6) | ArcGIS Enterprise ). Two bugs originated out of this BUG-000114839 Overwriting an existing service from a federated ArcGIS Server instance from ArcGIS Pro fails and BUG-000115083 When viewing the catalog window in ArcGIS Pro. Double clicking in the name field of an offline feature service causes all text after the @ symbol to disappear (because in our environment, the grandchild version name is getting an @ character after the user name) Rendering the local child un-usable as it cannot sync back to its parent. We spent a lot of time reviewing the disconnected editing workflow using Pro and versioned feature classes, and came to the stunning but "by design" discovery: When a non DBO created a child version from Default, and publishes a feature service from it, any offline edits to that feature service in Pro will create a grand-child version. Upon sync and remove, the editor will then be reverted back to child version (the one driving the feature service). No dispute as to how the versioning workflow works, but what do you think those editors are going to do? "Crap, my edits didn't take! Let me do that again.....". But wait, it gets better. So no disputing that one has to reconcile and post grand children to children for those deltas to hit the feature service. Well-documented behavior. But guess what? Only the DBO (sysadmin) can do that! Because.........the service account running the GIS server/Ptl is the owner of the grandchildren, not the person that created the child off of default....unless....the child version is changed to public, which kinda defeats the whole purpose of versioning (you know, so no one else messes with my data....). In a nationwide application with potentially hundreds of editors and several children of default telling folks that "Pro is better!" doesn't carry a lot of weight. Sure, we can python automate the rec and post process, but call me old-fashioned, the point of rec and post is to see where conflicts pop up and make human decisions about how to resolve them (like when the editor whom correctly inferred their edits didn't take downloads and edits the same offline feature service 3 times). Thanks to tech support, they got a lot of folks involved that had "Engineer" in their title. FWIW, Offline Editing in Pro where your stuff isn't versioned still blows Arc Map out of the water and has the added side benefit of making the same data mobile-editing-ready. Think I'll stick to non-versioned feature classes and just eat it on data quality and protection.
... View more
07-06-2018
07:47 AM
|
0
|
0
|
5083
|
|
POST
|
So Create a multidimensional mosaic dataset from a set of time series images—ArcGIS Pro | ArcGIS Desktop turned out to be easy enough, but to answer this question, as far as I can tell, no, you can't do this in Pro. I ran into two problems: The "Export to Video" tool is missing from the Time Ribbon (and slider) in Pro, and as it turns out you can't access the time property of the data frame (as far as I can tell) https://community.esri.com/thread/217460-does-pro-py-have-a-method-to-access-the-time-property-in-a-time-enabled-layer . The time slider and animation performance was far better than in Arc for 100+ rasters, but Pro is somewhat useless if I can't export the results. However, I may not just be finding the right button to export, and it's buried in some right-click context menu.
... View more
07-06-2018
07:01 AM
|
0
|
4
|
2393
|
|
POST
|
From DataFrameTime—Help | ArcGIS Desktop, the following example exports each "Time Frame" as a unique file: import arcpy
import os
mxd = arcpy.mapping.MapDocument(r"C:\Project\Project.mxd")
df = arcpy.mapping.ListDataFrames(mxd, "Traffic Analysis")[0]
df.time.currentTime = df.time.startTime
while df.time.currentTime <= df.time.endTime:
# An example str(newTime) would be: "2008-12-29 02:19:59"
# The following line splits the string at the space and takes the first
# item in the resulting string.
fileName = str(df.time.currentTime).split(" ")[0] + ".png"
arcpy.mapping.ExportToPNG(mxd, os.path.join(r"C:\Project\Output", fileName), df)
df.time.currentTime = df.time.currentTime + df.time.timeStepInterval
del mxd From Migrating from arcpy.mapping to ArcGIS Pro—ArcPy | ArcGIS Desktop I see p = arcpy.mp.ArcGISProject("CURRENT")
m = p.listMaps("Yosemite National Park")[0]
for lyr in m.listLayers():
if lyr.supports("SHOWLABELS"):
lblClasses = lyr.listLabelClasses() as an example of how to access the map part, but I'm not seeing any documentation or examples on how to access the time property, if a Pro map has a time-enabled layer. In context, I'm working Working with a multidimensional raster layer—ArcGIS Pro | ArcGIS Desktop where I have some 100 rasters, each with a time stamp, and I want to export each "Step" as it's own JPEG.
... View more
07-05-2018
01:17 PM
|
0
|
1
|
1690
|
|
IDEA
|
National Geographic has a "Do you have what it takes" contest.....surely you entered and won? A blog post on how you did that is called for!
... View more
07-05-2018
12:38 PM
|
0
|
1
|
3159
|
|
POST
|
So far just FGDB, I don't have access to any SDE's today.
... View more
07-05-2018
11:47 AM
|
0
|
1
|
2098
|
|
POST
|
Something that is pretty common is to add a time to a date field, e.g an observation time (I saw Sasquatch at 7 AM on 7July). Like this: But what if I saw Sasquatch on 28 June, and I'm just now getting around to adding the observation? I pick June 28: Then click on the time thingy and change it to 7 AM and now it's July 5! It seems the clicking on the time pick list is tied to the same mouse click event that runs "Today". Now, if I set the time doo hickey to 7 AM FIRST, then I can pick June 28. Which doesn't seem very intuitive, nor can I find that in the online help, nor is there going to be any rational way I can explain that to the majority of my customers that are entering observation times as well as dates in a date field. Since correlating the proof of the existence of Sasquatch to observation time (evening, when folks that believe in Sasquatch are 6 deep into a case of Natty Light) is key to my hypothesis, I really need the time to stick when I pick date....
... View more
07-05-2018
11:33 AM
|
0
|
6
|
2413
|
|
POST
|
So after the great June flood (seems to happen every June), I have fist fulls of NEXRAD radar data, looking to make some animations. In previous years past, I recall doing this with Raster Catalogs in Arc Map, and it was pretty easy. I'm really trying to drink the Pro Kool Aid, and do it in Pro this year, but I'm not seeing how to automate the "Time" part in the mosaic provisioning. According to Creating a mosaic dataset containing raster data from multiple dates—Help | ArcGIS Desktop I just add a date component, and load the rasters one by one. Not an option here, as when NEXRAD is in precip mode, it generates a raster every 5 minutes, and I have 36 hours worth of rasters. The requirement is to animate each 5-minute raster for the duration of the event. Yes, I'm aware that WCT generates animations, but we want these in Arc so we can add our own layers to the animation, as well as make some symbology changes that "management can understand" and will likely push this out as an image service. Something like this http://www.arcgis.com/home/item.html?id=cd7080ff6d1e4170b5a5677f12175a03 (animation is gone....). I think Create a multidimensional mosaic dataset from a set of time series images—ArcGIS Pro | ArcGIS Desktop is the direction I want to go but I don't want to waste a day loading rasters then find it doesn't work. Anyone else done raster time series in Pro where you have 100+ rasters?
... View more
07-05-2018
10:28 AM
|
0
|
5
|
2783
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 05-17-2022 12:19 PM | |
| 1 | 03-14-2019 06:24 AM | |
| 1 | 07-12-2018 09:29 AM | |
| 1 | 06-27-2019 12:08 PM | |
| 2 | 09-23-2019 11:03 AM |
| Online Status |
Offline
|
| Date Last Visited |
04-26-2026
07:12 AM
|