|
IDEA
|
-->
Currently, when using the Drive time Analysis it only considers the speed limit of the road segments in the route. This leaves out the fact that most Fire Engines cannot travel more than 45mph, even on highways. Our Fire Department requires us to set ALL roads to a maximum of 45 mph when doing Drive Time Analysis and that is a HUGE workaround. If we could just set a maximum speed capabilities for the analysis to utilize it would be a MUCH more useful tool.
... View more
05-15-2015
12:58 PM
|
9
|
0
|
990
|
|
POST
|
omg... it's full of stars. I checked out his repo here: chelm/esri-d3 · GitHub That is beautiful... I 'need' (and I do mean NEED) to learn D3. I guess I'm going to just have to 'make' it happen. The ease of use... connectivity with ESRI data... jQuery-esque-ness... simplicity... power... beauty... sweet mother of pearl... I want to work with D3 so bad. Thanks for sharing... now I have to clean up the drool... I love this library. ESRI needs to seriously consider adopting it. Like quickly. I'm willing to bet they could get rid of the confusing DOJO and switch everything over to D3 and make everyone MUCH happier.
... View more
05-14-2015
08:51 AM
|
1
|
0
|
2647
|
|
POST
|
Could the versions of jQuery matter? I had the newest MINIFIED version? Maybe there was an issue? Because it flatout did nothing...
... View more
05-01-2015
01:42 PM
|
0
|
1
|
2215
|
|
POST
|
Robert, Thank you for the suggestion. It didn't work. I would dig into it and try to figure it out but before I saw your post I already figured it out. Here is how... Solution $(document).ready(function()
{
$.ajax ( {
type: 'GET',
url: 'http://maps.cityoftulsa.org/gis/rest/services/LGDM/Parks/FeatureServer/0/query?where=1%3D1&objectIds=&time=&geometry=&geometryType=esriGeometryEnvelope&inSR=&spatialRel=esriSpatialRelIntersects&relationParam=&outFields=NAME%2CFULLADDR%2CFACILITYID&returnGeometry=true&maxAllowableOffset=&geometryPrecision=&outSR=&gdbVersion=&returnDistinctValues=false&returnIdsOnly=false&returnCountOnly=false&orderByFields=&groupByFieldsForStatistics=&outStatistics=&returnZ=false&returnM=false&multipatchOption=&f=json',
data: { get_param: 'value' },
dataType: 'json',
success: function (data) { $.each( data.features, function(index, element) {
$('body').append($('<div><a href="http://maps.cityoftulsa.org/parksfinder/?selectedFeatureID=' + element.attributes.FACILITYID + '">' + element.attributes.NAME + '</a></div>') ); } ); } } );
}); Working Example I don't know how long this will sit here, as this is my 'playground,' but if you want to see it in action, here you go! City of Tulsa Master Park List Purpose I work on a 'Map Book' for our Fire Department. But because it was developed years ago, before we even HAD ESRI, it is a fairly manual process with interspersed Map Info tools. My boss is the only person with Map Info fluency. So basically, when a new Apartment (for instance) is built I have to acquire the conceptual plans showing building layout, etc. Then I open Microsoft Visio and trace the drawings showing the layout for each building and paving, etc. Once completed I have to save as PDF whereupon I then save a copy to the Apartments folder using the naming convention of "Apartment Name - Address.pdf" and then I save to the ApartmentsByNumber folder where I use the naming convention of "#APARTMENTNUMBER.pdf" But this isn't the end. I then have to edit a webpage document that is split amongst 4 different HTML files in order to support whatever Microsoft product built the original HTML page. ONE of those HTML documents has the LIST of PDF files with links to each file. I then have to create a new entry and enter the basic details of the Apartment I just created... THEN I have to go to ESRI and drop a dot on a map and update the DB. Needless to say, this is a MASSIVE waste of time since we have ArcMAP and ArcServer with Web Map capabilities. My goal is to just put the basic information necessary for each apartment INTO the Local Government Model in ESRI. Come up with a data-driven map book concept for the Apartments (based on the ReferenceData dataset). Thereby as I convert all of these Visio / PDF monstrosities into the LGM I can then create an HTML page on our Intranet (or whatever) for the Fire Department listing out ALL Apartments on a page directly from the REST service and providing them links to each Apartment. Either way, I like bunny trails like this because it let's me build something that does more than just fix this one problem, it allows me to create useful tools in MULTIPLE places. Now if I can just figure out how to get this Javascript code into a Google Spreadsheet... hmmmmm
... View more
05-01-2015
08:35 AM
|
0
|
0
|
2215
|
|
POST
|
Example User visits a web page called 'Parks List'. A list of Parks is populated from the REST service with the name of each Park as an HTML Link that goes to the ParksFinder map TO THAT PARK. Question Let's assume that I have the ParksFinder application running and going smooth. We developed the Feature ID field to be the first 3 letters in the name of the Park, a hyphen, and the first 3 digits in the address. For instance, Darlington Park is located at 5179 East 29th Street South. The Feature ID for Darlington Park is Dar-517. The URL that jumps you DIRECTLY to that Park is: http://maps.cityoftulsa.org/parksfinder/?selectedFeatureID=Dar-517 These are all things pulled from the REST service which is located at: http://maps.cityoftulsa.org/gis/rest/services/LGDM/Parks/MapServer/0 Current Test I have a tiny amount of experience with jQuery and REST. Other than my work with WAB, it is actually very little. Enough that this is going over my head right now. So I went out to get some working samples of REST with jQuery to see if I couldn't hobble together a basic concept. Here is what I have (that doesn't work) at the moment. // hello.js
// MapServer: http://maps.cityoftulsa.org/gis/rest/services/LGDM/Parks/MapServer/0
// Feature Servcer: http://maps.cityoftulsa.org/gis/rest/services/LGDM/Parks/FeatureServer/0
$(document).ready(function() {
$.ajax({
url: "http://maps.cityoftulsa.org/gis/rest/services/LGDM/Parks/MapServer/0"
}).then(function(data) {
$('.greeting-id').append(data.name);
});
}); index.html
<!DOCTYPE html>
<html>
<head>
<title>Hello jQuery</title>
<script src="../../js/jquery-1.11.2.min.js"></script>
<script src="hello.js"></script>
</head>
<body>
<div>
<p class="greeting-id">The Park name is </p>
</div>
</body>
</html> It's not doing anything. I can't tell if I need to pass a query? And if so, what would that query be? (1=1) or something similar? How should I format it best? I feel like if I am going to populate a page with ALL 100+ Parks from our ArcGIS Server that I need to reformat my jQuery, but I'm not 100% sure how. I shouldn't have to worry about cross-domain scripting because this is on the same server as all our webmaps. http://maps.cityoftulsa.org/jsdev/RESTTEST/ Confused but hopeful. There are a plethora of pages on our City site that would benefit GREATLY from something like this. Any help would be greatly appreciated.
... View more
05-01-2015
07:04 AM
|
0
|
5
|
6063
|
|
POST
|
I'm trying to give end users the ability to query a point feature using a polygon feature and then offer them the ability to download the query results in CSV format. I know you can 'draw' your query and get a CSV download from the result set... but can you SELECT a polygon-feature and use IT as the boundary to query?
... View more
05-01-2015
06:30 AM
|
0
|
1
|
3731
|
|
POST
|
We have a geolocator service we've created. Our police department get's coordinates from "their system" each day. They need to generate an address to help identify each incident they are logging. We DON'T want them to use ESRI's Geolocator service (which costs credits) but rather OUR geolocator service on OUR ArcGIS Server. Is there a widget I can put on a WAB map where they can upload their CSV and generate a downloadable CSV of Addresses? Is there something similar? Any ideas?!
... View more
04-29-2015
02:43 PM
|
1
|
0
|
4315
|
|
POST
|
My "Streets & Stormwater Department" here at the City of Tulsa has some Watershed Sampling Sites. These are sites where regularly scheduled testing of the water and wildlife occurs. Currently I have 29 sites. I'm uncertain where to store these in the Local Government Model. WaterDistribution > wSamplingStation (Simple) WaterDistribution > wTestStation (Simple) SewerStormwater > ssTestStation (Simple) Can someone more knowledgeable give me a clue? And while you're at it, could someone let me know if there is a spot in the LGM to store the tests as well?
... View more
04-29-2015
06:08 AM
|
0
|
1
|
4469
|
|
POST
|
By default everything is active? How do you use this field, turn it on and off? Is it user-generated or is there a tool that turns this on and off?
... View more
04-24-2015
07:49 AM
|
0
|
0
|
1539
|
|
POST
|
Can I remove layers from my LayerList in a WAB created map? Yes. With minor tweaking too...
... View more
04-20-2015
08:53 AM
|
1
|
0
|
2780
|
|
POST
|
Wondering if anyone has any experience with using soap to check against an Address Locator created in ESRI and published on ArcGIS for Server?
... View more
04-20-2015
08:51 AM
|
0
|
0
|
3635
|
|
POST
|
What would be AMAZING is if there was someone who created MXD's pre-linked to a Local Government DB, that were pre-set up for specific processes like this. Much like ESRI does for their pre-packaged Apps. Just covering minor systems.
... View more
04-15-2015
10:19 AM
|
3
|
0
|
1817
|
|
POST
|
I'm looking for the tables used in placing a new Apartment into the Local Government Model. I believe they are as follows: Address AddressEntrancePoint To show all entrance locations to the property such as multiple entrance gates for the Apartment. AddressPoint To show the points along the street where the Apartment complex connects. SiteAddressPoint To show the various addressed sites, or locations, within the complex. This would include the various apartment units, buildings, or clubhouses as well as any other items or equipment that are addressed by local government. FacilitiesStreets BridgePoint Some Apartments have a bridge that leads into the complex. ParkingSpace Showing each parking spot for the Apartment complex. PavementMarkingLine PavementMarkingPoint 3 & 4 covering any paving markings within the Apartment complex. Pole Sidewalk Sign StreetPavement Tree 6-9 cover basic things found in an Apartment complex. ParcelPublishing Block ConveyanceDivision ConveyanceDivisionPoint Encumbrance OwnerParcel SimultaneousConveyance TaxParcelPoint All of these items need to be created and maintained if not already. ReferenceData BuildingFootprint Show each building and structure within the Apartment complex. FacilitySite FacilitySitePoint 2 & 3 Shows the boundary of the Apartment complex, most likely is just the Parcel but could be less. Vegetation Show any wooded areas within the Apartment complex. Waterbody Show any ponds or pools owned / maintained by the Apartment complex. Waterline Show any river and stream centerlines that travel through an Apartment complex. SewerStormwater Stormwater WaterDistribution 5 - 7 should cover the sewer, stormwater and water equipment and facilities within and on the Apartment complex. If someone can confirm, deny, refute, or otherwise correct this list I would GREATLY appreciate it.
... View more
04-15-2015
10:17 AM
|
0
|
2
|
5882
|
|
POST
|
The 200k address had a spatial component. Thanks to a 3rd party process the points are all rooftop centerpoints.
... View more
04-14-2015
10:49 AM
|
0
|
0
|
2232
|
|
POST
|
Thank you Jeff. To answer your question... Jeff Ward wrote: Why do you need the PreDir Type etc. when you are matching against points? Because the Address Locator built off of this table needs to be able to parse this, right?
... View more
04-02-2015
10:34 AM
|
0
|
5
|
2232
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 05-14-2015 08:51 AM | |
| 1 | 06-02-2016 02:00 PM | |
| 1 | 10-09-2015 07:43 AM | |
| 1 | 10-09-2015 09:42 AM | |
| 1 | 02-09-2016 07:10 AM |
| Online Status |
Offline
|
| Date Last Visited |
11-11-2020
02:23 AM
|