- 0800 - Breakfast
- 0900 - Welcome to Pycon
- 0930 - Keynote Jake Vanderplas
- 1010 - Break
Reclassify_3d | |
Contour_3d | |
ContourList_3d | |
Intervisibility_3d | |
Viewshed2_3d | |
RegularizeBuildingFootprint_3d | |
ClassifyLasBuilding_3d | |
Clip_analysis | |
Erase_analysis | |
Identity_analysis |
from flask import Flask, render_template | |
from flask_mail import Mail | |
from sqlalchemy import create_engine | |
from flask_sqlalchemy import SQLAlchemy | |
from flask_security import Security, SQLAlchemyUserDatastore, UserMixin, RoleMixin, login_required | |
from datetime import datetime | |
# Main Flask App | |
app = Flask(__name__) | |
app.config['DEBUG'] = True |
The Spatial Community Date Posted: 7/26/2016, Last Updated: 8/08/2016
Version 1.05
We aspire to create a culture where people work joyfully, communicate openly about things that matter, and collaborate on projects. We would like our community to reflect the diversity of the wider community of geospatial and IT professionals. We want to foster diversity of all kinds—not just the classes protected in law. Diversity fosters innovation. Diverse teams are creative teams. We need a diversity of perspective to create solutions for the real and urgent challenges we face.
relateDict = {} | |
def FindLabel ( [TurnoutID] ): | |
global relateDict | |
if len(relateDict) == 0: | |
## FIX THIS! | |
relateFC = r"<connection path on disk>" | |
## |
#!/bin/sh | |
# Just copy and paste the lines below (all at once, it won't work line by line!) | |
# MAKE SURE YOU ARE HAPPY WITH WHAT IT DOES FIRST! THERE IS NO WARRANTY! | |
function abort { | |
echo "$1" | |
exit 1 | |
} | |
set -e |