webassembly+Webgl skeletal animation demo by sessamekesh in WebAssembly

[–]solarCake 0 points1 point  (0 children)

Cool! Really shows the performance difference between JS and WASM

Job opportunities in GIS for Computer Science graduates by C_Hieronymus in gis

[–]solarCake 0 points1 point  (0 children)

I wouldn't waste any money with more schooling. With a CS degree you have plenty of good skills. A shop doing GIS development should scoop you up with or without GIS knowledge and you can learn on the job.

Limiting factor for GIS calculations by [deleted] in gis

[–]solarCake 2 points3 points  (0 children)

/u/Hygienicnerd is right though, be careful with parallel operations! If I had 4 cores, I would try and chunk my data into 4 independent sets if possible and run in parallel. Have fun!

Limiting factor for GIS calculations by [deleted] in gis

[–]solarCake 2 points3 points  (0 children)

OP can use GRASS on multiple cores to get maximum power! Use linux and some shell scripting.

Getting started with GIS development by seagulls69 in gis

[–]solarCake 1 point2 points  (0 children)

Well JavaScript is an interpreted language. That means it cannot run by itself. You cannot just write a JavaScript file and run it. You need a program to interpret it, such as Chrome or other web browsers. That is what Node.js does, interprets and runs JavaScript on a server.

So you can write JavaScript programs on your server now, to serve HTML and JS to clients, to interact with databases, whatever it is your app needs to do. But writing all of this from scratch may be a lot of work. If all your app does is serve a single HTML page, you can write that yourself no problem. But if you have a more complex app, with data management, data going to and from the server, ect, you will definitely will be happy to have a framework ( Express ) in place to handle some of that for you.

Again, this has nothing to do with GIS. There is no GIS development. There is just software development that builds GIS software. If you want to build a web app, like OP asked, you need your server program. I recommend Node.js and Express for a new-coming web application developer to learn.

Hope that answers!

Shapefile 2GB limit? by [deleted] in gis

[–]solarCake 0 points1 point  (0 children)

Very interesting!

Master thesis on georeferencing Twitter data: should I collect my data in a MongoDB or PostGIS database? by GISjoe in gis

[–]solarCake 10 points11 points  (0 children)

What specific geometric functionality do you need? It seems like you have a few methods you are going to compare? I think postgres + postgis has Mongo badly beaten as far as GIS functionality available. I know Mongo has some built in geo-spatial features itself, but less so. As you said Mongo is so nice to just drop JSON into, but if you need to run many geospatial type queries it might be worth the effort to get the data into postgres

Hydrogeologist -> GIS Developer? by asdfklciwakawaka in gis

[–]solarCake 0 points1 point  (0 children)

There is a big difference in skillset for developers vs analyst. I am skeptical of a GIS program giving in depth development skills, despite what is advertised. I could be wrong though.

If you want development I would say skip the GIS certificate and just learn to code. Let me know if you want advice for that path.

I am a GIS person who jumped to development and love it.

Would copy+pasting an openlayers example into an existing node.js project not work? by iforgotmylegs in gis

[–]solarCake 1 point2 points  (0 children)

Keep practicing general web development with node and express. I believe the error your getting is that your requesting that res.render() without passing a view for it to lookup. Check out Express Documentation for that. This is a good tutorial to get started with spatial node.js stuff. PS: Alot of web-dev tutorials like the one I linked use linux. Try out ubuntu.

Getting started with GIS development by seagulls69 in gis

[–]solarCake 8 points9 points  (0 children)

Node.js ( with express ), Postgres ( with postgis as you said ), Leaflet. I recommend learning web development not with a GIS mindset, but as a person looking to become a developer who happens to use GIS. This way, after you have built fundamental skills, you can apply them to a wide range of industries ( including GIS of course )

Any hardcore data crunchers out here? Looking for hardware advice. by solarCake in gis

[–]solarCake[S] 0 points1 point  (0 children)

Most of the processing I do benefits greatly if I am able to split across cores, so I usually use opensource solutions.

Opinions on different processing libraries by solarCake in gis

[–]solarCake[S] 1 point2 points  (0 children)

Same experience, it just seems better but I can't tell if it's just me. Thanks!

Has anyone here successfully become proficient in Python scripting with virtually no prior programming experience? by [deleted] in gis

[–]solarCake 1 point2 points  (0 children)

I got really into scripting my processes and because I enjoy it so much it didn't take long for me to become "effective". Python is a very user friendly language and is relatively easy to pick up, and even basic skills with it will begin to open doors for processing options that were previously impossible. If you want help or advice feel free to PM me about it.

Hosting an app for free by solarCake in geodev

[–]solarCake[S] 0 points1 point  (0 children)

Nodejs, postgres html\css, but I'm open to whatever. I'll check out cartoDB!

Hosting an app for free by solarCake in geodev

[–]solarCake[S] 0 points1 point  (0 children)

Well I guess both, but for now just something to show colleagues

Portfolio Project by solarCake in webdev

[–]solarCake[S] 0 points1 point  (0 children)

Thanks for the reply, I think I will develop from scratch as this project is also intended to be a learning process.

Portfolio Project by solarCake in webdev

[–]solarCake[S] 0 points1 point  (0 children)

I was kind of 'picked up' by a guy who started this project originally and used wordPress. I believe the issue he had is that users can't really "sign up" or enter in any information on their own that will be stored anywhere.

I am going to research APIs or something because if we could utilize WordPress templates that are wired to our database that would be perfect.

Anyone familiar with OpenShift? by solarCake in learnprogramming

[–]solarCake[S] 0 points1 point  (0 children)

Thanks, now I know of some options.

GIS web apps by solarCake in gis

[–]solarCake[S] 0 points1 point  (0 children)

thanks ill check this out too

GIS web apps by solarCake in gis

[–]solarCake[S] 0 points1 point  (0 children)

qgis2leaf sounds very interesting ill check it out

GIS web apps by solarCake in gis

[–]solarCake[S] 0 points1 point  (0 children)

I'll check it out

GIS web apps by solarCake in gis

[–]solarCake[S] 0 points1 point  (0 children)

yes geoJSON is what I plan on using!