Skip to content

KolesovDmitry/featureserver

 
 

Repository files navigation

 ___         _                ___                      
| __|__ __ _| |_ _  _ _ _ ___/ __| ___ _ ___ _____ _ _ 
| _/ -_) _` |  _| || | '_/ -_)__ \/ -_) '_\ V / -_) '_|
|_|\___\__,_|\__|\_,_|_| \___|___/\___|_|  \_/\___|_|  

FeatureServer is an implementation of a RESTful Geographic Feature Service. Using standard HTTP methods, you can fetch a representation of a feature or a collection of features, add new data to the service, or delete data from the service. Use it as an aggregator -- post your GeoRSS feeds to it, and then browse them using WFS. Use it as a translator: use the OGR DataSource to load a shapefile and open it in Google Earth.

DataSource (Storage)

Datasource Description
DBM The DBM datasource uses anydbm combined with pickle to store features in a file on disk. This works on any platform, and works right out of the box.
The BerkleyDB datasource is a subclass of the DBM datasource. It uses a BerkleyDB module for storage.
Flickr Load images from flickr.
GeoAlchemy GeoAlchemy is an extension of SQLAlchemy, the python database toolkit, for spatial databases. GeoAlchemy datasource for FeatureServer allows you to access features stored in one of the supported spatial databases. As the moment GeoAlchemy supports PostGIS, MySQL and Spatialite.
OGR The OGR datasource allows you to take any OGR datasource -- such as a shapefile, PostGIS database, GML file, or other formats supported by OGR -- and use it as a backend for a FeatureServer layer.
OSM Load streets from OpenStreetMap by area, id, or key/value pair.
PostGIS The PostGIS datasource implements a direct connection to PostGIS, allowing for full featured editing/updating.
SpatialLite SpatiaLite is an open source library intended to extend the SQLite core to support fully fledged Spatial SQL capabilities.
SQLite A simple SQLite datasource that can be used on any website with Python support for SQLite. Creates 2 tables for each layer: one for the features, and one for any attributes/properties pertaining to those features.
Twitter Powered by Twittervision, the twitter datasource lets you use twittervision's API to display the current location of a user.
WFS The WFS datasource implements read-only access to WFS servers.

Service (Input/Output)

ServiceDescription
CSV
DXF (AutoCAD)Compatible with release 11 and 12, points, polyline (linestring), polygon
GeoJSONinput and output in the emerging GeoJSON specification. FeatureServer supports GeoJSON Points, Lines, and Polygons with Rings, as both input and output.
GeoRSS Atom (Simple)input and output of Points/Lines/Polygons (no rings/holes) in GeoRSS Simple (Atom). This allows one to take any GeoRSS Simple Atom feed and feed it to FeatureServer for storage.
GML/WFSOutput-only support of WFS/GML.
GPXGPX (the GPS Exchange Format) is a light-weight XML data format for the interchange of GPS data (waypoints, routes, and tracks) between applications and Web services on the Internet. E.g. it can be used for Garmin devices.
HTMLOutput-only support of features as HTML files, powered by Cheetah templates.
KMLInput and output of Points, Lines, and Polygons from KML.
OSMOutput-only support of features as OpenStreetMap '.osm' files. (These files can be opened using JOSM and posted to the OSM server.)
OV2TomTom Points of Interest Database
ShapefileThe Esri shapefile or simply a shapefile is a popular geospatial vector data format for geographic information systems software. It is developed and regulated by Esri as a (mostly) open specification for data interoperability among Esri and other software products.
SQLite/SpatiaLiteSpatiaLite is an open source library intended to extend the SQLite core to support fully fledged Spatial SQL capabilities.

for more information visit featureserver.org

About

FeatureServer is as OGC web feature service and filter encoding Python server.

Resources

License

Unknown, MIT licenses found

Licenses found

Unknown
LICENSE.txt
MIT
MIT-LICENSE.txt

Stars

Watchers

Forks

Packages

No packages published