aboutsummaryrefslogtreecommitdiff
path: root/python
AgeCommit message (Collapse)AuthorFilesLines
2020-07-10python: slope.py: Use maximum y-value in polyfit and plot functions.Paul Garlick1-7/+9
* python/slope.py (plot_curve)[MY]: New argument.
2020-07-10python: slope.py: Use cell size in polyfit and plot functions.Paul Garlick1-6/+10
* python/slope.py (plot_curve)[PX]: New argument.
2020-07-10python: slope.py: Rename co-ordinate variables.Paul Garlick1-8/+8
* python/slope.py (data): Use same names for co-ordinate variables as makeBoundary.
2020-07-10python: slope.py: Use cell size in index definition.Paul Garlick1-2/+2
* python/slope.py (dzdy): Update note.
2020-07-09python: slope.py: Use 'rainbow' colormap for subplot.Paul Garlick1-1/+2
* python/slope.py (detach_display): Add colormap. Disable Normalize() function.
2020-07-09python: slope.py: Identify derivative in plot label.Paul Garlick1-1/+1
* python/slope.py (detach_display): Add text to set_title() function.
2020-07-09python: slope.py: Automatically set subplot tick marks.Paul Garlick1-2/+2
* python/slope.py (detach_display): Disable set_xticks() function.
2020-07-08python: slope.py: Deduce grid dimensions from file data.Paul Garlick1-9/+15
* python/slope.py: Import math module. Use file data instead of file header.
2020-07-08python: slope.py: Re-define filename of height data file.Paul Garlick1-1/+1
* python/slope.py: Read data from 'topography.txt' file.
2020-07-08python: Add slope.py.Paul Garlick1-0/+206
* python/slope.py: New file.
2020-06-18python: Enable writing rating curve data to file.Paul Garlick1-0/+12
* python/makeBoundary: Add 'printing' definition. demo/boundaryBottom.txt: Add 'printing' parameter. demo/boundaryTop.txt: Add 'printing' parameter.
2019-11-25extrapolate topography from interior to fictitious cells.Paul Garlick1-8/+8
2019-11-12move makeBoundary script to python subdirectory.Paul Garlick1-0/+364
216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376