|
POST
|
Hi Ashley, Are you working from local netCDF files or over the web through OpenDAP protocol? Is is a gridded dataset? Are you sure you cannot do what you need using the standard Multidimension Toolbox? By open2arc, do you mean dap2arc? I haven't got experience with either but the video at the bottom of the REAMDE.md explains quite a bit. If the zip folders you download have actual toolboxes (.pyt or .tbx) in them, unzip the downloaded folders and you should be able to browse to the unzipped folders and see a toolbox with tools you can use as normal ArcGIS tools. However, If you need to call these extra tools from Python, you'll need to call arcpy.AddToolbox first. Let us know how you get on. Filip.
... View more
05-05-2015
02:52 PM
|
1
|
17
|
3351
|
|
POST
|
Hi Lloyd, thanks for coming back to me. After I set locale to 'en-us' in dojo config my app loads fine. I still get some 404 errors but that doesn't seem to matter. I still need to keep the dojo config async set to false, but that is probably because I didn't require some third party libraries properly. I suspect this is also the reason why the app loads as slowly as before. My colleague who is more experienced with grunt, bower, and node.js showed me how to get started with grunt-esri-slurp but I still didn't quite get my head around it. I'd really like to see some video where grunt-esri-slurp and code minification are explained on a complete app. Best regards, Filip.
... View more
05-01-2015
02:51 PM
|
0
|
0
|
1518
|
|
POST
|
Aha finally I can see a map! The first error about gregorian calendar disappeared when I added a config option to specify localization. <script src="./ags3-13-standard/dojo/dojo.js" data-dojo-config="async: true, locale: 'en-us'"></script> Note however that the app should really be in en-gb, which did not work. It still cannot found /dojo/dojo.js.map but so far that has not been a problem (with the vanilla app from developer sandbox). Still any tips about this topic welcome. Filip.
... View more
03-17-2015
03:42 PM
|
1
|
2
|
1518
|
|
POST
|
Hello, I am trying to use the JavaScript Web Optimizer (http://jso.arcgis.com) to create some custom builds of ArcGIS JavaScript API. I get the final files but the application does not load and errors out with: Error 404: .../web-optimizer/dojo/dojo.js.map Error 404: .../web-optimizer/dojo/cldr/nls/en-gb/gregorian.js scriptError I am following the tutorial pretty closely. I tried several builds, the simplest contains the 5 modules below. I tried to apply it on the application that comes in the developer sandbox but I keep getting the errors above. dijit/_base/manager dojo/domReady dojo/fx/Toggler dojo/_base/html esri/map Am I missing anything? What is the latest version when the web optimizer worked for you? You can see the broken app here: http://filipkral.com/dev/arcgis-js/ I would really appreciate your help here because making a custom build has become necessary to load an app that uses all the attached modules. Best regards, Filip.
... View more
03-16-2015
04:18 PM
|
0
|
3
|
5213
|
|
POST
|
Hi Alice, Did you try to configure the web adaptor again? Configuring the ArcGIS Web Adaptor I would check the site security settings, which you have probably checked already anyway. Sorry I cannot give you better advice. F.
... View more
03-03-2015
11:48 AM
|
1
|
1
|
1378
|
|
POST
|
Hi, Many our services are time enabled and we are looking for some innovative ways to allow users navigate in time. Traditional time slider or a date picker become annoying after very short time if the data has many time steps. The best solution I have seen so far is by NASA here: EOSDIS Worldview While the solution is on github, I have not been able to reuse it but even then I doubt we could reuse it for datasets that have, say, daily time step and range from 1860 to 2015, or 15 minute time step from 1970 to 2015. We also want to use this control on maps that mesh up data sources with different time resolutions. I made several attempts to come up with a universal control but they all have significant drawbacks. My solutions (attached) were based on the NASA Worldview idea, on c3.js subplot (which worked really well in certain scenarios), and on calendar heatmap: Cal-HeatMap : Javascript calendar heatmap for time series data . Please leave a comment if you know about some interesting solutions. Also, if you would be willing to collaborate on a new date time control, let me know! Filip.
... View more
03-02-2015
09:28 AM
|
0
|
0
|
4821
|
|
POST
|
What? How can it work?!? Have you disabled the requirement for standardized queries or does it work out of the box? Filip.
... View more
02-25-2015
11:11 AM
|
0
|
2
|
1747
|
|
POST
|
Hi, Some time ago I asked a similar question and I am guessing the same answer applies to you. Can 10.2 answer Oracle where clause? Statements with LIKE operator are not standardized queries and they are disabled in 10.2+ by default. ArcGIS Help (10.2, 10.2.1, and 10.2.2) Hope this explains the issues you are having. Filip.
... View more
02-25-2015
11:10 AM
|
0
|
3
|
1747
|
|
POST
|
Hi, Some time ago I asked a similar question and I am guessing the same answer applies to you. Can 10.2 answer Oracle where clause? Statements with LIKE operator are not standardized queries and they are disabled in 10.2+ by default. ArcGIS Help (10.2, 10.2.1, and 10.2.2) Hope this explains the issues you are having. Filip.
... View more
02-25-2015
11:10 AM
|
2
|
0
|
1081
|
|
POST
|
Hi Nuria, Bellow is the way I would do it (not tested). I am not sure if you need your keys in the dictionary of mean rainfall for each month to be the full name of the month. I used the number of the month (1 for January, 2 for February, ..., 12 for December) because it becomes much easier to write. If you need to work with full names of months, you should be able to reuse my code if you just add another dictionary to lookup the full name of a month by its number. Also, it really helps if you use the syntax highlighting feature of the advanced editor when pasting code to geonet. Here is how to do it: Posting Code blocks in the new GeoNet import arcpy
fc = r'full/path/to/your/feature_class'
lookup_mean_for_month = {1: 2.1, 2: 3.2, ..., 12: 2.8} # 12 items
column_names = ["_20100101", "_20100201", ..., "_20121001"] # 36 elements
arcpy.da.UpdateCursor(fc, column_names) as uc:
for row in uc:
newvalues = []
# you need an index to lookup the right column name
# because arcpy.da cursors don't remember column names
i = 0
for cell in row:
column = column_names
# get the month from the column name
# "_20100101" -> 1, "_20100201" -> 2, ... etc.
month_index = int(column[5:7])
mean_for_month = lookup_mean_for_month[month_index]
# replace values lower than the mean of the month with zero
if float(cell) < float(mean_for_month):
newvalues.append(0.0)
else:
newvalues.append(cell)
i += 1 # increment i as you move onto the next cell in the row
# that is one row done, so save it:
uc.updateRow(newvalues)
# and move onto the next row ("for row in uc" loop continues) Hope this helps. Filip.
... View more
02-24-2015
02:58 PM
|
1
|
1
|
2354
|
|
POST
|
Hi all, thanks for the tips. We made it all work with the original name.
... View more
02-24-2015
02:15 PM
|
0
|
0
|
1576
|
|
POST
|
Hi David, I could right-click and press start, which seemed to work but the service status was still "Stoped". Anyway, I changed the computer name back to the original value and that brought the ArcGIS Server Site back. It would be good to know what happened and if renaming the machine that runs the site is possible. Filip.
... View more
02-23-2015
09:22 AM
|
0
|
2
|
1576
|
|
POST
|
Hello, I was installing ArcGIS for Server 10.2.2 (on Win 2008 R2) from scratch on a single machine. The site setup went smoothly but when I got to installing Web Adaptor I realized I need to change the computer name. Based on the information in common problems and solutions (ArcGIS Help (10.2, 10.2.1, and 10.2.2) ) I thought it was save to do so and that arcgis will pick up the change and configure the site properly. Now the server is no longer available on http://localhost:6080/arcgis/manager and none of the other ArcGIS urls work (IE says "This page can't be displayed"). Task manager indicates ArcGIS Server process is not running but I cannot start it. What should I do to recover the site? Why did it not work (does the safe renaming apply only to computers registered in the site and not the site itself?). Is it a good idea to try change some files in the config store? I found some forum posts that described similar situations but for older versions. Many thanks for any advice. Filip.
... View more
02-23-2015
05:25 AM
|
0
|
5
|
5433
|
|
POST
|
Hi, not sure what's going on there but can it be because of a typo where you are creating the new QueryTask? `this.config.qeuryTaskUrl` vs. `this.config.queryTaskUrl`, swap the 'eu'?
... View more
02-22-2015
04:43 AM
|
0
|
3
|
1920
|
|
POST
|
Yeah, I am going for the online ones. It is quite a big chunk of money and time so I am hoping it will be worth it. The fact that you guys have attended or were considering attending is a good sign! The overlap with DevSummit is unfortunate indeed. But hey, I'd probably be watching the sessions on JS API anyway. Cheers! F.
... View more
02-19-2015
02:34 PM
|
0
|
0
|
1130
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 02-05-2014 04:40 AM | |
| 1 | 02-08-2015 12:49 PM | |
| 1 | 07-20-2014 12:41 PM | |
| 1 | 03-23-2017 01:48 PM | |
| 1 | 08-18-2014 04:14 PM |
| Online Status |
Offline
|
| Date Last Visited |
11-11-2020
02:23 AM
|