For each ArcGIS tool there is a replacement
Welcome,
This guide-in-the-making is meant for ArcGIS users wanting to make the switch to open source solutions.
If you know how to do operations in ArcGIS and want to know how to them in QGIS, GDAL, GEOS, GRASS or any other open source way, you're welcome to see if the solution is already here.
If you want to contribute, you can edit you HTML content here, or upload a word document which i'll convert to HTML so everyone can access and enjoy it.
Any and all help is welcome, as are requests and questions in the issues section of the repository in github.
If you want to publish content and don't know how, check out the sample html file found here.
How Are We Doing So Far
- Basic GIS Operations - 9 Pages out of 13 planned
- Analysis Toolbox - 4 Pages out of 23 planned
- Conversion Toolbox - 0 Pages out of 9 toolsets planned (check Exporting Data to see if what you need might be there)
- Data Management Toolbox - 0 Pages out of 29 toolsets planned
- Geocoding Toolbox - 0 Pages out of 7 planned
- Network Analyst Toolbox - 0 Pages out of 32 planned
- Spatial Analyst Toolbox - 0 Pages out of 23 toolsets planned
- Spatial Statistics Toolbox - 0 Pages out of 26 planned
Open Source GIS Software You Should Know
- QGIS - Is the leading OS desktop GIS software, most of the examples currently in the guide are provided on QGIS version 3.4 which is the new LTR.
- PostgreSQL - Is an OS SQL database which can store and query spatial data using the PotsGIS extension (which is provided with the default installer)
Open Source GIS Formats You Should Know
- GeoPackage is an open, standards-based, platform-independent, portable, self-describing, compact format for transferring geospatial information.
It can be used to replace both the shapefile format to store a single feature layer (or raster) or an entire FileGeoDataBase as it is based on the single file SQL DataBase of Sqlite.
The GeoPackage Encoding Standard describes a set of conventions for storing the following within an SQLite database:- vector features
- tile matrix sets of imagery and raster maps at various scales
- attributes (non-spatial data, just tables)
- extensions
- GeoJSON is a format for encoding a variety of geographic data structures. It's simple, easy to write and use, and can be sent anywhere as it is a textual description of your data GeoJSON supports the following geometry types: Point, LineString, Polygon, MultiPoint, MultiLineString, and MultiPolygon. Geometric objects with additional properties are Feature objects. Sets of features are contained by FeatureCollection objects.
- Spatialite is an open source library intended to extend the SQLite core to support fully fledged Spatial SQL capabilities. SQLite is intrinsically simple and lightweight:
There are others, like GML, KML etc. but this are basic and easy to use formats, readable in both desktop and web GIS.