<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Is my Elevation Geoprocessing Service working? in ArcGIS JavaScript Maps SDK Questions</title>
    <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/is-my-elevation-geoprocessing-service-working/m-p/178484#M16528</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="http://blogs.esri.com/esri/arcgis/2014/08/26/setting-up-your-own-profile-service/" title="http://blogs.esri.com/esri/arcgis/2014/08/26/setting-up-your-own-profile-service/"&gt;Setting up your own Profile Service | ArcGIS Blog&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 24 Feb 2015 20:34:04 GMT</pubDate>
    <dc:creator>JohnGrayson</dc:creator>
    <dc:date>2015-02-24T20:34:04Z</dc:date>
    <item>
      <title>Is my Elevation Geoprocessing Service working?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/is-my-elevation-geoprocessing-service-working/m-p/178483#M16527</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I created an elevation geoprocessing service based on the example video &lt;A href="http://video.esri.com/watch/1169/creating-geoprocessing-services" title="http://video.esri.com/watch/1169/creating-geoprocessing-services" rel="nofollow noopener noreferrer" target="_blank"&gt;Creating Geoprocessing Services | Esri Video. &lt;/A&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;I ran the StackProfile tool and then published the result to a service. &lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I plugged it into the &lt;A href="http://www.arcgis.com/apps/Elevations/index.html?webmap=8dd583ea3de64e40b92ea5a261d0c6c8" title="http://www.arcgis.com/apps/Elevations/index.html?webmap=8dd583ea3de64e40b92ea5a261d0c6c8" rel="nofollow noopener noreferrer" target="_blank"&gt;Elevations Profile&lt;/A&gt; template. When I click on a line or draw my own the profile does not appear to be different then the out of box GPServer. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ESRI service uses 10m resolution. My data uses 1m. My data is only for a small area(the town I work for).&amp;nbsp; If I use the measure tool outside my data area I still get a result back. Is this because it uses ESRI data for areas that mine does not cover? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The only reference to a elevation profile I can find is in line 15. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;define(
[],
function() {
&amp;nbsp; var config = {
&amp;nbsp;&amp;nbsp;&amp;nbsp; bingMapsKey:"Arrzu_Koi7htDRMIwm6kTe0Nqh8FvVdN17blcaJVTEhn87z-tIYJh2LgBNbJS4fv",&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; units: null,
&amp;nbsp;&amp;nbsp;&amp;nbsp; helperServices: {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; geometry:{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; url: location.protocol + "//utility.arcgisonline.com/ArcGIS/rest/services/Geometry/GeometryServer"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; },
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; printTask: {
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; url: location.protocol + "//utility.arcgisonline.com/arcgis/rest/services/Utilities/PrintingTools/GPServer/Export%20Web%20Map%20Task"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; },
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; elevationSync:{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; url: location.protocol + "//gis.ashland.or.us/arcgis/rest/services/tools/StackProfile/GPServer"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; },
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; geocode: [{
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; url: location.protocol + "//geocode.arcgis.com/arcgis/rest/services/World/GeocodeServer"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }]
&amp;nbsp;&amp;nbsp;&amp;nbsp; },
&amp;nbsp;&amp;nbsp;&amp;nbsp; queryForOrg: true
};
&amp;nbsp; 
&amp;nbsp; // could use a has() test to optionally populate some global
&amp;nbsp; // property so that the stuff defined is in some global identifier
&amp;nbsp; //
&amp;nbsp; // instead, just populate a global, will need to remove the next line when
&amp;nbsp; // when we remove support for loading modules with dojo.require
&amp;nbsp; // which will be when we move to Dojo 2.0
&amp;nbsp; commonConfig = config;
&amp;nbsp; // instead of using a global, this should probably be added to some namespace...
&amp;nbsp; // do the templates have a common namespace that they use?


&amp;nbsp; return config;&amp;nbsp; 
});&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 09:09:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/is-my-elevation-geoprocessing-service-working/m-p/178483#M16527</guid>
      <dc:creator>RickeyFight</dc:creator>
      <dc:date>2021-12-11T09:09:08Z</dc:date>
    </item>
    <item>
      <title>Re: Is my Elevation Geoprocessing Service working?</title>
      <link>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/is-my-elevation-geoprocessing-service-working/m-p/178484#M16528</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="http://blogs.esri.com/esri/arcgis/2014/08/26/setting-up-your-own-profile-service/" title="http://blogs.esri.com/esri/arcgis/2014/08/26/setting-up-your-own-profile-service/"&gt;Setting up your own Profile Service | ArcGIS Blog&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Feb 2015 20:34:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-javascript-maps-sdk-questions/is-my-elevation-geoprocessing-service-working/m-p/178484#M16528</guid>
      <dc:creator>JohnGrayson</dc:creator>
      <dc:date>2015-02-24T20:34:04Z</dc:date>
    </item>
  </channel>
</rss>

