|
POST
|
Good point on the number of connection files that you'll have to maintain and "install" on every client's computer. A large number of those (or even a few more than several), would not be fun to maintain and distribute.
... View more
01-21-2016
10:15 AM
|
0
|
1
|
2137
|
|
POST
|
I'm not the DBA here, but I can maybe shed some light on our practice. Our county has ~400K people. A large percent of the county, city and utility data is in one large Oracle SDE. We have 85 feature datasets and then on top of that 815 objects that are outside of (excluding) the objects in those datasets. There's probably 70 or so versions, but I think most are direct children of the default version. Every 8 - 12 weeks, we do get an email from the DBA asking everyone to post their versions so he can compress the database states down to "zero". But on most given days, there are data in a large number of versions. As a frequent data reader and less frequent data editor, I've never experienced unacceptable latency in the 8-ish years that we've operated this way. I think this one gigantic database probably simplifies back up and restore, since it's only one database. The consultants that helped up migrate a lot of the county's workflow from Microstation to ArcGIS suggested we organize every based on this GIS for the nation data model. Every feature/object class that deals with land use starts with "LU", such as "LU_Zoning", "LU_Parks". So it's not so bad finding the feature class that we're looking for in ArcCatalog. For our users that are not full time GIS staff, we create layer files so they can just drop them into ArcMap. This allows us to make recommendations about which features should be hidden (inactive features), how the data should be symbolized, and which fields are the most appropriate for generating labels. I'm not saying that you should set up your system like we have, but so far it's worked well.
... View more
01-21-2016
10:02 AM
|
2
|
0
|
2138
|
|
POST
|
Thanks for getting back. I was using the "material column charts" from Google. They are currently in beta. When I reverted to the older style Google charts everything functioned as expected. They must have changed something. And if they did that explains why things broke down when we hadn't modified the code in weeks! To me, it doesn't make sense why the IE debugger was finally throwing an error when it stepped into http://js.arcgis.com/3.14/ rather than in Google's API code. And that led me on a goose chase in the wrong direction where I eventually found the dog that was barking up the wrong tree, so to speak. Thanks for taking the time to look into it for me. From the beginning it was hard to believe that ESRI had switched out the API code
... View more
10-07-2015
01:42 PM
|
0
|
0
|
882
|
|
POST
|
I put together a web map that was heavily tested in both IE (the default browser in VS Web Developer Express) and Chrome. Our web master then incorporated it into our website. We did a demo of the website last Tuesday, Sept 29 and did not run into issues. But since then, the map will only load in Chrome if you hit the refresh button several times. The map won't load at all in IE. The web master is quite certain that he hasn't edited the code anywhere in the website (he's been working on other projects). So I open my VS project and then ran debug against IE and I'm getting: Although it's been weeks since I worked on this project, I'm pretty sure that I was not receiving that error before. If I had, I wouldn't have handed it off to our web master. Also, I take manual snapshots of my code anytime it's working well and before I try to add new functionality -- kind of like a manual source control. Those previous versions of my code are now throwing the same error when they didn't before. I have deleted the caches on my browsers numerous times. Issues with the live web page were occurring on three different PCs I know it may sound far fetched, but a change in the 3.14 code is the only thing that makes sense to me and two other co-workers. Does ESRI change code between releases? Do they apply bug fixes to code that's been previously released to the public and in use? Or would they wait until 3.15 to make any modifications? I realize that I could be totally barking up the wrong tree and I'm open to all suggestions, responses, and wake up calls. I've attached all of the code that should be necessary to run my map and charts
... View more
10-07-2015
08:45 AM
|
0
|
2
|
3090
|
|
POST
|
Thank you. That's works perfectly, though I did have to 'upgrade' from the 3.12 API to 3.14. Is defaultSource in the API documentation anywhere? I can't find it. It'd probably be helpful for others with the same issue. Thanks again!
... View more
09-09-2015
06:14 AM
|
0
|
1
|
784
|
|
POST
|
I'd like my search widget to display suggested results, as it does in the basic search example. However, I want to customize the "sources" to only return search results in my area of interest (10 counties in East Tn). Setting the searchExtent property is effectively limiting search results to my area. But adding these customizations to the sources seems to break the suggestions. My codes is below. As a side note, the highlightSympbol doesn't seem to work either. The default blue icon is very similar to some of the point features in my map. Any idea why it's not working as well? I've intentionally left all of the lines that I have commented out to show the different settings/properties that I've tried. Thanks! var map = new Map("map", {
basemap: "gray",
center: [-83.942, 35.9728],
zoom: 9
});
var s = new Search({
map: map,
zoomScale: 24000,
enableSuggestions: true
}, "search");
windowResized();
//add the home button
var home = new HomeButton({
map: map
}, "HomeButton");
home.startup();
var sources = [];
sources.push({
locator: new Locator("//geocode.arcgis.com/arcgis/rest/services/World/GeocodeServer"),
singleLineFieldName: "SingleLine",
countryCode: "US",
searchExtent: new Extent(
{
xmin: -9433102.5652,
ymin: 4232556.948,
xmax: -9233957.949,
ymax: 4356720.4646,
spatialReference: {
wkid: 102100
}
}),
outFields: ["Match_addr", "PlaceName"],
//outFields: ["address", "PlaceName"],
//outFields: ["*"],
//name: "World Geocode Service",
enableSuggestions: true,
enableSuggestionsMenu: true,
maxSuggestions: 5,
suggestionDelay: 100,
minCharacters: 0,
placeholder: "Enter an address or place",
highlightSymbol: new PictureMarkerSymbol('https://cdn0.iconfinder.com/data/icons/20-flat-icons/128/location-pointer.png', 26, 33).setOffset(1, 1)
});
s.set("sources", sources);
//highlight symbol
//var searchSymbol = new PictureMarkerSymbol("http://i.stack.imgur.com/cdiAE.png", 20, 20);
//s.sources[0].highlightSymbol = searchSymbol;
s.enableSuggestions = true;
s.startup();
... View more
09-08-2015
06:55 AM
|
0
|
3
|
2833
|
|
POST
|
Maybe I'm missing something here, but this seems way too unnecessarily difficult. I was able to use the "add field to analysis layer" tool to add a field that did show up in my output service area lines, but it was always completely null when trying several different input options in the tool. I eventually used "Select Data" tool with the 'facilities' option and then copy features to export a point feature class with the "STOP_ID" field in my input point layer. Then I joined the output lines using Facilities.ObjectID = ServiceAreaLines.FacilityID. Then I used "Calculate Field" to finally get the STOP_ID onto the output service areas lines. Why can't users just specify a series of fields in the "Add locations" tool and those fields be present (and populated) in all of the Network Analyst output!?!?!? I think the documentation on this issue needs to be more fleshed out. Sample geoprocessing models would also be helpful.
... View more
08-12-2015
07:32 AM
|
1
|
0
|
1663
|
|
POST
|
Is there an out-of-the-box geoprocessing tool that will update a field in one layer based on the each features' spatial relationships with features in another layer without creating a temporary layer? I imagine this use case comes up very frequently: -- what county (polygon) did this accident (point location) happen in? -- what sector of the county (polygon) is this building permit (point location) in? -- what school zone (polygon) is this address (point) in? For years, I've been using the following tools in geoprocessing models 1) Spatial Join or Identity tool 2) Add an attribute index to the output of 1 to be used used in the next step (not always necessary if input layers have dont have numerous features) 3) Add (a tabular) Join between the input point layer and the output of number 1 4) Calculate field (transfer the attribute from the polygon to the point) 5) Remove join (if necessary for future steps in the geoprocessing model) 6) Delete the output of step 1 (this can be avoided by having geoprocessing models create temporary outputs) 7) Compact database (if the output of step 1 creates a lot of bloat in a geodatabase, assuming in-memory outputs were not used) This not only wastes time when creating models, it also wastes time when running them since the temporary layer must be written to disk and then re-read (lots of pointless I/O). This is especially true when you have a huge number of points. I do realize that "in memory" layers are available, but that layer must first be created (even though it's not written to disk) and wastes time. Yes, things will get a bit dicey when the point falls into two or more overlapping polygons. Not all polygon layers use "must not overlap" topology, but a good proportion do. The user could be given the option about how to handle two or more features, such as leaving the target field blank, writing the attributes for all of the overlapping features separated by a semicolon, only writing the first polygon that is found, or populating the field with error messages like "<two or more features overlap>" or -9999 I know that this can be done via spatial SQL in geodatabases that are built on SQL Server, Oracle or PostgreSQL. In those cases, it may only be possibly if the geometries are stored in the RDBMS's internal geometry types (as opposed to ESRIs geometry type). But that gets dicey if the input feature classes are versioned. And this approach is not possible with personal geodatabases, file geodatabases or shapefiles I imagine that somebody has written their own tools or scripts to do this more efficiently. But searching for shared tools these days isn't very easy. Please post this tool if you have it! But I think that people shouldn't have to write tools for this because I imagine that this use case occurs frequently in many peoples' day-to-day tasks >> this should be an out-of-the-box geoprocessing tool
... View more
08-10-2015
01:55 PM
|
0
|
3
|
3291
|
|
POST
|
I think the help files should be updated to read: "To open the dialog box, select a workspace from the source tab in the table of contents window and click the Version Changes button" I was looking for some sort of source tab on one of the dialog boxes pertaining to versions. A Google search led me here.
... View more
06-04-2015
10:48 AM
|
0
|
0
|
1677
|
|
POST
|
I'm guessing that the answer is no, but it'd be good to get a confirmation. Thanks.
... View more
04-14-2015
05:51 AM
|
1
|
4
|
4226
|
|
POST
|
Thanks for listening. I do think some guidance on grouping would be helpful, but I think that explaining how to query for datasets via a sample URLs is the critical piece of information that is missing. I imagine that most Open Data providers have enough basic knowledge of HTML to start placing href links in their "home page". Those that don't have the MarkDown examples available to them. Now that I know how to link to pages like http://imap.maryland.opendata.arcgis.com/datasets?q=Agriculture and http://imap.maryland.opendata.arcgis.com/datasets/20f240af3be54be581f9ceef1b314b6a_0, everything else should fall into place for me. We'll likely reevaluate the tags that we've assigned to our AGO datasets that we intend to expose via our Open Data page. Most specifically, we'll make sure that the datasets that we want to group all have the same tag (such as the agriculture tag in the first link I pasted above).
... View more
04-09-2015
05:58 AM
|
2
|
0
|
1603
|
|
POST
|
http://nation.maps.arcgis.com/apps/SimpleViewer/index.html?appid=a6cb3e1caa7549418b1a5945bcb36717 The census areas are tiles, so I am assuming that the symbology was authored in ArcMap and then published as a tile service. How was it created?
... View more
04-08-2015
12:25 PM
|
1
|
0
|
2763
|
|
POST
|
Another way that you may want to use to educate Open Data first-timers is to add something like the text below to the Design Layout tab. I would have been able to start working on our site immediately if I had seen something to this effect:
... View more
04-07-2015
12:10 PM
|
0
|
0
|
1603
|
|
POST
|
Thanks for your response. The critical step that I was missing was to preview the site and then start searching for keywords/tags. Now everything is making sense and we can probably proceed with setting up our open data site. I was under the impression that I was going to have to add data listing widget or a dataset map widget for any of our datasets to be visible to website users. In other words, I thought that I had to build the interface (add widgets) for our users to use. So I never thought to try the 'preview site' because I didn't think there would be anything to preview (beyond the banner images, placeholder images, etc that are very intuitive to set up). I would suggest that ESRI staff add something to the documentation that shows people how to discover the URLs that will access their datasets (e.g., http://mygroup.myorg.opendata.arcgis.com/datasets?q=population&sort_by=relevance). I think the best spot would be between the "Data Report" section and "Design the Layout of your Open Data Site" section, or near the top of the latter. Maybe something like: "You do not have to add widgets or modify HTML, CSS, Markdown for people to discover data on your site. To understand this, click the 'Preview Site' button and then search for a tag that you've attached to one of your datasets. The URL in browser bar on the search results page should be used as a template to create links to your data in the Design Layout tab" Or is it already in your documentation and have I overlooked it? I do think videos would be helpful, but I think that somehow working this into the documentation is more important, especially if your weeks away from publishing the videos. Using MarkDown, CSS, image links, etc will be easy now that I know which URLs to use when laying out the site.
... View more
04-07-2015
11:41 AM
|
1
|
3
|
1603
|
|
POST
|
This response doesn't directly address the inability to save changes, but I have uncovered a bug in the "Dataset Map" widget. Here's what the ESRI Tech Support staffer wrote to me: As per our discussion and the observed behaviour, we have logged a bug with ID 000086559 for endlessly spinning wheel while configuring the Open Data homepage for Open Data site. I hope the issue will be taken care of soon. This suggests that they are having some issues with the interface on the design layout tab. It may be related to your inability to save the page.
... View more
04-07-2015
08:12 AM
|
2
|
2
|
608
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 03-02-2023 06:12 AM | |
| 1 | 12-23-2024 09:27 AM | |
| 1 | 11-19-2024 12:32 PM | |
| 1 | 08-16-2024 08:01 AM | |
| 1 | 10-24-2024 12:02 PM |
| Online Status |
Offline
|
| Date Last Visited |
Wednesday
|