arcgis坡度分析10.2笔记本电脑分析坡度出现 error 999999

ArcGIS坡度分析出错_百度知道
ArcGIS坡度分析出错
在ArcGIS中,利用等高线生成的DEM栅格文件进行坡度分析,结果总是出错,坡度完全没有差别由等高线生成的DEM文件执行坡度分析的结果是这样的!哪位大大给解释下,哪里出问题了?
我有更好的答案
用百分比输出试试,栅格大小设置的是否合适,再就是到分析环境里面看看有没有设置有误的项
用百分比输出可以的,是什么原因呢
应该是跟你的DEM数据有关,不就是数据本身就这样,或者是格式问题,你可以转成8位正型值试试
采纳率:27%
ArcToolBox——Data Management Tools——Projections and Transformations——Raster——Project Rasteroutput coordinate system——select——projected coordinate systems——continential——asia——lambertmodify——central:110 &standard_1:25 &standard_2:47
1条折叠回答
为您推荐:
其他类似问题
arcgis的相关知识
换一换
回答问题,赢新手礼包
个人、企业类
违法有害信息,请在下方选择后提交
色情、暴力
我们会通过消息、邮箱等方式尽快将举报结果通知您。arcgis10.2笔记本电脑分析坡度出现 error 999999_百度知道
arcgis10.2笔记本电脑分析坡度出现 error 999999
希望有点实质性建议。
我有更好的答案
要看输入的参数,把做坡度分析时输入参数的界面贴图出来帮你看。或者可以私信我帮你!
为您推荐:
其他类似问题
换一换
回答问题,赢新手礼包
个人、企业类
违法有害信息,请在下方选择后提交
色情、暴力
我们会通过消息、邮箱等方式尽快将举报结果通知您。OAuth Popup | ArcGIS API for JavaScript 3.24
Hide Table of Contents
Latest Samples
Data Reviewer
Directions and Routing
Dynamic Layers
Feature Layers
Feature Table
Image Layers
Online and Portal
Popups and Info Windows
Query and Select
Renderers, Symbols, Visualization
Tiled Layers
OAuth Popup
DescriptionThis sample uses OAuth 2.0 to allow users to log in to the ArcGIS platform via the app. More detailed information about user logins and OAuth 2.0 can be found.
The popup web flow is similar to the &inline& flow, however, the sign in page is within a popup window.
Beginning with version 3.10, support for OAuth2 authentication is provided directly in the ArcGIS for JavaScript API's Identity Manager. This built-in functionality handles a lot of the fine-grained work that you would typically have to do when implementing this type of authentication.
The Identity Manager component simplifies the process of working with the token by appending it to requests and acquiring a new token when necessary. All you need to do is create an
object and specify the appId you received when registering your application. Additionally, you can set the popup property to true if you want to display the OAuth sign-in page in a popup window. After this is set, pass this OAuthInfo object to the IdentityManager's
method and the Identity Manager takes care of the rest.
var info = new OAuthInfo({
appId: &&pass in your application id here&&,
popup: true
esriId.registerOAuthInfos([info]);
The Identity Manager also honors whether or not you choose to remain signed in via a &Keep me signed in& checkbox. This provides the option to save your credentials within local storage so as to not have to repeatedly sign in when accessing the application. If uncertain as to whether a user is already logged in, use the IdentityManager checkSignInStatus method. This method takes a given portal URL and returns the credentials of the user if they are already signed in.
To run this sample on your own web server you need to register your application on ArcGIS.com. Once the application is registered you will get an appid that you use in the sample.
The ArcGIS Help has step-by-step information on .
&!DOCTYPE HTML&
&meta http-equiv="Content-Type" content="text/ charset=utf-8" /&
&meta name="viewport" content="initial-scale=1, maximum-scale=1,user-scalable=no" /&
&title&ArcGIS Online Items&/title&
&link rel="stylesheet" href="https://js.arcgis.com/3.24compact/dijit/themes/claro/claro.css"&
html, body {
font-family: Lucida Sans, Lucida Grande, Arial !
font-size: 14
width: 100%;
height: 100%;
padding: 0
.esri-item-gallery .esri-item-container {
text-align:
padding: 10
width: 204
display: inline-
.esri-item-gallery .esri-image {
width: 200
height: 133
border-radius: 5
.esri-item-gallery .esri-null-image {
line-height: 133
text-align:
color: #999999;
.esri-item-gallery .esri-title {
white-space:
text-overflow:
.esri-item-gallery .esri-null-title {
color: #999999;
text-decoration:
&script src="https://js.arcgis.com/3.24compact/"&&/script&
"esri/arcgis/Portal", "esri/arcgis/OAuthInfo", "esri/IdentityManager",
"dojo/dom-style", "dojo/dom-attr", "dojo/dom", "dojo/on", "dojo/_base/array",
"dojo/domReady!"
], function (arcgisPortal, OAuthInfo, esriId,
domStyle, domAttr, dom, on, arrayUtils){
var info = new OAuthInfo({
appId: "q244Lb8gDRgWQ8hM",
// Uncomment the next line and update if using your own portal
//portalUrl: "https://&host&:&port&/arcgis"
// Uncomment the next line to prevent the user's signed in state from being shared
// with other apps on the same domain with the same authNamespace value.
//authNamespace: "portal_oauth_popup",
popup: true
esriId.registerOAuthInfos([info]);
esriId.checkSignInStatus(info.portalUrl + "/sharing").then(
function (){
displayItems();
).otherwise(
function (){
// Anonymous view
domStyle.set("anonymousPanel", "display", "block");
domStyle.set("personalizedPanel", "display", "none");
on(dom.byId("sign-in"), "click", function (){
console.log("click", arguments);
// user will be shown the OAuth Sign In page
esriId.getCredential(info.portalUrl + "/sharing", {
oAuthPopupConfirmation: false
).then(function (){
displayItems();
on(dom.byId("sign-out"), "click", function (){
esriId.destroyCredentials();
window.location.reload();
function displayItems(){
new arcgisPortal.Portal(info.portalUrl).signIn().then(
function (portalUser){
console.log("Signed in to the portal: ", portalUser);
domAttr.set("userId", "innerHTML", portalUser.fullName);
domStyle.set("anonymousPanel", "display", "none");
domStyle.set("personalizedPanel", "display", "block");
queryPortal(portalUser);
).otherwise(
function (error){
console.log("Error occurred while signing in: ", error);
function queryPortal(portalUser){
var portal = portalUser.
//See list of valid item types here:
http://www.arcgis.com/apidocs/rest/index.html?itemtypes.html
//See search reference here:
http://www.arcgis.com/apidocs/rest/index.html?searchreference.html
var queryParams = {
q: "owner:" + portalUser.username,
sortField: "numViews",
sortOrder: "desc",
portal.queryItems(queryParams).then(createGallery);
function createGallery(items){
var htmlFragment = "";
arrayUtils.forEach(items.results, function (item){
htmlFragment += (
"&div class=\"esri-item-container\"&" +
item.thumbnailUrl ?
"&div class=\"esri-image\" style=\"background-image:url(" + item.thumbnailUrl + ");\"&&/div&" :
"&div class=\"esri-image esri-null-image\"&Thumbnail not available&/div&"
item.title ?
"&div class=\"esri-title\"&" + (item.title || "") + "&/div&" :
"&div class=\"esri-title esri-null-title\"&Title not available&/div&"
dom.byId("itemGallery").innerHTML = htmlF
&body class="claro"&
&div id="anonymousPanel" style="display: padding: 5 text-align:"&
&span id="sign-in" class="action"&Sign In&/span& and view your ArcGIS Online items.
&div id="personalizedPanel" style="display: padding: 5 text-align:"&
Welcome &span id="userId" style="font-weight:"&&/span&
&span id="sign-out" class="action"&Sign Out&/span&
&div id="itemGallery" class="esri-item-gallery" style="width: 100%;"&&/div&
Keyboard shortcuts
Site wide shortcuts
Bring up this help dialog
Dismiss this help dialog
Go to Home
Go to Guide
Go to API Reference
Go to Sample Code
Scroll to top of page
Scroll page down
shift spacebar
Scroll page up
Scroll to bottom of page
Sample Code
/Focus searchesExplore in the SandboxsShare in online code editorvlView live example& & & &本文主要介绍在用ArcGIS做坐标系转换过程中可能会遇到的一个问题,并分析其原因和解决方案。
& & & &如下图,对一份数据做坐标系转换:
& & & &过了一会儿,转换失败了。错误消息如下:
& & & &&消息&中提示,&执行函数出错 invalid extent for output coordinate system&,从这句话本人看不出多大的端倪。找高人指点得知,
这份数据的投影坐标是高斯-克吕格投影38度带的,但它的坐标系确是114的(右键地图显示区域,点击数据框属性
& & & & & & & & & & & & & & &&
& & & &显示坐标系为:Xian 1980 3 Degree GK CM 114
& & & & & & & & & & & & &
& & & & 所以,我们必须给这份数据添加一个高斯-克吕格投影38度带的
坐标系,然后再做&投影&(由高斯-克吕格38度带转换为地理坐标系)。
解决方案:
& & & 定义38度投影
& & & 更改应用:定义结束之后,图框内的地图消失了,右键打开&数据框属性&,然后发现其坐标系依然是114的,说明数据框的坐标系还没有更新过来。将数据框的坐标系改为38度,
便可以正确地显示38度的地图了。或者也可以将数据关闭,从新打开一次,也可以正确看到地图。
& & &坐标转化为地理坐标之后,右下角显示的单位可能还是&米&,此时,打开&数据框 属性&,按如下图选中&度十进分制&:
& & & & & & & & & &&
& & & 自此,坐标系转化就算成功了。
阅读(...) 评论()arcgis error 000539_中华文本库
非常遗憾!在本库中没有找到与&"arcgis error 000539"&相关的文本

我要回帖

更多关于 arcgis坡度 的文章

 

随机推荐