您的位置:首页 > 大数据 > 人工智能

Esri specialist 在社区中对ArcGIS9.2 xy domain设定进行修改的原因的经典描述

2007-05-18 16:37 302 查看
If you set the coordinate system when creating a new feature class or dataset, we use the coordinate system's (map projection) valid extent. This is larger than the coordinate system's valid area of use. For example, in your case, the extent of North Carolina is the valid area of use. The 'valid extent' is what's supported mathematically by the Lambert conformal conic projection which covers a much larger area.

For geographic coordinate systems, the valid extent is greater than the world.

We usually set the minimum extent/domain and resolution values. That often means that the maximum values are much larger than required. This could happen prior to 9.2 too, but wasn't as obvious.

There are several reasons we do this. One is that we have the information available about the valid extent available now. Two, with "high precision" aka 64bit/53bit, we can support the valid extent and also maintain reasonable resolution values. If you use the actual area of use of your data in a high precision gdb, the resolution value will be ridiculously small, which can cause performance problems.

You may have seen the 2147483647 value before in connection with the pre-9.2 geodatabase? Values, after an internal conversion using the domain and precision (1/resolution), had to fit between 0 and 2147483647. At 9.2, we now use 2^53-2 or 9007199254740990 for the max permitted value. We have a lot more space to work with.

There's going to be a white paper on this, in a month or so.

So, the things to remember at 9.2 when setting up a feature class/dataset are:

1. set the coordinate system
2. The tolerance values should reflect the accuracy of your data.
2. The resolution values should be at least 10 times smaller than the corresponding tolerance values. The resolution values dictate the minimum distance between two points in the feature class.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐