|
POST
|
Pier-Philippe, Run the tool again. In your Table of Contents, click on the button at the top to list contents by source (normally the second button). Look for your new feature and note the source path. If the data is not saved in the database you are working on the feature is either being created “in-memory”, scratch workspace or in your default GDB depending upon which version of ArcGIS you are using. Since the data persists if you save your MXD, which only saves the reference to the data, I would guess it is one of the later possibilities. You may need to modify your Python script to include setting the arcpy.env.workspace as part of your code prior to outputting the new feature class. General use of this setting are noted below but will be dependent upon your custom code. # Get the current workspace
current_Workspace = arcpy.env.workspace
# Set the workspace environment to local file geodatabase
arcpy.env.workspace = "C:/data/base.gdb"
#set to SDE file
arcpy.env.workspace = r"c:\data\base.sde" If you find the data is being saved in the database you are working on, simply add it back into your MXD using the Add-data button and navigate to the path shown in the TOC next time you need the data. The MXD only stores a reference to the data not the data itself. The data is stored in shapefiles, GDBs, enterprise databases, etc. that are added to a MXD for display.
... View more
08-31-2019
06:30 AM
|
2
|
0
|
2403
|
|
POST
|
John, Your BLDG_ID attribute, is it text or numeric in the SDE database? What about the table? If it is numeric in your SDE database, LIKE with text wildcards will only work on a text value in select by attribute statement. You can use a CAST statement to change BLDG_ID to a character string then use the LIKE statement with text wildcards such as "CAST(BLDG_ID AS CHARACTER(10)) LIKE '37019%'". Make sure to include a large enough character size by changing the "10" to what you need.
... View more
08-30-2019
06:59 PM
|
1
|
0
|
1286
|
|
POST
|
Jennifer Stanley Your personal style is stored in the folder <install drive>:\Users\<username>\AppData\Roaming\ESRI\Desktop10.7\ArcMap. You can copy this file to a network share that other users can load into their system from Style References Dialog and use this in their projects via the Add Style to List. The ESRI styles are stored in <install drive>:\Program Files (x86)\ArcGIS\Desktop10.x\Styles which can also be copied, renamed and saved in a shared network folder to be added in as well Please also take a look at Creating new styles - ArcGIS Desktop.
... View more
08-30-2019
06:22 PM
|
1
|
0
|
1056
|
|
POST
|
Jose, The easiest way to GET or POST a response from a web service from Python is using requests. You do not note what version of python you are using so you may need to install requests using the command pip install requests. You also do not indicate if your web service requires authentication. The examples below do not use authentication but this can be included. Depending upon the encoding your web service uses, there may be issues with how the <white spaces> are handled in your address string. Some use "+" while others use "%20" or "%". import requests
url = r'https://wwww.example.com/GISAddress/Check.asmx/VerifyAddress'
payload = {'param1':'100 SW 10 street'} # add paramaters to the dictionary as needed
# GET Only
r = requests.get(url)
# GET with parameters
r = requests.get(url, params=payload)
# POST with parameters
r = requests.post(url, data=payload)
# URL, Response and Status
r.url
r.text
r.status_code
... View more
08-30-2019
05:22 PM
|
1
|
0
|
15662
|
|
POST
|
Linda, Do you have different windows or enterprise firewall configuration being used for WiFi network vs Ethernet networks? If using Windows Firewall or a antivirus with web filtering, try temporarily disabling these. Are you using a secured WiFi network i.e. WPA-2 or WPA-2 Enterprise? Have you temporarily tried access on a unsecured WiFi network? There was an issue where TLS v1.2 cannot connect to secure WiFi (802.1x) because a Windows update but this was some time ago but if the the image used is older. Take a look at https://support.microsoft.com/en-us/help/3121002/windows-10-devices-can-t-connect-to-an-802-1x-environment. Have you tried to use an external WiFi connection such as a public or home connection.
... View more
08-30-2019
04:24 PM
|
0
|
0
|
825
|
|
POST
|
Jason, You can use either (.+(1000*24*60*60*365) > today()) or (today() - . < (1000*24*60*60*365)) as your constraint in your XMLForm. Both will check for an input date within the past 365 days. If these do not work post what you have and someone can take a closer look.
... View more
08-26-2019
03:22 PM
|
2
|
0
|
1555
|
|
POST
|
Masih, You need to perform a spatial adjustment or re-project the digitized data to the correct coordinate system. Take a look at About spatial adjustment—Help | ArcGIS Desktop or Project—Help | ArcGIS Desktop accordingly. Spatial adjustment tool shifts the feature data using control points between the two systems. The project tool would be used to change the digitized data from one coordinate system (the physical map) to another (your needed coordinate system). I would try and re-project first, if you know the map coordinate system.
... View more
08-26-2019
12:01 PM
|
2
|
3
|
3258
|
|
POST
|
Masih, Can you please clarify what you meant by "resize a shapefile"? Are you in reference to the georeferencing of the entire shapefile or scaling the individual features in the shapefile?
... View more
08-26-2019
11:36 AM
|
0
|
5
|
3258
|
|
POST
|
Ken, Here are a couple of links on AGOL as example only. You can search for “agriculture” once on the site and there are hundreds of other examples that may be closer to what you are looking for. Some of the underlying data in other examples may contain what you are looking for specifically. https://www.arcgis.com/home/item.html?id=2350a7745702402fb9ecdc507541dac4 https://www.arcgis.com/home/item.html?id=573a31c8e47948a0abfa54d3065078c1
... View more
08-25-2019
01:06 PM
|
0
|
2
|
2415
|
|
POST
|
Balqees, Have you seen the following links? Not sure what extensions and resources you have to work with based upon your question. BIM-GIS Integration with IFC How To: Convert IFC data with the Data Interoperability extension There are also great videos on YouTube, just search for IFC to ArcGIS once on the site.
... View more
08-25-2019
12:32 PM
|
0
|
1
|
975
|
|
POST
|
Laura, I looked through both your datasets and cannot determine a specific issue. It defiantly looks like a transformation error or some type of offset in the system as all the points are off about 1.15 feet at a bearing of 240 degrees. Since the points from the NTRIP and other points from 2017 align with your surveyors data, that further points to something with the RTX. I am not very versed with RTX as I am with RTK nor Trimble products. Unfortunately, Trimble's web site is being temperamental the past couple of days so I could not dig into it learn a little more. Hopefully your rep reaches out to you on Monday. We had a similar issue getting our GIS data zeroed in using Collector with a Leica GG04+. There are so many places an error can be introduced with all the transformations that are utilized between the GPS, Collector, AGOL, then bringing it all back into Desktop typically with other data on different coordinate system. It took us a couple months to work out all the small errors the last being that you could not directly transform between NAD83(86) which our surveyor uses and NAD83(2011) which our GIS uses without introducing an error of about 1.5 feet. We found we have to go from NAD83(86) then to NAD83(HARN) and then NAD83(2011). The data is then within the accuracy of the instruments. It took us a month to figure that one out. Try setting your GNSS Cordinate system to EPSG 4326 and confirm your surveyors coordinate system. I would be glad to take a look again once you have that info. Sorry, I could not be of further assistance.
... View more
08-24-2019
09:10 PM
|
3
|
1
|
9892
|
|
POST
|
Thomas, Take a look at this post pertaining to Applying Advanced Symbology and Labeling Using ArcGIS Pro. It explains where a lot of items were moved and discusses a few key points such as the labeling view in the contents pane, labeling ribbon, label class pane, etc.
... View more
08-24-2019
12:38 PM
|
0
|
2
|
3246
|
|
POST
|
Chris, Sorry, I had misread your question. Thought you were combining several images into a single mosaic. Glad you got it figured out...
... View more
08-24-2019
11:30 AM
|
1
|
0
|
9039
|
|
POST
|
Masih, If I remember correctly, the data for the representation tool must be contained in a geodatabase and will not work on shapefiles. Take a look at A quick tour of representations—Help | ArcGIS Desktop The tools may be disabled if one of the follow is true. You are in an edit session. You are unable to obtain a schema lock. Ensure that the layer is not currently being accessed by ArcCatalog or by another ArcMap session. The layer is currently symbolized with a feature class representation. The layer's data source is not a point, line, or polygon feature class in a geodatabase. Shapefiles, coverages, annotation feature classes, and dimension feature classes cannot support feature class representations. The layer is currently symbolized with the proportional symbol, the quantity by category, or one of the chart symbol categories. The layer's data source resides in a geodatabase that has not yet been upgraded to the current release. You are using ArcGIS Desktop Basic. An ArcGIS Desktop Standard or Desktop Advanced license is required to create representations.
... View more
08-24-2019
05:05 AM
|
0
|
7
|
3258
|
|
POST
|
Laura,, I will take a look. A couple of red flags went off when reading your response, mainly pertaining to the initial surveyors data. Even though they gave you latitude and longitude, what system was it in? WGS_1984, GSC_North_America_1983_HARN or HARN_Corrected, NAD_1983? Was it in US_Feet or International_Feet? Also, can you please confirm your GPS RTX is using GCS ITRF 2008 and what datum and unit for the altitude values? The Trimble site indicates that ITRF2014 is used after March 23rd, 2017 and references other ESRI GNSS Receiver Coordinate Systems to use for your configuration.
... View more
08-23-2019
08:20 PM
|
1
|
0
|
9892
|
| Title | Kudos | Posted |
|---|---|---|
| 2 | 05-14-2026 11:47 AM | |
| 3 | 05-14-2026 12:23 PM | |
| 1 | 09-16-2019 05:49 PM | |
| 1 | 06-11-2025 03:32 PM | |
| 1 | 12-26-2023 09:15 AM |
| Online Status |
Offline
|
| Date Last Visited |
a week ago
|