|
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
|
6365
|
|
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
|
2857
|
|
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
|
2934
|
|
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
|
2936
|
|
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
|
2936
|
|
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
|
2422
|
|
POST
|
What does the Esri Activation email say? Usually, you find all the info there. What kind of license have you purchased?
... View more
09-09-2019
01:03 AM
|
0
|
2
|
2422
|
|
POST
|
Hi all, I created a secured folder in my AGServer. The folder is accessible from the localhost and it works fine. but when I try to login from another machine the http://server:6080/arcgis/rest/login switches into: https://server:6443/arcgis/rest/login and the page is not found. I am trying to understand whether it is a problem of certificate (we have only a SelfSigned) , Port (the firewall is off); or what else? any idea? thanks!
... View more
09-06-2019
02:30 AM
|
0
|
1
|
916
|
|
POST
|
Also, when you purchase a license, you should receive an authorization email that allows you to convert your public or create a new organizational account. Have you done it?
... View more
09-06-2019
02:08 AM
|
0
|
0
|
2422
|
|
POST
|
It might be useful to see the following: go to https://marketplace.arcgis.com and login with the agol credential that are linked to the ESRI authorization. Go to Console is ArcGIS PRO listed? if so you can go to manage license and assign the license to your account.
... View more
09-06-2019
02:02 AM
|
0
|
0
|
2422
|
|
POST
|
Hi, I would like to share a web Scene in my portal but I get the message: Federated Server Not available" I am running on PRO 2.4.1 and Server/Portal 10.6.1 according to this Idea the unfederated configuration should be implemented already: https://community.esri.com/ideas/12258 Anything I should configure before publishing? Thanks
... View more
09-04-2019
05:40 AM
|
0
|
0
|
837
|
|
BLOG
|
Thank you for this great feature! Xander Bakker I have a problem though, I tried to get the popup info for features in two different layers overlapping a polygon. this is my code. It works well only if one layer only overlays: // test intersect
var intersectLayer =Intersects(FeatureSetByName($map,"Layer1"), $feature)
var intersectLayer2 =Intersects(FeatureSetByName($map,"Layer2"), $feature)
for (var f in intersectLayer){
return "Layer 1 info" + "\x0d\x0a" +"Name: " + f.Name + "\x0d\x0a" +"Type: " + f.Type
}
for (var f in intersectLayer2){
return "Layer 2 info" + "\x0d\x0a" + "Name: " + f.Name
}
Results: If the polygon intersects layer1 and layer2 only layer 1 is shown (layer1 is the house icon, layer2 the dot) If the polygon intersects layer2: it's ok Here I have even more than one features in layer 2, but still only layer1 shown. if I invert the two variables // test intersect var intersectLayer =Intersects(FeatureSetByName($map,"Layer1"), $feature) var intersectLayer2 =Intersects(FeatureSetByName($map,"Layer2"), $feature) for (var f in intersectLayer2){ return "Layer 2 info" + "\x0d\x0a" + "Name: " + f.Name } for (var f in intersectLayer){ return "Layer 1 info" + "\x0d\x0a" +"Name: " + f.Name + "\x0d\x0a" +"Type: " + f.Type } I get info for only one dot in layer2: Thanks!
... View more
08-09-2019
08:35 AM
|
0
|
0
|
16728
|
|
POST
|
Hi Dan Patterson, sorry for the late reply but I haven't logged in for a while. The license listed 3 machines (three UMN). The license is only one, authorized twice on a machine and then moved into the third one. When clicking on the last authorized machine I was shown the "Ineligible for license return" message but when clicking on the the previous one (that had been deauthorized some days before) I could Deauthorize. not sure why but at the end I could deauthorize.
... View more
08-09-2019
05:26 AM
|
0
|
1
|
1848
|
|
POST
|
Hi guys, I did return the license in the last month but now I need to use it temporary on an old machine to recover something. Is there a time limitation on returning licenses? Thanks!
... View more
07-31-2019
02:36 AM
|
0
|
3
|
2252
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | Wednesday | |
| 1 | Wednesday | |
| 1 | Wednesday | |
| 4 | Wednesday | |
| 1 | 11-04-2025 08:07 AM |
| Online Status |
Online
|
| Date Last Visited |
14 hours ago
|