摘要:
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN" "http://mybatis.org/dtd/mybatis-3-config.d 阅读全文
摘要:
背景 在ArcGIS 中无论是拓扑、shapefile文件、还是个人地理数据库都是设置有容差的,小于这个容差的自相交,都是无法检测到的。 解决办法 1. 通过postGIS导入工具导入shp, 并将多换设置为单环 2. 通过postGIS修复无效图形 update temp1 set geom =S 阅读全文
摘要:
一、OGC标准函数 1.管理函数 --添加几何字段 AddGeometryColumn(, , , , , ) --删除几何字段 DropGeometryColumn(, , ) --检查数据库几何字段并在geometry_columns中归档 Probe_Geometry_Columns() -- 阅读全文
摘要:
1 using System.Threading; 2 using System.Collections.Generic; 3 using GeoAPI.Geometries; 4 using NetTopologySuite.Geometries; 5 using NetTopologySuite 阅读全文
摘要:
1 using OSGeo.GDAL; 2 using OSGeo.OGR; 3 using System; 4 using System.Collections.Generic; 5 using System.IO; 6 using System.Runtime.Serialization.Jso 阅读全文
摘要:
安装Node 官网:https://nodejs.org/zh-cn/ 安装是否成功: node-v npm-v Vue脚手架安装 npm install -g @vue/cli 安装是否成功:vue -V npm unistall vue-cli -g 卸载, 安装高版本需要先卸载低版本 脚手架构 阅读全文
摘要:
-- 创建用户 CREATE USER thirdqueryuser WITH PASSWORD 'thirduser@#123.'; --赋予登录权限 grant connect on database hncyjjq to thirdqueryuser; --系统表权限清空:防止用户登录上去就能 阅读全文
摘要:
安装vuex npm install vuex --save 介绍 state 存储单一状态, 是存储的基本数据 getters 是 store 的计算属性, 对 state 加工, 是派生出来的数据, 就像计算属性一样,getters 返回的值会根据他的依赖缓存欺来, 且只有当他的依赖值发生改变的 阅读全文