├── LICENSE └── README.md /LICENSE: -------------------------------------------------------------------------------- 1 | This is free and unencumbered software released into the public domain. 2 | 3 | Anyone is free to copy, modify, publish, use, compile, sell, or 4 | distribute this software, either in source code form or as a compiled 5 | binary, for any purpose, commercial or non-commercial, and by any 6 | means. 7 | 8 | In jurisdictions that recognize copyright laws, the author or authors 9 | of this software dedicate any and all copyright interest in the 10 | software to the public domain. We make this dedication for the benefit 11 | of the public at large and to the detriment of our heirs and 12 | successors. We intend this dedication to be an overt act of 13 | relinquishment in perpetuity of all present and future rights to this 14 | software under copyright law. 15 | 16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 17 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 18 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 19 | IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR 20 | OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 21 | ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 22 | OTHER DEALINGS IN THE SOFTWARE. 23 | 24 | For more information, please refer to 25 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # serverlessspatial 2 | 3 | Links for Serverless Spatial talk from FOSS4GNA 2019. Links to live service may well get taken down soon after the conference. 4 | 5 | # Presentation 6 | Video version of the talk from SolSpec Tech Talk Series: 7 | https://www.youtube.com/watch?v=g_WMDxsuCfk 8 | 9 | https://docs.google.com/presentation/d/1c3O6lUNAyqHP_c3VOFu_ZcX8dhbGcSdweVySd3kcyXY/edit?usp=sharing 10 | 11 | # Lambda-Tiler 12 | ## Serves ZXY service from S3 hosted Cloud Optimized GeoTiffs 13 | - https://github.com/vincentsarago/lambda-tiler 14 | - https://github.com/vincentsarago/lambda-proxy 15 | - https://0acq0r75k0.execute-api.us-west-1.amazonaws.com/production/example 16 | 17 | # MapProxy Tile Cache 18 | ## S3 Backed Tile Cache Served Through Lambda 19 | - https://github.com/bitner/lambda-mapproxy 20 | - https://nobqrkpnhl.execute-api.us-west-1.amazonaws.com/dev/demo/?wmts_layer=osm&format=png&srs=EPSG%3A3857 21 | 22 | # MapServerless 23 | ## MapServer served from Lambda 24 | - https://github.com/bitner/mapserverless 25 | - https://github.com/bitner/mapserverless-layer 26 | - https://udd8de3fz7.execute-api.us-west-1.amazonaws.com/dev/? 27 | 28 | # PostGIS Lambda Vector Tiles 29 | ## Direct MapBox Vector Tiles from PostGIS served through Python on Lambda 30 | - https://github.com/bitner/pgvectortiles 31 | - https://bc21adl1kb.execute-api.us-west-1.amazonaws.com/dev/major_roads/ 32 | 33 | # Lambda Layers 34 | - https://github.com/developmentseed/geolambda 35 | - https://github.com/RemotePixel/amazonlinux-gdal 36 | - https://github.com/PDAL/lambda 37 | 38 | # Other Resources 39 | - https://serverless.com/ 40 | - https://medium.com/@alexrolek/running-a-serverless-vector-tile-backend-with-aws-lambda-and-go-8e6ad46a7c38 41 | - https://www.azavea.com/blog/2018/09/06/tilegarden-serverless-tile-rendering-with-aws-lambda/ 42 | --------------------------------------------------------------------------------