Skip to content
View lptorres's full-sized avatar
  • Philippines

Block or report lptorres

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. shardshenanigans shardshenanigans Public

    An API for updating swgoh arena payout timer on discord

    Python

  2. A simple script that converts shapef... A simple script that converts shapefiles with multipart polygons into singlepart polygons, and copies the fields of the source shapefile. This script is based on a script by Paolo Corti, found here: https://gist.github.com/anonymous/735330 The original script only converts multipolygons by creating a new feature for each part of a multipolygon. In this script, I've added in the functionality to be able to copy the fields. The script also reprojects the geometry into EPSG:4326 and creates a .prj file for it.
    1
    import os
    2
    from osgeo import gdal, ogr, osr
    3
    import sys
    4
    
                  
    5
    
                  
  3. noah-inasafe noah-inasafe Public

    C

  4. webandgis webandgis Public

    Forked from ingenieroariel/webandgis

    Python

  5. This script is similar to multi2sing... This script is similar to multi2single.py, but it converts the shapefile in place, instead of creating a new shapefile.
    1
    from osgeo import gdal, ogr
    2
    import sys
    3
    
                  
    4
    
                  
    5
    
                  
  6. data-structures-exercises data-structures-exercises Public

    Exercises from the CS32 Data Structures book

    Python