All Projects → geoscript → Geoscript Js

geoscript / Geoscript Js

Licence: mit
A JavaScript Implementation of GeoScript

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Geoscript Js

Geotools
Official GeoTools repository
Stars: ✭ 1,109 (+1440.28%)
Mutual labels:  gis, geospatial
Proj4.jl
Julia wrapper for the PROJ cartographic projections library
Stars: ✭ 23 (-68.06%)
Mutual labels:  gis, geospatial
Earthengine Py Notebooks
A collection of 360+ Jupyter Python notebook examples for using Google Earth Engine with interactive mapping
Stars: ✭ 807 (+1020.83%)
Mutual labels:  gis, geospatial
Orb
Types and utilities for working with 2d geometry in Golang
Stars: ✭ 378 (+425%)
Mutual labels:  gis, geospatial
Geemap
A Python package for interactive mapping with Google Earth Engine, ipyleaflet, and folium
Stars: ✭ 959 (+1231.94%)
Mutual labels:  gis, geospatial
Mapsui
Mapsui is a .NET Map component for WPF, Xamarin.Forms, Xamarin.Android, Xamarin.iOS and UWP
Stars: ✭ 447 (+520.83%)
Mutual labels:  gis, geospatial
Lpfmpoints
Evolution of LPFM Stations
Stars: ✭ 19 (-73.61%)
Mutual labels:  gis, geospatial
H3 Py
Python bindings for H3, a hierarchical hexagonal geospatial indexing system
Stars: ✭ 354 (+391.67%)
Mutual labels:  gis, geospatial
Cesium
An open-source JavaScript library for world-class 3D globes and maps 🌎
Stars: ✭ 8,095 (+11143.06%)
Mutual labels:  gis, geospatial
Rlur
Shiny dashboard for Land Use Regression modelling
Stars: ✭ 8 (-88.89%)
Mutual labels:  gis, geospatial
Geotiff.io
Static website for viewing and analyzing GeoTIFF's in the browser
Stars: ✭ 53 (-26.39%)
Mutual labels:  gis, geospatial
Urbansprawl
Open framework for calculating spatial urban sprawl indices and performing disaggregated population estimates using open data
Stars: ✭ 48 (-33.33%)
Mutual labels:  gis, geospatial
Blendergis
Blender addons to make the bridge between Blender and geographic data
Stars: ✭ 4,642 (+6347.22%)
Mutual labels:  gis, geospatial
Go Geom
Package geom implements efficient geometry types for geospatial applications.
Stars: ✭ 456 (+533.33%)
Mutual labels:  gis, geospatial
Whitebox Tools
An advanced geospatial data analysis platform
Stars: ✭ 362 (+402.78%)
Mutual labels:  gis, geospatial
Agentmaps
Make social simulations on interactive maps with Javascript! Agent-based modeling for the web.
Stars: ✭ 822 (+1041.67%)
Mutual labels:  gis, geospatial
Awesome Gee
A curated list of Google Earth Engine resources
Stars: ✭ 292 (+305.56%)
Mutual labels:  gis, geospatial
Cga.js
CGA 3D 计算几何算法库 | 3D Compute Geometry Algorithm Library webgl three.js babylon.js等任何库都可以使用
Stars: ✭ 313 (+334.72%)
Mutual labels:  gis, geospatial
Postgis
PostGIS spatial database extension to PostgreSQL [mirror]
Stars: ✭ 925 (+1184.72%)
Mutual labels:  gis, geospatial
Shapefile.jl
Parsing .shp files in Julia
Stars: ✭ 40 (-44.44%)
Mutual labels:  gis, geospatial

Current Status

Build Status

geoscript.js

GeoScript in JavaScript

Copyright (c) 2009-2013 Tim Schaub

Released under the MIT license. Please see the license.txt for full detail.

Download and Installation

The latest release of GeoScript JS can be found on the downloads page. To install, extract the zip archive somewhere onto your filesystem. In the bin folder you'll find a geoscript executable. Adding this bin folder to your path makes for easy launching of GeoScript from anywhere.

Running GeoScript JS

Change into the directory where you extracted the GeoScript JS download. From there, you can launch the GeoScript JS shell.

./bin/geoscript-js

Once running the shell, you can pull in GeoScript modules with require.

js> var geom = require("geoscript/geom")
js> var p = new geom.Point([1, 2])
js> p.buffer(10)
<Polygon [[[11, 2], [10.807852804032304, 0.04909677983871763], [10.23...>

When you're done in the shell, exit with quit().

js> quit()

To run a script that uses the GeoScript JS modules, include the path to your script.

./bin/geoscript-js yourscript.js

Learning GeoScript JS

See the GeoScript JS website for details on getting started using GeoScript JS.

Getting set up for development

If you'd like to contribute to GeoScript JS development, clone the repository and then use Maven to pull in dependencies and run tests.

git clone git://github.com/tschaub/geoscript-js.git
cd geoscript-js
mvn install

After pulling down the dependencies, you can launch the shell and use GeoScript JS modules as described above - with one exception: use the geoscript-dev script in the bin directory.

Generating a release

Update version numbers in the main pom.xml file. Generate an archive with all dependencies included:

mvn assembly:single

Deploy both the stand-alone archive and a jar with just the GeoScript JS modules (that depends on GeoTools):

mvn deploy
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].