posted @ 2018-04-08 19:28
ParamousGIS
阅读(1165)
推荐(0)
posted @ 2018-04-08 19:27
ParamousGIS
阅读(255)
推荐(0)
posted @ 2018-04-08 19:09
ParamousGIS
阅读(506)
推荐(0)
posted @ 2018-04-08 18:50
ParamousGIS
阅读(737)
推荐(0)
posted @ 2018-04-08 18:43
ParamousGIS
阅读(205)
推荐(0)
posted @ 2018-04-08 18:32
ParamousGIS
阅读(220)
推荐(0)
posted @ 2018-04-08 18:23
ParamousGIS
阅读(185)
推荐(0)
posted @ 2018-04-08 18:08
ParamousGIS
阅读(387)
推荐(0)
摘要:
A Complete Tutorial to Learn Data Science with Python from Scratch Introduction It happened few years back. After working on SAS for more than 5 years, I decided to move out of my comfort zone. Being ...
阅读全文
posted @ 2017-10-02 20:20
ParamousGIS
阅读(938)
推荐(0)
posted @ 2017-07-28 20:01
ParamousGIS
阅读(331)
推荐(0)
摘要:
1.tutorial08.cpp // Include standard headers #include #include #include // Include GLEW #include // Include GLFW #include GLFWwindow* window; // Include GLM #include #include using namesp...
阅读全文
posted @ 2017-07-09 23:42
ParamousGIS
阅读(854)
推荐(0)
摘要:
1.tutorial07.cpp // Include standard headers #include #include #include // Include GLEW #include // Include GLFW #include GLFWwindow* window; // Include GLM #include #include using namesp...
阅读全文
posted @ 2017-07-09 23:08
ParamousGIS
阅读(2102)
推荐(0)
摘要:
1.tutorial06.cpp // Include standard headers #include #include // Include GLEW #include // Include GLFW #include GLFWwindow* window; // Include GLM #include #include using namespace glm;...
阅读全文
posted @ 2017-07-09 22:44
ParamousGIS
阅读(1688)
推荐(0)
摘要:
1.tutorial05.cpp // Include standard headers #include #include // Include GLEW #include // Include GLFW #include GLFWwindow* window; // Include GLM #include #include using namespace g...
阅读全文
posted @ 2017-07-09 15:47
ParamousGIS
阅读(736)
推荐(0)
摘要:
http://blog.csdn.net/o_sun_o/article/details/8351037 BMP文件格式详解 BMP文件格式详解(BMP file format) BMP文件格式,又称为Bitmap(位图)或是DIB(Device-Independent Device,设备无关位图),是Windows系统中广泛使用的图像文件格式。由于它可以不作任何变换地保存图像像素域的数据...
阅读全文
posted @ 2017-07-09 11:29
ParamousGIS
阅读(888)
推荐(0)
摘要:
1.tutorial04.cpp // Include standard headers #include #include // Include GLEW #include // Include GLFW #include GLFWwindow* window; // Include GLM #include #include using namespace glm; ...
阅读全文
posted @ 2017-07-09 10:45
ParamousGIS
阅读(1483)
推荐(0)
摘要:
Model--View--Projection 1.tutorial03.cpp // Include standard headers #include #include // Include GLEW #include // Include GLFW #include GLFWwindow* window; // Include GLM #include #...
阅读全文
posted @ 2017-07-09 09:27
ParamousGIS
阅读(491)
推荐(0)
摘要:
The OpenGL buffer is created, bound, filled and configured with the standard functions (glGenBuffers, glBindBuffer, glBufferData, glVertexAttribPointer) ; 1.tutorial02.cpp // Include standard...
阅读全文
posted @ 2017-07-09 08:07
ParamousGIS
阅读(771)
推荐(0)
摘要:
// Include standard headers #include <stdio.h> #include <stdlib.h> // Include GLEW #include <GL/glew.h> // Include GLFW #include <glfw3.h> GLFWwindow*
阅读全文
posted @ 2017-07-09 08:02
ParamousGIS
阅读(485)
推荐(0)
摘要:
1. VS2017 Professional安装 1.1. 下载 mu_visual_studio_professional_2017_x86_x64_10049787.exe 1.2. 双击开始安装 双击mu_visual_studio_professional_2017_x86_x64_1004
阅读全文
posted @ 2017-06-11 17:46
ParamousGIS
阅读(2332)
推荐(0)
摘要:
Cloud http://www.cnblogs.com/CloudMan6/tag/OpenStack/ 算法基础 http://www.cnblogs.com/ECJTUACM-873284962/p/6917031.html 海量数据处理算法总结【超详解】 http://www.cnblogs.com/ECJTUACM-873284962/p/6910842.html#37025...
阅读全文
posted @ 2017-05-29 18:18
ParamousGIS
阅读(189)
推荐(0)
摘要:
时间序列分析算法【R详解】 https://www.analyticsvidhya.com/blog/2015/12/complete-tutorial-time-series-modeling/ http://www.cnblogs.com/ECJTUACM-873284962/p/6917031.html 简介 在商业应用中,时间是最重要的因素,能够提升成功率。然而绝大多数公司很难跟上...
阅读全文
posted @ 2017-05-29 17:48
ParamousGIS
阅读(3967)
推荐(0)
摘要:
牛顿迭代法(Newton's Method) 简介 牛顿迭代法(简称牛顿法)由英国著名的数学家牛顿爵士最早提出。牛顿法的作用是使用迭代的方法来求解函数方程的根。简单地说,牛顿法就是不断求取切线的过程。对于形如f(x)=0的方程,首先任意估算一个解x0,再把该估计值代入原方程中。由于一般不会正好选择到正确的解,所以有f(x)=a。这时计算函数在x0处的斜率,和这条斜率与x轴的交点x1。f(x)=0...
阅读全文
posted @ 2017-05-29 15:58
ParamousGIS
阅读(813)
推荐(0)
摘要:
windows环境下,Intellij idea12中maven操作时,控制台中文乱码问题(编译报错或者clean install时出现的其他错误描述乱码) 在cmd中mvn中文正常显示,log4j打印日志也是ok的。 解决方法: Setting->maven->runner VMoptions:
阅读全文
posted @ 2017-04-03 22:12
ParamousGIS
阅读(561)
推荐(0)
摘要:
4.0.0 com.xxxx xxxx war 1.0-SNAPSHOT xxxx http://maven.apache.org com.mysql.jdbc.Driver 127.0.0.1 3306 xxxx root root 4.1.6.RELEASE ...
阅读全文
posted @ 2017-02-11 23:05
ParamousGIS
阅读(367)
推荐(0)
摘要:
PythonPython for VSCode Language Support for Java(TM) by Red HatJava Language SupportJava DebuggerJava SnippetsJava Properties HTML SnippetsHTML CSS S
阅读全文
posted @ 2017-02-11 22:58
ParamousGIS
阅读(2414)
推荐(0)
摘要:
1.tilestache.cfg 2. TileStacheTest.py 3. tilestache-seed tilestache-seed.py -b -33.8294 -71.0362 -33.1445 -70.3331 -p 0 -e geojson -c tilestache.cfg -
阅读全文
posted @ 2016-12-27 00:01
ParamousGIS
阅读(427)
推荐(0)
摘要:
1.加入YUM源 rpm -Uvh http://download.fedoraproject.org/pub/epel/7/x86_64/e/epel-release-7-8.noarch.rpm 2.更新 sudo yum update 3.安装软件 yum install qgis qgis-python qgis-grass qgis-mapserver
阅读全文
posted @ 2016-12-25 20:33
ParamousGIS
阅读(1764)
推荐(0)
摘要:
Mapbox Vector Tile Specification A specification for encoding tiled vector data. License The text of this specification is licensed under a Creative Commons Attribution 3.0 United States License. Howe...
阅读全文
posted @ 2016-12-18 21:12
ParamousGIS
阅读(810)
推荐(0)
摘要:
simplestyle-spec A simple specification for styling GeoJSON data. Versions 1.1.0 Adds properties to permit styling of Polygon and LineString types. 1.0.0 Initial release: this defines only three keys ...
阅读全文
posted @ 2016-12-18 21:06
ParamousGIS
阅读(501)
推荐(0)
摘要:
TileJSON TileJSON is an open standard for representing map metadata. License The text of this specification is licensed under a Creative Commons Attribution 3.0 United States License. However, the use...
阅读全文
posted @ 2016-12-18 20:57
ParamousGIS
阅读(1176)
推荐(0)
摘要:
MBTiles Specification MBTiles is a specification for storing tiled map data in SQLite databases for immediate usage and for transfer. MBTiles files, known as tilesets, must implement the specification...
阅读全文
posted @ 2016-12-18 20:36
ParamousGIS
阅读(1826)
推荐(0)
摘要:
UTFGrid UTFGrid is a specification for rasterized interaction data. As of version 1.2, it was removed from incubation in the MBTiles Specification and split into its own repository. See CHANGELOG.md f...
阅读全文
posted @ 2016-12-18 20:20
ParamousGIS
阅读(1163)
推荐(0)
摘要:
1. 安装pip。 我们同样需要在Python的官网上去下载,下载地址是: https://pypi.python.org/pypi/pip#downloads 2. 解压。 解压pip-9.0.1.tar.gz 3. 安装。 用cmd控制台进入解压目录,输入: python setup.py install 4. 验证。 pip –V
阅读全文
posted @ 2016-12-18 16:32
ParamousGIS
阅读(240)
推荐(0)
摘要:
http://blog.csdn.net/silentbalanceyh/article/details/4608360 (最终还是决定重新写一份Java基础相关的内容,原来因为在写这一个章节的时候没有考虑到会坚持往后边写,这次应该是更新该内容。而且很讨厌写基础的东西,内容比较琐碎,而且整理起来总会
阅读全文
posted @ 2016-12-18 11:31
ParamousGIS
阅读(696)
推荐(0)
摘要:
http://blog.csdn.net/silentbalanceyh/article/details/4608272 (最终还是决定重新写一份Java基础相关的内容,原来因为在写这一个章节的时候没有考虑到会坚持往后边写,这次应该是更新该内容。而且很讨厌写基础的东西,内容比较琐碎,而且整理起来总会很多,有可能会打散成两个章节,但是我不保证,有可能一个章节就写完了,所以有时候希望基础的很多内...
阅读全文
posted @ 2016-12-18 11:28
ParamousGIS
阅读(559)
推荐(0)
摘要:
遇到的俩种错误1.ValueError: zlib is required unless explicitly disabled using --disable-zlib, aborting 问题原因未知,博主尝试了一下解决方案可以解决问题。博主PC 是 Pthon3.4.3-win32pip install --upgrade pip 在cmd中更新一下pip,然后发现出现了第二个问题,权限问...
阅读全文
posted @ 2016-12-17 14:45
ParamousGIS
阅读(1810)
推荐(0)
摘要:
root用户使用yum install -y python-pip 时会报如下错误: No package python-pip available Error:Nothing to do 解决方法如下: 1)首先安装epel扩展源: yum -y install epel-release 2)更新完成之后,就可安装pip: yum -y install python-pip ...
阅读全文
posted @ 2016-12-17 13:50
ParamousGIS
阅读(303)
推荐(0)
摘要:
1.下载 wget https://nodejs.org/dist/v6.9.2/node-v6.9.2-linux-x64.tar.xz 2.解压 tar -xJf node-v6.9.2-linux-x64.tar.xz 3. 移到通用的软件安装目录 /opt/ mv node-v6.9.2-l
阅读全文
posted @ 2016-12-17 13:18
ParamousGIS
阅读(3558)
推荐(1)
摘要:
1.软件下载 postgresql-9.6.1-1-windows-x64-binaries.zip https://www.postgresql.org/download/windows/ postgis-bundle-pg96-2.3.1x64.zip http://download.osgeo
阅读全文
posted @ 2016-12-11 23:41
ParamousGIS
阅读(4134)
推荐(0)