|
POST
|
Hi. Here the log. does anyone know why I am getting this error being all input validated? Thanks! " Messages Start Time: 29 November 2019 13:37:26 Running script GeneratePathways... Initialization complete Executing validate_inputs... ---All input feature classes' spatial references match. FC = OMISSIS\_Indoors.gdb\AIIM\Facilities ---The Facilities ID fields in all feature classes have the same type: String FC = OMISSIS\_Indoors.gdb\AIIM\Levels ---The Level ID fields in all feature classes have the same type: String ---The values in the Facilities ID field in the Building feature class are all unique. ---The values in the Level ID field in the Levels feature class are all unique. Function validate_inputs completed successfully. Elapsed time: 8.15 seconds. Executing get_building_attributes... Executing create_building_filename_string_dict... -------------------------- Processing facility OMISSIS\ Number of features in floorplan details layer: 7901 Number of features in floor levels layer: 1 Filtering input layers on the Building ID... Executing create_building_template_lattice... Creating template lattice for building OMISSIS\. Function create_building_template_lattice completed successfully. Elapsed time: 2 minutes 13 seconds. Creating floor latticess... Processing lattice features for floor OMISSIS\. Deleting short features... Adding z values... Loading features into feature class Pathways must be str, not NoneType 0 Failed to execute (GeneratePathways). Failed at 29 November 2019 13:41:46 (Elapsed Time: 4 minutes 20 seconds) "
... View more
11-29-2019
05:49 AM
|
0
|
1
|
1033
|
|
POST
|
Incomplete installation of ArcGIS Indoors for PRO leaded to this issue. Thanks to Esri support I solved it.
... View more
11-29-2019
05:30 AM
|
0
|
0
|
1273
|
|
POST
|
Hi, I've just installed a Portal with the Indoors capabilities and installed the Indoors Python environment in PRO but I cannot see the Indoors tools in Pro. I am a creator role (actually the Primary Account in Portal) but I don' t see a way to explicitly assign the indoor license to myself. I am not able to see the issue. It is true that the new licensing method is a bit tricky and probably I made a mistake on that, but if anyone could help me I would appreciate. Thank you.
... View more
11-18-2019
02:14 AM
|
0
|
2
|
1440
|
|
POST
|
Hi there, is it possible to add a query result that has been saved in Content into a WebApp? The query result is saved as Feature Layer but is not available in the list when I try to add it. Thanks!
... View more
11-06-2019
08:10 AM
|
0
|
1
|
802
|
|
POST
|
hi, maybe this: Convert labels to annotation—ArcGIS Pro | ArcGIS Desktop
... View more
10-17-2019
08:45 AM
|
0
|
0
|
839
|
|
POST
|
Hi everyone, I' ve created a model that updates a table in PostgreSQL The model runs perfectly as model and as tool as well. Exported the Model into python script an it runs in Arc Python window. I have created also a script that calls the toolbox and model inside and it works when run into Arc Python Window. When I put it in Windows scheduler the task starts and completes but the table isn't updated meaning that the script doesn't run correctly. I tried to run the same script in PyScripter and I get this error message: Message File Name Line Position Traceback <module> C:\Folder\script_startModel.py 15 TableReadings2 C:\Folder\Toolbox.tbx 75 ExecuteError: Failed to execute. Parameters are not valid. The value does not exist. ERROR 000732: Output Location: Dataset Database Connections\database_publish.sde does not exist or is not supported The value does not exist. ERROR 000732: Output Location: Dataset Database Connections\database_publish.sde does not exist or is not supported The value does not exist. ERROR 000732: Input Table: Dataset database.sde.Building_Readings does not exist or is not supported ERROR 000989: Tool CalculateField cannot use VB expressions for services ERROR 000989: Tool CalculateField cannot use VB expressions for services ERROR 000989: Tool CalculateField cannot use VB expressions for services ERROR 000989: Tool CalculateField cannot use VB expressions for services Failed to execute (ScriptReadings2). I tried to run the same script in Windows CMD and I get this error message: C:\Users\username>C:\python27\Arcgis10.5\python.exe C:\Folder\Script_startModel.py Traceback (most recent call last): File "C:\Folder\Script_startModel.py", line 15, in <module> arcpy.ModelReadings2_Toolbox() File "C:\Folder\Toolbox.tbx", line 75, in ModelReadings2 arcgisscripting.ExecuteError: Failed to execute. Parameters are not valid. The value does not exist. ERROR 000732: Input Table: Dataset database_publish.sde.Building_Readings does not exist or is not supported Failed to execute (ScriptReadings2). The main issue seems to be the database which is not recognised. Any idea? Thanks
... View more
10-17-2019
03:47 AM
|
0
|
1
|
1572
|
|
POST
|
I found the answer here: https://community.esri.com/thread/51894#comment-579306
... View more
10-17-2019
03:20 AM
|
1
|
1
|
5351
|
|
POST
|
Thank you Joshua Bixby, I need to covert the first column into the last (string to numeric). I attempted the Replace because I thought I could simplify it but, as you pointed out.....I did not. I cannot convert them to 0 because it will false my analysis (they are temp and other values) I need a NO VALUE
... View more
10-07-2019
06:44 AM
|
0
|
0
|
5351
|
|
POST
|
Hi Dan, Thank you for your reply. I did not explained myself well. The original table has a field (string type) with numbers and some "nan" values. When I say nan I mean the word "nan". Since I need to convert this values into numbers I remove the word nan by using the python exp.: !ACmodeString!.replace("nan","<Null>"). Now I have that string field populated by numbers and <Null> records. What I need to do is to convert all these values into integer in a new field (short type). I'll try to upload some data as soon as possible. Here a not very nice example:
... View more
10-06-2019
01:55 PM
|
0
|
2
|
5351
|
|
POST
|
Hi, I am running a model. 1. for field 1(string) I have "integer numbers" and a value "nan" I use field calc with the expression: !ACmodeString!.replace("nan","<Null>") 2. Once I have the null records I run again Filed Calc to copy these values from the string field into a integer field with a expression like Field1(string) = Field2(integer) [ I have tried both VB and Python] a. with python I get this error: ERROR 999999: Error executing function. The value type is incompatible with the field type. b. with python again int(!acmodestring!) erro: ERROR 000539: Error running expression: int(u"<Null>") Traceback (most recent call last): File "<expression>", line 1, in <module> ValueError: invalid literal for int() with base 10: '<Null>' c. with VB I get an alert: If I click yes it finishes. the same happens for a filed that needs to be converted in float. I need to get rid of this alert. The issue seems to be the null value. Thanks!
... View more
10-06-2019
08:11 AM
|
0
|
6
|
5934
|
|
POST
|
George Thompson Asrujit SenGupta It works guys! thank you!!!! I added some new fields, also the shape so it will show the geometry, and the symbology works. Another question if I may, I am sorry to stress out too much: The query that works is this one: SELECT b.objectid, b.globalid, b.shortname, b.longname, b.shape, r.timestamp, r.room, r.acmode, r.actemp FROM BLKJ_Building b, Readings r WHERE b.shortname = r.room I would like to select the last time stamp only and a range. (the range ideally for a time slider) for last time stamp I've tried this one, but doesn't work. Any idea of what should be the correct one? SELECT b.objectid, b.globalid, b.shortname, b.longname, b.floor, b.shape, MAX(r.timestamp), r.room, r.acmode, r.actemp FROM Building b, Readings r WHERE b.shortname = r.room
... View more
10-03-2019
03:48 AM
|
0
|
0
|
2697
|
|
POST
|
Hi! Very basic question. not for me.... I am trying to create a database view with this statement. (both from catalog and from toolbox) CREATE VIEW readings_view AS SELECT (b.shortname,b.longname,r.timestamp,r.room,r.acmode,r.actemp) FROM #nameofFeatureClass# b, #nameOfTable# r WHERE b.shortname = r.room; I get this error There is already a relationship 1:M between the two. but I am trying to crate this view and publish it as I need to crate a symbology from related table. I read that creating a database view is a possible way but I cannot get it. What do I do wrong? I am trying to replicate what is in here: Example: Create database views in SQL Server using SQL—Help | ArcGIS Desktop thanks!!!
... View more
10-02-2019
11:19 AM
|
0
|
3
|
2774
|
|
POST
|
No, it does not meet the minimum requirements. I had a similar issue when I upgraded to server 10.6.1 and my PG was 9.5.10: I was not able to register my database into server. I would recommend to upgrade.
... View more
09-12-2019
02:47 AM
|
0
|
0
|
2809
|
|
POST
|
Hi, have you checked whether your PostGRE vesion meets the minimum requirement for 10.7? PostgreSQL database requirements for ArcGIS 10.7.x and ArcGIS Pro 2.4—System Requirements | ArcGIS Desktop
... View more
09-10-2019
04:27 AM
|
0
|
3
|
2809
|
|
POST
|
Hi Ahmed, in a previous message you said " Hi Christian, Thanks for your response. I created an online account with my gmail id. Then I purchased the product (ArcGIS Pro 2.4). Got an activation link from Esri and thus did that. ----> what does the activation link says and what have you done? Afterwards, I downloaded the installer file from esri and installed it. But when I tried to open that I got that message...……"
... View more
09-10-2019
04:22 AM
|
0
|
0
|
2190
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 11-04-2025 08:07 AM | |
| 1 | 12-18-2020 02:18 AM | |
| 1 | 01-30-2017 08:08 AM | |
| 1 | 11-08-2024 12:38 AM | |
| 1 | 11-27-2023 08:36 AM |
| Online Status |
Offline
|
| Date Last Visited |
Thursday
|