#!/bin/sh #------------------------------------------------------------------------------ # # This sync, re-executes sync01 but this time requests the medium priority # changes. # # NOTE: since the server advertised an OGC-Checkpoint value in the response # for sync02, we need to include that value here too. Whenever the # server advertises a checkpoint, it must be included in subsequent # requests until a new value is returned by the server. # if [ "$#" -ne 1 ] then echo "usage: ./sync03 " else cArg="-H 'OGC-CheckPoint: "$1"'" curl -v $cArg 'http://www.pvretano.com/cubewerx/cubeserv/default/wfs/3.0/usbuildingfootprints/collections/US_Building_Footprints/changesets?f=json&priority=medium' fi