|
POST
|
Google Earth Pro (which is free) can natively import ESRI shapefiles. You can always try importing your shapefile that way and then exporting it out as a KML/KMZ file. Steve
... View more
06-26-2018
03:16 PM
|
2
|
0
|
5730
|
|
POST
|
To see older images in the Sentinel Explorer App, you have to log in with your AGOL Organizational account credentials. Not sure about accessing that content through Arcmap, though.
... View more
06-08-2018
04:19 PM
|
0
|
0
|
2477
|
|
POST
|
I was more referring to whether they were 6 inch resolution vs 1 foot vs 1 meter, etc. More pixels = more disk space.
... View more
05-31-2018
11:06 AM
|
0
|
1
|
5120
|
|
POST
|
You don't mention this but one possible explanation would be if the orthos are of different resolution, specifically, if your 2017s are a higher resolution than your 2015s.
... View more
05-31-2018
09:47 AM
|
1
|
4
|
5120
|
|
BLOG
|
What's the reasoning / logic behind the decision to "firewall" or restrict this content within AGOL Organizational accounts? If I am not logged in, only the latest image is available. I know of friends in environmental organizations that would benefit from accessing this information but they don't have GIS and certainly don't have organizational AGOL accounts. I wish ESRI would change their minds about this and, quite frankly, other public domain datasets "featured" within the Living Atlas that are currently restricted to organizational accounts.
... View more
05-30-2018
10:38 AM
|
0
|
0
|
3201
|
|
POST
|
Thanks, Jay, I would agree with you that Network Analyst is overkill for what I have previously done but it appears that unless you purchase the Roads and Highways extension for ArcGIS Server- or develop a SOE for Server, linear referencing isn't supported via JS API. Guess I have to build and publish a Network Analysis Service. Way overkill for what I need but I don't think I have a choice.
... View more
05-29-2018
03:32 PM
|
0
|
1
|
1497
|
|
POST
|
I'm trying to port over some desktop functionality of mapping road locations into a webmap using the JS API but it's creating some confusion for me. I have a route layer- but not in the traditional sense. I took a dataset of streets and then routed it (Linear Referencing Tools->Create Routes) in ArcToolbox based on a field containing the full name of the roads. In Arcmap, that's all you really need to solve for a route between point A & B using VBA & .NET using the RouteMeasureLocator object. In other words, you don't need a Network Analyst license, stops, restrictions, etc to just return a line between point A & B. That's basically what I want to replicate, but as a web service. I took that routed layer and tried publishing this as a service to our AGS 10.4.x server. I clicked the Network Analysis checkbox under the Capabilities options while publishing and it craps out saying that the "...Data frame does not contain a required layer type for Network Analysis capability". When I turned on our Network Analyst extension, it doesn't seem to like my layer because all the options remain grayed out. I guess there's more to it when providing a route service but I'm not sure what other prep I need to do to get it up & running. What more do I need to do? (My route is set up this way because I'm trying to facilitate non-technical staff who need to map a road closure. Under desktop, they select the road name, click on the map for the starting/ending points, and the route function draws the line between the two dots. I routed based on full road names to ensure that the solved route doesn't jump over a block and travel on a different road.) Thanks! Steve
... View more
05-29-2018
11:49 AM
|
0
|
3
|
1658
|
|
POST
|
Dovetailing off of Rupert's suggestion, break out each chapter into separate Cascade Story Maps and then make HTML pages for each chapter and place each Story Map chapter onto the pages as embedded iframes.
... View more
05-23-2018
09:46 AM
|
0
|
3
|
2631
|
|
POST
|
Thanks, Robert. I'll give this a try tonight. I figured I was doing something stupid!
... View more
05-22-2018
08:02 AM
|
0
|
0
|
1412
|
|
POST
|
I'm likely making a stupid mistake but right now I'm not seeing it. I'm getting my feet wet with WAB Developer Edition 2.8 and I'm making a simple widget (based on demo widget template in the samplewidgets folder). In my widget, the user specifies a township/range/section and the map zooms to that location. Here's the widget: Simple stuff. My code works up to the point of updating the map extent. I get an error that the "Object doesn't support property or method 'setExtent'". From my search, I feel like I'm referencing the map the right way but clearly I'm not. What am I missing? There's not much to it but here's my widget.js code: define(['dojo/_base/declare', 'dojo/dom', 'dojo/on', 'esri/tasks/query', 'esri/tasks/QueryTask', 'jimu/BaseWidget'],
function(declare, dom, on, Query, QueryTask, BaseWidget) {
//To create a widget, you need to derive from BaseWidget.
return declare([BaseWidget], {
// DemoWidget code goes here
//please note that this property is be set by the framework when widget is loaded.
//templateString: template,
baseClass: 'jimu-widget-demo',
postCreate: function() {
this.inherited(arguments);
//console.log('postCreate');
},
startup: function() {
this.inherited(arguments);
this.mapIdNode.innerHTML = 'map id:' + this.map.id;
on(dom.byId("zoomButton"), "click", function() {
var queryString = "Township=" + dom.byId('townshipNum').value + " AND TWP_CHAR='" + dom.byId('townshipDir').value + "' AND RANGE=" + dom.byId('rangeNum').value;
queryString = queryString + " AND RNG_CHAR='" +dom.byId('rangeDir').value + "' AND SECTION=" + dom.byId('sectionNum').value;
var query = new Query();
query.returnGeometry = true;
query.where = queryString;
var qTask = new QueryTask("https://navigator.state.or.us/arcgis/rest/services/Framework/Cadastral_PLSS_WM/MapServer/3");
qTask.execute(query, function(results) {
if (results.features.length != 1) {
alert('There was an issue zooming into your Township/Range/Section.');
} else {
var plssGeom = results.features[0].geometry;
this.map.setExtent(plssGeom.getExtent());
}
});
});
},
onOpen: function(){
//console.log('onOpen');
},
onClose: function(){
//console.log('onClose');
},
onMinimize: function(){
//console.log('onMinimize');
},
onMaximize: function(){
//console.log('onMaximize');
}
});
}); The error happens on line 35 in my code above. Should my code be in a different event function instead of startup? Thanks! Steve
... View more
05-21-2018
09:17 PM
|
0
|
2
|
1520
|
|
POST
|
No- that's not what I need. What you suggested is designed to help attendees plan out their time at the conference. The flyer I attached to my original post is designed to inform people who have no background about GIS about the conference. *THAT* is what I need. I need that flyer, just with this year's theme, catch phrase, whatever.
... View more
05-15-2018
11:55 AM
|
0
|
1
|
3461
|
|
POST
|
I see a number of flyers posted for various industries. Is there one available for the conference overall? I always need to include something like this with my trip justification (I always need something with ESRI's logo on it, etc). I've attached the flyer I had to email ESRI get for last year's conference as an example. Thanks! Steve
... View more
05-15-2018
08:55 AM
|
0
|
5
|
3851
|
|
POST
|
Yes- first, create a new web app template that uses the swipe tool. Make that public and get the link for it. Inside your Cascade Story Map, add an immersive slide and then use the option to specify a URL. Paste the URL that you copied for the swipe tool web map app. If you'd like you can append "&embed" at the end of the swipe app URL to give a more seamless integration into your Cascade story map.
... View more
05-14-2018
01:40 PM
|
0
|
0
|
1233
|
|
POST
|
This post shows an example of how to show the radius length while drawing a circle. It should give you some insight about how to do this with what you want to accomplish. It is written in 3.x, though.
... View more
05-11-2018
01:50 PM
|
1
|
0
|
1531
|
|
POST
|
Sorry I don't have anything to offer other than "yeah, good question!". The link works for me but here's a PDF copy of that URL content.
... View more
05-07-2018
11:36 AM
|
2
|
1
|
5131
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 2 weeks ago | |
| 1 | 2 weeks ago | |
| 1 | 3 weeks ago | |
| 2 | 3 weeks ago | |
| 1 | 3 weeks ago |