start new:
tmux
start new with session name:
tmux new -s myname
| class ShapeWriter: | |
| """Provides write support for ESRI Shapefiles.""" | |
| def __init__(self, shapeType=None): | |
| self._shapes = [] | |
| self.fields = [] | |
| self.records = [] | |
| self.shapeType = shapeType | |
| self.shp = None | |
| self.shx = None | |
| self.dbf = None |
| <?xml version="1.0"?> | |
| <root> | |
| <devicevendordef> | |
| <vendorname>VORTEX</vendorname> | |
| <vendorid>0x04d9</vendorid> | |
| </devicevendordef> | |
| <deviceproductdef> | |
| <productname>POK3R</productname> | |
| <productid>0x0141</productid> |
| (function(){ | |
| var polyline = new google.maps.Polyline(); | |
| google.maps.Polyline.prototype.closestDistanceToSegment = function(center, segment) | |
| { | |
| var firstPoint, lastPoint, A, B, C, D, E, distanceAB, t, projection = this.getMap().getProjection(); | |
| // The other extreme of the path | |
| lastPoint = segment[0]; | |