developmentseed / housing-passports-v2

Project in collaboration with WB to improve housing resilience.
https://devseed.com/housing-passports-v2/docs/index.html
MIT License
2 stars 2 forks source link

provide a windows-compatible solution to run pre-processing #37

Closed jeanpommier closed 3 months ago

jeanpommier commented 4 months ago

The pre-processing script is a bash shell. Hence, it will not be possible to run it from a Windows computer (at least not for a common windows user). It would be good to provide a means to easily run the commands for a Windows user, for instance by

jeanpommier commented 4 months ago

For instance, something like this seems to work on Powershell


$outputDir="data"
$MAPILLARY_ACCESS_TOKEN="myaccesstoken"
mkdir -p $outputDir
mkdir -p ${outputDir}/images_new

docker run --rm -v ${PWD}:/mnt/data/  `
    -e MAPILLARY_ACCESS_TOKEN="${MAPILLARY_ACCESS_TOKEN}" `
    -it jeanpommier/devseed-geokit:python.latest mapillary `
   get_mapillary_points `
      --input_aoi=-61.493225,15.204024,-61.232986,15.642874 `
      --organization_ids=276431331814934 `
      --timestamp_from=1672531200000 `
      --only_pano `
      --output_file_point=${outputDir}/mapillary_points_panoramic__pano.geojson `
      --output_file_sequence=${outputDir}/mapillary_sequences_panoramic__pano.geojson

docker run -v ${PWD}:/mnt/  `
    -e MAPILLARY_ACCESS_TOKEN="${MAPILLARY_ACCESS_TOKEN}" `
    -it jeanpommier/devseed-spherical2images:v1 `
   clip_mapillary_pano `
      --input_file_points=${outputDir}/mapillary_points_panoramic__pano__pano.geojson `
      --image_clip_size=1024 `
      --output_file_points=${outputDir}/mapillary_points_panoramic_process_new.geojson `
      --output_images_path=${outputDir}/images_new `
      --cube_sides=right,left
lillythomas commented 3 months ago

Complete via https://github.com/developmentseed/housing-passports-v2/pull/39