All Projects → JuliaGeo → Proj4.jl

JuliaGeo / Proj4.jl

Licence: other
Julia wrapper for the PROJ cartographic projections library

Programming Languages

julia
2034 projects

Projects that are alternatives of or similar to Proj4.jl

Solaris
CosmiQ Works Geospatial Machine Learning Analysis Toolkit
Stars: ✭ 290 (+1160.87%)
Mutual labels:  gis, geospatial, geo
GMT.jl
Generic Mapping Tools Library Wrapper for Julia
Stars: ✭ 148 (+543.48%)
Mutual labels:  geo, geospatial, gis
Shapefile.jl
Parsing .shp files in Julia
Stars: ✭ 40 (+73.91%)
Mutual labels:  gis, geospatial, geo
georaster-layer-for-leaflet
Display GeoTIFFs and soon other types of raster on your Leaflet Map
Stars: ✭ 168 (+630.43%)
Mutual labels:  geo, geospatial, gis
Orb
Types and utilities for working with 2d geometry in Golang
Stars: ✭ 378 (+1543.48%)
Mutual labels:  gis, geospatial, geo
GeoJSON.jl
Utilities for working with GeoJSON data in Julia
Stars: ✭ 46 (+100%)
Mutual labels:  geo, geospatial, gis
Awesome Gis
😎Awesome GIS is a collection of geospatial related sources, including cartographic tools, geoanalysis tools, developer tools, data, conference & communities, news, massive open online course, some amazing map sites, and more.
Stars: ✭ 2,582 (+11126.09%)
Mutual labels:  gis, geospatial, geo
pyturf
A modular geospatial engine written in python
Stars: ✭ 15 (-34.78%)
Mutual labels:  geo, geospatial, gis
Mapsui
Mapsui is a .NET Map component for WPF, Xamarin.Forms, Xamarin.Android, Xamarin.iOS and UWP
Stars: ✭ 447 (+1843.48%)
Mutual labels:  gis, geospatial, geo
turf-go
A Go language port of Turf.js
Stars: ✭ 41 (+78.26%)
Mutual labels:  geo, geospatial, gis
Go Geom
Package geom implements efficient geometry types for geospatial applications.
Stars: ✭ 456 (+1882.61%)
Mutual labels:  gis, geospatial, geo
Osmnx
OSMnx: Python for street networks. Retrieve, model, analyze, and visualize street networks and other spatial data from OpenStreetMap.
Stars: ✭ 3,357 (+14495.65%)
Mutual labels:  gis, geospatial
Grass
GRASS GIS - free and open source Geographic Information System (GIS)
Stars: ✭ 281 (+1121.74%)
Mutual labels:  gis, geospatial
Geospatial Machine Learning
A curated list of resources focused on Machine Learning in Geospatial Data Science.
Stars: ✭ 289 (+1156.52%)
Mutual labels:  gis, geospatial
Geopython
Notebooks and libraries for spatial/geo Python explorations
Stars: ✭ 268 (+1065.22%)
Mutual labels:  geospatial, geo
Election Geodata
Precinct shapes (and vote results) for US elections past, present, and future
Stars: ✭ 289 (+1156.52%)
Mutual labels:  geospatial, geo
Awesome Gee
A curated list of Google Earth Engine resources
Stars: ✭ 292 (+1169.57%)
Mutual labels:  gis, geospatial
H3 Py
Python bindings for H3, a hierarchical hexagonal geospatial indexing system
Stars: ✭ 354 (+1439.13%)
Mutual labels:  gis, geospatial
Whitebox Tools
An advanced geospatial data analysis platform
Stars: ✭ 362 (+1473.91%)
Mutual labels:  gis, geospatial
QGeoView
QGeoView is a Qt / C ++ widget for visualizing geographic data.
Stars: ✭ 33 (+43.48%)
Mutual labels:  geo, geospatial

Proj4.jl

CI

A simple Julia wrapper around the PROJ cartographic projections library.

Basic example:

using Proj4

wgs84 = Projection("+proj=longlat +datum=WGS84 +no_defs")
utm56 = Projection("+proj=utm +zone=56 +south +datum=WGS84 +units=m +no_defs")

transform(wgs84, utm56, [150 -27 0])
# Should result in [202273.913 7010024.033 0.0]

API documentation for the underlying C API may be found here: https://proj.org/development/reference/index.html

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].