|
POST
|
it was working last week just simply add url to embed widget but right now I am getting this error. it just works on public surveys 😞
... View more
03-23-2022
07:26 AM
|
0
|
1
|
3808
|
|
POST
|
@JamieLambert Thanks for this how can make flash halo something like this.
... View more
03-11-2022
11:40 AM
|
1
|
0
|
3471
|
|
POST
|
Hello, I have this code and I getting result in test but I can't set it up in pop-up of new map viewer? var intersectLayer =Top(OrderBy(FeatureSetByName($map,"xyz"),"Inspection_Date DES"), 3);
return intersectLayer and this is I am seeing on pop-up
... View more
03-09-2022
01:46 PM
|
0
|
3
|
1581
|
|
POST
|
Hello How store labels as a separate layer so it can go over map features for Vector basemap?
... View more
02-28-2022
12:56 PM
|
2
|
1
|
961
|
|
POST
|
Hello, I am getting this error with your code ConnectionError: A connection error has occurred: HTTPSConnectionPool(host='myorg.maps.arcgis.com', port=443): Max retries exceeded with url: /sharing/rest/generateToken (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x000001EB4CC5F448>: Failed to establish a new connection: [WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond')) any suggestions?
... View more
02-16-2022
08:38 AM
|
0
|
0
|
13654
|
|
POST
|
I checked and I don't miss anything seems "f" doesn't work here txtFileNameNoExt = f"{os.path.splitext(txtFileNameWithExt)[0]}_{datetime.datetime.now():%Y_%m_%d}" ^ SyntaxError: invalid syntax also here arcpy.env.workspace = my_Path arcpy.Rename_management(txtFileNameWithExt,f"{txtFileNameNoExt}.shp")
... View more
02-14-2022
09:13 AM
|
0
|
1
|
1950
|
|
POST
|
Hello @KimberlyGarbade I don't way but I run your code on jupyter notebook on Arcpro and works fine when I am trying to run on PyScripter I am getting error #rename shapefile
txtFileNameWithExt = "op.shp"
txtFileNameNoExt = f"{os.path.splitext(txtFileNameWithExt)[0]}_{datetime.datetime.now():%Y_%m_%d}"
arcpy.env.workspace = my_Path
arcpy.Rename_management(txtFileNameWithExt,f"{txtFileNameNoExt}.shp")
... View more
02-14-2022
08:58 AM
|
0
|
4
|
1955
|
|
POST
|
Hello I am trying to rename shapefile to current date like this dd_02112022.zip I am created zip file but I can't find out how to rename shapefile or feature class before zipping all together. any python code or arcpy to rename and add current date. Best,
... View more
02-11-2022
01:44 PM
|
0
|
7
|
2517
|
|
POST
|
Hello I want to hide some fields on Survey123 Analyze Results page anyway i can do this? Since I plan to share the results through the Analyze page, I would like the hidden fields not to appear in the summary. Is this possible? Thanks
... View more
02-10-2022
01:16 PM
|
0
|
0
|
437
|
|
BLOG
|
Hello I shared Analyze page with some users but we can't see some fields? and shows this. What is of meaning of this? I didn't find anything about those dot in green area.
... View more
02-07-2022
01:08 PM
|
0
|
0
|
2117
|
|
POST
|
Hello All I am trying to create zip file with name and current date. example: Land_01242022.zip I created shapefile with current date like this Land_todayDate.shp. But I am having problem to have same format for zip file with all shapefile on it. I want something like this : Land_todaydate.zip I have this code but this just create zip file with name and not adding date to it. Expression: zipshape(r"Path","Name") this function requires the two inputs folder (path to the shapefile) and name (shapefilename, for example if your shapefile is foo.shp, the name should be foo (without the extension). it doesn't work with one input. code Block: import os
import glob
import zipfile
def zipshape(folder, name):
os.chdir(folder)
zipname = name + ".zip"
flist = glob.glob(name + "*")
with zipfile.ZipFile(zipname, "w") as newzip:
for ff in flist:
if ff[-4:] != "lock" and ff != zipname:
newzip.write(ff)
return os.path.join(folder, zipname) Date Type File I need to run this everyday because I need to add date or maybe just overwrite pervious zip file with new date.
... View more
01-24-2022
12:31 PM
|
0
|
0
|
1298
|
|
POST
|
@curtvprice Thanks a lot I can create zip file right now. Just one question do you know how can rename the zip file which I created rename with current date land_TodayDate.zip.
... View more
01-24-2022
10:17 AM
|
0
|
0
|
1083
|
|
POST
|
I created shape file and added date whenever you run the model. Right now I am trying to zip the shapefile and then next step rename it like this : "A_todaydate" I don't understand this part. what I need to replace. how can I get already shapefile created and zip it.
... View more
01-21-2022
10:04 AM
|
0
|
1
|
1105
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 10-26-2023 07:59 AM | |
| 8 | 01-15-2025 08:56 AM | |
| 1 | 01-15-2025 08:57 AM | |
| 1 | 03-30-2022 08:49 AM | |
| 2 | 10-24-2024 06:53 AM |