国家2000坐标系CGCS2000(EPSG4490和EPSG4479)参数

本文详细介绍了中国2000坐标系(CGCS2000),包括其经纬度坐标系(EPSG:4490)和平面坐标系(EPSG:4479)的具体参数。涵盖了坐标系的单位、椭球体、基准面、数据源、应用范围等关键信息。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

EPSG:4490

China Geodetic Coordinate System 2000 (CGCS2000)经纬度坐标系

Unit: degree (supplier to define representation)

Geodetic CRS: China Geodetic Coordinate System 2000

Datum: China 2000

Ellipsoid: CGCS2000

Prime meridian: Greenwich

Data source: OGP

Information source: EPSG. See 3D CRS for original information source.

Revision date: 2012-01-05

Scope: Horizontal component of 3D system.

Remarks: Adopted July 2008. Replaces Xian 1980 (CRS code 4610).

Area of use: China - onshore and offshore.

Coordinate system: Ellipsoidal 2D CS. Axes: latitude, longitude. Orientations: north, east. UoM: degree

Center coordinates
104.19500000 35.13000000

WGS84 bounds:
73.62 16.7
134.77 53.56

Well Known Text (WKT):

GEOGCS["China Geodetic Coordinate System 2000",
    DATUM["China_2000",
        SPHEROID["CGCS2000",6378137,298.257222101,
            AUTHORITY["EPSG","1024"]],
        AUTHORITY["EPSG","1043"]],
    PRIMEM["Greenwich",0,
        AUTHORITY["EPSG","8901"]],
    UNIT["degree",0.0174532925199433,
        AUTHORITY["EPSG","9122"]],
    AUTHORITY["EPSG","4490"]]

EPSG:4479

China Geodetic Coordinate System 2000 (CGCS2000)平面坐标系

Unit: metre

Geodetic CRS: China Geodetic Coordinate System 2000

Datum: China 2000

Ellipsoid: CGCS2000

Prime meridian: Greenwich

Data source: OGP

Information source: Chinese Academy of Surveying and Mapping.

Revision date: 2012-01-05

Scope: Geodetic survey.

Area of use: China - onshore and offshore.

Coordinate system: Earth centred, earth fixed, righthanded 3D coordinate system, consisting of 3 orthogonal axes with X and Y axes in the equatorial plane, positive Z-axis parallel to mean earth rotation axis and pointing towards North Pole. UoM: m.

Center coordinates
-1280587.98 5062692.16

Projected bounds:
1723289.26 5862789.57
-2673890.41 2695444.42

WGS84 bounds:
73.62 16.7
134.77 53.56

Well Known Text (WKT):

GEOCCS["China Geodetic Coordinate System 2000",
    DATUM["China_2000",
        SPHEROID["CGCS2000",6378137,298.257222101,
            AUTHORITY["EPSG","1024"]],
        AUTHORITY["EPSG","1043"]],
    PRIMEM["Greenwich",0,
        AUTHORITY["EPSG","8901"]],
    UNIT["metre",1,
        AUTHORITY["EPSG","9001"]],
    AXIS["Geocentric X",OTHER],
    AXIS["Geocentric Y",OTHER],
    AXIS["Geocentric Z",NORTH],
    AUTHORITY["EPSG","4479"]]

参考:

1、http://epsg.io/4490 

2、https://epsg.io/4479

在Vue中实现WGS84坐标系CGCS2000坐标系的过程可以分为以下几个步骤: 1. 引入必要的库模块: 首先,你需要引入相关的库模块,以便在Vue应用程序中实现坐标转换。可以使用JavaScript的`proj4`库来进行坐标转换。你可以通过npm或yarn等包管理器来安装它。 ```bash npm install proj4 ``` 或者 ```bash yarn add proj4 ``` 2. 导入必要的投影参数: 在Vue组件中,你需要导入WGS84坐标系CGCS2000坐标系的投影参数。可以使用`proj4`库提供的`defs`方法来导入这些参数。 ```javascript import proj4 from 'proj4'; // 导入WGS84投影参数 proj4.defs([ 'EPSG:4326', // WGS84坐标系(经度/纬度) ]); // 导入CGCS2000投影参数(根据实际情况导入) // ... ``` 3. 实现坐标转换方法: 在Vue组件中,你可以创建一个方法来实现WGS84坐标系CGCS2000坐标系的转换。可以使用`proj4`库提供的`transform`方法来进行坐标转换。 ```javascript methods: { convertCoordinates(wgs84Coordinates) { const cgcsc2000Coordinates = proj4(wgs84Coordinates.projCode, 'EPSG:4490'); // 替换为实际的CGCS2000投影代码 return cgcsc2000Coordinates; }, }, ``` 其中,`wgs84Coordinates`是一个包含经度、纬度等属性的对象,用于表示WGS84坐标系的坐标。`projCode`表示转换所需的投影代码(在上面的示例中为'EPSG:4490')。你需要根据你的实际情况来替换投影代码。 4. 使用转换方法: 在Vue组件的适当位置,你可以调用上面创建的`convertCoordinates`方法来将WGS84坐标系转换为CGCS2000坐标系。例如,可以在数据绑定、计算属性或方法中调用该方法。 ```html <template> <div> <!-- 在模板中使用转换后的坐标 --> <p>WGS84坐标: {{ wgs84Coordinates }}</p> <p>CGCS2000坐标: {{ cgcsc2000Coordinates }}</p> </div> </template> ``` 确保在模板中使用转换后的坐标值时,将其作为数据绑定或计算属性的返回值。这样,你就可以在Vue应用程序中实现WGS84坐标系CGCS2000坐标系的转换了。 请注意,上述示例中的投影代码参数可能需要根据实际情况进行调整。确保你使用正确的投影代码参数来进行正确的坐标转换。此外,还需要考虑其他因素,如偏移量缩放级别等,以确保转换结果的准确性。
评论 6
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值