All Projects → kobesin → GeoConvert

kobesin / GeoConvert

Licence: MIT License
Converting between Geojson and GIS file formats

Programming Languages

javascript
184084 projects - #8 most used programming language
CSS
56736 projects

Projects that are alternatives of or similar to GeoConvert

Agstoshapefile
Convert ArcGIS Server Dynamic Map Service to GeoJSON and Shapefile
Stars: ✭ 172 (+437.5%)
Mutual labels:  geojson, gis, shapefile
Geotools
Official GeoTools repository
Stars: ✭ 1,109 (+3365.63%)
Mutual labels:  geojson, gis, shapefile
Mapshaper
Tools for editing Shapefile, GeoJSON, TopoJSON and CSV files
Stars: ✭ 2,813 (+8690.63%)
Mutual labels:  geojson, gis, shapefile
Gis Dataset Brasil
Geographic Information Systems (GIS) Dataset Brasil - Coleção de shapefiles, GeoJSON e TopoJSON prontas para uso
Stars: ✭ 121 (+278.13%)
Mutual labels:  geojson, gis, shapefile
togeojson
convert KML, TCX, and GPX to GeoJSON, without the fuss
Stars: ✭ 315 (+884.38%)
Mutual labels:  gpx, geojson, kml
shapefile-rs
Rust library to read & write shapefiles
Stars: ✭ 38 (+18.75%)
Mutual labels:  gis, shapefile
terraformer-wkt-parser
Well-Known Text parser for Terraformer
Stars: ✭ 66 (+106.25%)
Mutual labels:  geojson, wkt
GeoJSON.jl
Utilities for working with GeoJSON data in Julia
Stars: ✭ 46 (+43.75%)
Mutual labels:  geojson, gis
turf-go
A Go language port of Turf.js
Stars: ✭ 41 (+28.13%)
Mutual labels:  geojson, gis
geofiddle
Geometric conversions between different formats and projections
Stars: ✭ 15 (-53.12%)
Mutual labels:  geojson, wkt
open-geo-data-education
Open Geospatial Datasets for GIS Education: This is a repository of open geospatial datasets to be used in an educational context. I created these files over years of teaching Geographic Data Science and GIS. All original datasets are freely available online with open data licenses (see the dataset attribution for details). All the datasets in t…
Stars: ✭ 52 (+62.5%)
Mutual labels:  geojson, gis
covid hospitals demographics
COVID-19 relevant data on hospital location / capacity, nursing home location / capacity, county demographics
Stars: ✭ 21 (-34.37%)
Mutual labels:  gis, shapefile
BingMapsSDSToolkit
This toolkit makes it easy to use the Bing Maps Spatial Data Services (SDS) in .NET
Stars: ✭ 39 (+21.88%)
Mutual labels:  shapefile, kml
geofeatures2
A lightweight, high performance geometry library in Swift.
Stars: ✭ 18 (-43.75%)
Mutual labels:  geojson, wkt
pyturf
A modular geospatial engine written in python
Stars: ✭ 15 (-53.12%)
Mutual labels:  geojson, gis
geojson-to-wfs-t-2
A lightweight javascript module to format WFS-T-2 statements from GeoJSON features
Stars: ✭ 21 (-34.37%)
Mutual labels:  geojson, gis
GpsPrune
GpsPrune is a map-based application for viewing, editing and converting coordinate data from GPS systems.
Stars: ✭ 46 (+43.75%)
Mutual labels:  gpx, geojson
LocationMapViewer
Android App to view Locations in a map with support for gpx, kml and kmz data
Stars: ✭ 31 (-3.12%)
Mutual labels:  gpx, kml
django-graphql-geojson
GeoJSON support for Graphene Django
Stars: ✭ 61 (+90.63%)
Mutual labels:  geojson, gis
GeoJSON4EntityFramework
Create GeoJSON from Entity Framework Spatial Data or WKT
Stars: ✭ 18 (-43.75%)
Mutual labels:  geojson, wkt

GeoConvert

Converting between Geojson and GIS file formats

KML(KMZ), GPX, Shapefile, DXF(unfinished), WKT(unfinished)

Rreference the JavaScript file manually:

<script src="dist/GeoConvert.min.js"></script>

Note that coordinate transformations depend on proj4.js (this means proj4.js must be included before including the file).

<script src="lib/proj4.js"></script>

Usage

kml to geojson

GeoConvert.kml2Geojson(kml);

geojson to kml

GeoConvert.geojson2Kml(geojson);

gpx to geojson

GeoConvert.gpx2Geojson(kml);

geojson to gpx

GeoConvert.geojson2Gpx(geojson);

shapefile to geojson

//shapefile is a object that contain shp, dbf [arrayBuffer], prj? [string]
var shapefile = {};
shapefile.shp = arrayBuffer_shp;
shapefile.dbf = arrayBuffer_dbf;

//optional
shapefile.prj = string_prj;

GeoConvert.shapefile2Geojson(shapefile);

wkt to geojson

GeoConvert.wkt2Geojson(wkt);
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].